File tree 2 files changed +30
-1
lines changed
2 files changed +30
-1
lines changed Original file line number Diff line number Diff line change @@ -28,10 +28,11 @@ Using
28
28
Create component instance
29
29
``` php
30
30
$downloader = new \greeflas\tools\ImageDownloader([
31
- 'class' => \greeflas\tools\ImageValidator::class
31
+ 'class' => \greeflas\tools\validators\ ImageValidator::class
32
32
]);
33
33
```
34
34
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 ` .
35
36
36
37
Then you should call method for downloading
37
38
``` php
Original file line number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments