1 | <?php |
||
4 | class ActiveSalesmanFilterIterator extends \FilterIterator |
||
5 | { |
||
6 | |||
7 | /** |
||
8 | * @var boolean |
||
9 | */ |
||
10 | public $active_flag = true; |
||
11 | |||
12 | /** |
||
13 | * @param \Traversable $collection Collection of SalesmanIdProviderInterface |
||
14 | * @param bool $active_flag |
||
15 | */ |
||
16 | 32 | public function __construct( \Traversable $collection, $active_flag = true ) |
|
22 | |||
23 | 32 | public function accept() |
|
35 | |||
36 | } |
||
37 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.