File tree Expand file tree Collapse file tree 6 files changed +1
-60
lines changed Expand file tree Collapse file tree 6 files changed +1
-60
lines changed Original file line number Diff line number Diff line change @@ -31,64 +31,46 @@ public function setFollowLinks($followLinks);
31
31
public function setMode ($ mode );
32
32
33
33
/**
34
- * @param array $exclude
35
- *
36
34
* @return $this
37
35
*/
38
36
public function setExclude (array $ exclude );
39
37
40
38
/**
41
- * @param array $depths
42
- *
43
39
* @return $this
44
40
*/
45
41
public function setDepths (array $ depths );
46
42
47
43
/**
48
- * @param array $names
49
- *
50
44
* @return $this
51
45
*/
52
46
public function setNames (array $ names );
53
47
54
48
/**
55
- * @param array $notNames
56
- *
57
49
* @return $this
58
50
*/
59
51
public function setNotNames (array $ notNames );
60
52
61
53
/**
62
- * @param array $contains
63
- *
64
54
* @return $this
65
55
*/
66
56
public function setContains (array $ contains );
67
57
68
58
/**
69
- * @param array $notContains
70
- *
71
59
* @return $this
72
60
*/
73
61
public function setNotContains (array $ notContains );
74
62
75
63
/**
76
- * @param array $sizes
77
- *
78
64
* @return $this
79
65
*/
80
66
public function setSizes (array $ sizes );
81
67
82
68
/**
83
- * @param array $dates
84
- *
85
69
* @return $this
86
70
*/
87
71
public function setDates (array $ dates );
88
72
89
73
/**
90
- * @param array $filters
91
- *
92
74
* @return $this
93
75
*/
94
76
public function setFilters (array $ filters );
@@ -101,15 +83,11 @@ public function setFilters(array $filters);
101
83
public function setSort ($ sort );
102
84
103
85
/**
104
- * @param array $paths
105
- *
106
86
* @return $this
107
87
*/
108
88
public function setPath (array $ paths );
109
89
110
90
/**
111
- * @param array $notPaths
112
- *
113
91
* @return $this
114
92
*/
115
93
public function setNotPath (array $ notPaths );
Original file line number Diff line number Diff line change 20
20
*/
21
21
class AdapterFailureException extends \RuntimeException implements ExceptionInterface
22
22
{
23
- /**
24
- * @var \Symfony\Component\Finder\Adapter\AdapterInterface
25
- */
26
23
private $ adapter ;
27
24
28
25
/**
Original file line number Diff line number Diff line change 19
19
*/
20
20
class ShellCommandFailureException extends AdapterFailureException
21
21
{
22
- /**
23
- * @var Command
24
- */
25
22
private $ command ;
26
23
27
- /**
28
- * @param AdapterInterface $adapter
29
- * @param Command $command
30
- * @param \Exception|null $previous
31
- */
32
24
public function __construct (AdapterInterface $ adapter , Command $ command , \Exception $ previous = null )
33
25
{
34
26
$ this ->command = $ command ;
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ class Regex implements ValueInterface
28
28
private $ pattern ;
29
29
30
30
/**
31
- * @var array
31
+ * @var string
32
32
*/
33
33
private $ options ;
34
34
@@ -277,8 +277,6 @@ public function hasEndJoker()
277
277
}
278
278
279
279
/**
280
- * @param array $replacement
281
- *
282
280
* @return $this
283
281
*/
284
282
public function replaceJokers ($ replacement )
Original file line number Diff line number Diff line change @@ -462,8 +462,6 @@ public static function addVCSPattern($pattern)
462
462
*
463
463
* This can be slow as all the matching files and directories must be retrieved for comparison.
464
464
*
465
- * @param \Closure $closure An anonymous function
466
- *
467
465
* @return $this
468
466
*
469
467
* @see SortableIterator
@@ -569,8 +567,6 @@ public function sortByModifiedTime()
569
567
* The anonymous function receives a \SplFileInfo and must return false
570
568
* to remove files.
571
569
*
572
- * @param \Closure $closure An anonymous function
573
- *
574
570
* @return $this
575
571
*
576
572
* @see CustomFilterIterator
@@ -757,8 +753,6 @@ private function searchInDirectory($dir)
757
753
}
758
754
759
755
/**
760
- * @param AdapterInterface $adapter
761
- *
762
756
* @return AdapterInterface
763
757
*/
764
758
private function buildAdapter (AdapterInterface $ adapter )
Original file line number Diff line number Diff line change 16
16
*/
17
17
class Command
18
18
{
19
- /**
20
- * @var Command|null
21
- */
22
19
private $ parent ;
23
-
24
- /**
25
- * @var array
26
- */
27
20
private $ bits = array ();
28
-
29
- /**
30
- * @var array
31
- */
32
21
private $ labels = array ();
33
22
34
23
/**
35
24
* @var \Closure|null
36
25
*/
37
26
private $ errorHandler ;
38
27
39
- /**
40
- * @param Command|null $parent Parent command
41
- */
42
28
public function __construct (Command $ parent = null )
43
29
{
44
30
$ this ->parent = $ parent ;
@@ -57,8 +43,6 @@ public function __toString()
57
43
/**
58
44
* Creates a new Command instance.
59
45
*
60
- * @param Command|null $parent Parent command
61
- *
62
46
* @return self
63
47
*/
64
48
public static function create (Command $ parent = null )
@@ -216,8 +200,6 @@ public function length()
216
200
}
217
201
218
202
/**
219
- * @param \Closure $errorHandler
220
- *
221
203
* @return $this
222
204
*/
223
205
public function setErrorHandler (\Closure $ errorHandler )
You can’t perform that action at this time.
0 commit comments