Skip to content

Commit 29b8055

Browse files
committed
Created 'greeflas\tools\validators\FakeValidator' validator
1 parent d8e03dc commit 29b8055

File tree

2 files changed

+30
-1
lines changed

2 files changed

+30
-1
lines changed

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,11 @@ Using
2828
Create component instance
2929
```php
3030
$downloader = new \greeflas\tools\ImageDownloader([
31-
'class' => \greeflas\tools\ImageValidator::class
31+
'class' => \greeflas\tools\validators\ImageValidator::class
3232
]);
3333
```
3434
in array you should specify the validator class. It used for validation of downloaded files.
35+
If you don't want run validation, you can use a `\greeflas\tools\validators\FakeValidator::class`.
3536

3637
Then you should call method for downloading
3738
```php

src/validators/FakeValidator.php

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<?php
2+
namespace greeflas\tools\validators;
3+
4+
use greeflas\tools\interfaces\FileValidator;
5+
6+
/**
7+
* This is fake validator
8+
*
9+
* @author Vladimir Kuprienko <[email protected]>
10+
*/
11+
class FakeValidator implements FileValidator
12+
{
13+
/**
14+
* @inheritdoc
15+
*/
16+
public function validate($value)
17+
{
18+
return true;
19+
}
20+
21+
/**
22+
* @inheritdoc
23+
*/
24+
public function rules()
25+
{
26+
return [];
27+
}
28+
}

0 commit comments

Comments
 (0)