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 @@ -33,64 +33,46 @@ public function setFollowLinks($followLinks);
33
33
public function setMode ($ mode );
34
34
35
35
/**
36
- * @param array $exclude
37
- *
38
36
* @return $this
39
37
*/
40
38
public function setExclude (array $ exclude );
41
39
42
40
/**
43
- * @param array $depths
44
- *
45
41
* @return $this
46
42
*/
47
43
public function setDepths (array $ depths );
48
44
49
45
/**
50
- * @param array $names
51
- *
52
46
* @return $this
53
47
*/
54
48
public function setNames (array $ names );
55
49
56
50
/**
57
- * @param array $notNames
58
- *
59
51
* @return $this
60
52
*/
61
53
public function setNotNames (array $ notNames );
62
54
63
55
/**
64
- * @param array $contains
65
- *
66
56
* @return $this
67
57
*/
68
58
public function setContains (array $ contains );
69
59
70
60
/**
71
- * @param array $notContains
72
- *
73
61
* @return $this
74
62
*/
75
63
public function setNotContains (array $ notContains );
76
64
77
65
/**
78
- * @param array $sizes
79
- *
80
66
* @return $this
81
67
*/
82
68
public function setSizes (array $ sizes );
83
69
84
70
/**
85
- * @param array $dates
86
- *
87
71
* @return $this
88
72
*/
89
73
public function setDates (array $ dates );
90
74
91
75
/**
92
- * @param array $filters
93
- *
94
76
* @return $this
95
77
*/
96
78
public function setFilters (array $ filters );
@@ -103,15 +85,11 @@ public function setFilters(array $filters);
103
85
public function setSort ($ sort );
104
86
105
87
/**
106
- * @param array $paths
107
- *
108
88
* @return $this
109
89
*/
110
90
public function setPath (array $ paths );
111
91
112
92
/**
113
- * @param array $notPaths
114
- *
115
93
* @return $this
116
94
*/
117
95
public function setNotPath (array $ notPaths );
Original file line number Diff line number Diff line change 24
24
*/
25
25
class AdapterFailureException extends \RuntimeException implements ExceptionInterface
26
26
{
27
- /**
28
- * @var \Symfony\Component\Finder\Adapter\AdapterInterface
29
- */
30
27
private $ adapter ;
31
28
32
29
/**
Original file line number Diff line number Diff line change 23
23
*/
24
24
class ShellCommandFailureException extends AdapterFailureException
25
25
{
26
- /**
27
- * @var Command
28
- */
29
26
private $ command ;
30
27
31
- /**
32
- * @param AdapterInterface $adapter
33
- * @param Command $command
34
- * @param \Exception|null $previous
35
- */
36
28
public function __construct (AdapterInterface $ adapter , Command $ command , \Exception $ previous = null )
37
29
{
38
30
$ this ->command = $ command ;
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ class Regex implements ValueInterface
30
30
private $ pattern ;
31
31
32
32
/**
33
- * @var array
33
+ * @var string
34
34
*/
35
35
private $ options ;
36
36
@@ -279,8 +279,6 @@ public function hasEndJoker()
279
279
}
280
280
281
281
/**
282
- * @param array $replacement
283
- *
284
282
* @return $this
285
283
*/
286
284
public function replaceJokers ($ replacement )
Original file line number Diff line number Diff line change @@ -483,8 +483,6 @@ public static function addVCSPattern($pattern)
483
483
*
484
484
* This can be slow as all the matching files and directories must be retrieved for comparison.
485
485
*
486
- * @param \Closure $closure An anonymous function
487
- *
488
486
* @return $this
489
487
*
490
488
* @see SortableIterator
@@ -590,8 +588,6 @@ public function sortByModifiedTime()
590
588
* The anonymous function receives a \SplFileInfo and must return false
591
589
* to remove files.
592
590
*
593
- * @param \Closure $closure An anonymous function
594
- *
595
591
* @return $this
596
592
*
597
593
* @see CustomFilterIterator
@@ -851,8 +847,6 @@ private function searchInDirectory($dir)
851
847
}
852
848
853
849
/**
854
- * @param AdapterInterface $adapter
855
- *
856
850
* @return AdapterInterface
857
851
*/
858
852
private function buildAdapter (AdapterInterface $ adapter )
Original file line number Diff line number Diff line change 20
20
*/
21
21
class Command
22
22
{
23
- /**
24
- * @var Command|null
25
- */
26
23
private $ parent ;
27
-
28
- /**
29
- * @var array
30
- */
31
24
private $ bits = array ();
32
-
33
- /**
34
- * @var array
35
- */
36
25
private $ labels = array ();
37
26
38
27
/**
39
28
* @var \Closure|null
40
29
*/
41
30
private $ errorHandler ;
42
31
43
- /**
44
- * @param Command|null $parent Parent command
45
- */
46
32
public function __construct (Command $ parent = null )
47
33
{
48
34
$ this ->parent = $ parent ;
@@ -61,8 +47,6 @@ public function __toString()
61
47
/**
62
48
* Creates a new Command instance.
63
49
*
64
- * @param Command|null $parent Parent command
65
- *
66
50
* @return self
67
51
*/
68
52
public static function create (Command $ parent = null )
@@ -220,8 +204,6 @@ public function length()
220
204
}
221
205
222
206
/**
223
- * @param \Closure $errorHandler
224
- *
225
207
* @return $this
226
208
*/
227
209
public function setErrorHandler (\Closure $ errorHandler )
You can’t perform that action at this time.
0 commit comments