Skip to content

Commit 259bb22

Browse files
OskarStarkfabpot
authored andcommitted
removed useless PHPDoc
1 parent 936529d commit 259bb22

15 files changed

+0
-32
lines changed

Adapter/AbstractFindAdapter.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,6 @@ abstract class AbstractFindAdapter extends AbstractAdapter
3131
*/
3232
protected $shell;
3333

34-
/**
35-
* Constructor.
36-
*/
3734
public function __construct()
3835
{
3936
$this->shell = new Shell();

Comparator/DateComparator.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@
1919
class DateComparator extends Comparator
2020
{
2121
/**
22-
* Constructor.
23-
*
2422
* @param string $test A comparison string
2523
*
2624
* @throws \InvalidArgumentException If the test is not understood

Comparator/NumberComparator.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,6 @@
3535
class NumberComparator extends Comparator
3636
{
3737
/**
38-
* Constructor.
39-
*
4038
* @param string|int $test A comparison string or an integer
4139
*
4240
* @throws \InvalidArgumentException If the test is not understood

Finder.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,6 @@ class Finder implements \IteratorAggregate, \Countable
6767

6868
private static $vcsPatterns = array('.svn', '_svn', 'CVS', '_darcs', '.arch-params', '.monotone', '.bzr', '.git', '.hg');
6969

70-
/**
71-
* Constructor.
72-
*/
7370
public function __construct()
7471
{
7572
$this->ignore = static::IGNORE_VCS_FILES | static::IGNORE_DOT_FILES;

Iterator/CustomFilterIterator.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ class CustomFilterIterator extends FilterIterator
2424
private $filters = array();
2525

2626
/**
27-
* Constructor.
28-
*
2927
* @param \Iterator $iterator The Iterator to filter
3028
* @param callable[] $filters An array of PHP callbacks
3129
*

Iterator/DateRangeFilterIterator.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@ class DateRangeFilterIterator extends FilterIterator
2323
private $comparators = array();
2424

2525
/**
26-
* Constructor.
27-
*
2826
* @param \Iterator $iterator The Iterator to filter
2927
* @param DateComparator[] $comparators An array of DateComparator instances
3028
*/

Iterator/DepthRangeFilterIterator.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ class DepthRangeFilterIterator extends FilterIterator
2121
private $minDepth = 0;
2222

2323
/**
24-
* Constructor.
25-
*
2624
* @param \RecursiveIteratorIterator $iterator The Iterator to filter
2725
* @param int $minDepth The min depth
2826
* @param int $maxDepth The max depth

Iterator/ExcludeDirectoryFilterIterator.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ class ExcludeDirectoryFilterIterator extends FilterIterator implements \Recursiv
2424
private $excludedPattern;
2525

2626
/**
27-
* Constructor.
28-
*
2927
* @param \Iterator $iterator The Iterator to filter
3028
* @param array $directories An array of directories to exclude
3129
*/

Iterator/FileTypeFilterIterator.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ class FileTypeFilterIterator extends FilterIterator
2424
private $mode;
2525

2626
/**
27-
* Constructor.
28-
*
2927
* @param \Iterator $iterator The Iterator to filter
3028
* @param int $mode The mode (self::ONLY_FILES or self::ONLY_DIRECTORIES)
3129
*/

Iterator/MultiplePcreFilterIterator.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ abstract class MultiplePcreFilterIterator extends FilterIterator
2424
protected $noMatchRegexps = array();
2525

2626
/**
27-
* Constructor.
28-
*
2927
* @param \Iterator $iterator The Iterator to filter
3028
* @param array $matchPatterns An array of patterns that need to match
3129
* @param array $noMatchPatterns An array of patterns that need to not match

0 commit comments

Comments
 (0)