| 1 | <?php |
||
| 5 | class Config |
||
| 6 | { |
||
| 7 | private $suiteSelectorEnabled = false; |
||
| 8 | private $featureSelectorEnabled = false; |
||
| 9 | private $scenarioSelectorEnabled = false; |
||
| 10 | |||
| 11 | /** |
||
| 12 | * @param array $config |
||
| 13 | */ |
||
| 14 | public function __construct($config) |
||
| 18 | |||
| 19 | public function enableAll() |
||
| 25 | |||
| 26 | public function enableSuiteSelector() |
||
| 30 | |||
| 31 | public function enableFeatureSelector() |
||
| 35 | |||
| 36 | public function enableScenarioSelector() |
||
| 40 | |||
| 41 | public function isSuiteSelectorEnabled() |
||
| 45 | |||
| 46 | public function isFeatureSelectorEnabled() |
||
| 50 | |||
| 51 | public function isScenarioSelectorEnabled() |
||
| 55 | } |
||
| 56 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.