Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.
Common duplication problems, and corresponding solutions are:
| 1 | <?php |
||
| 17 | class MarkupValidator extends Module |
||
| 18 | { |
||
| 19 | |||
| 20 | const COMPONENT_CLASS_CONFIG_KEY = 'class'; |
||
| 21 | |||
| 22 | const COMPONENT_CONFIG_CONFIG_KEY = 'config'; |
||
| 23 | |||
| 24 | const PROVIDER_INTERFACE = 'Kolyunya\Codeception\Lib\MarkupValidator\MarkupProviderInterface'; |
||
| 25 | const PROVIDER_CONFIG_KEY = 'provider'; |
||
| 26 | |||
| 27 | const VALIDATOR_INTERFACE = 'Kolyunya\Codeception\Lib\MarkupValidator\MarkupValidatorInterface'; |
||
| 28 | const VALIDATOR_CONFIG_KEY = 'validator'; |
||
| 29 | |||
| 30 | const REPORTER_INTERFACE = 'Kolyunya\Codeception\Lib\MarkupValidator\MarkupReporterInterface'; |
||
| 31 | const REPORTER_CONFIG_KEY = 'reporter'; |
||
| 32 | |||
| 33 | const PRINTER_INTERFACE = 'Kolyunya\Codeception\Lib\MarkupValidator\MessagePrinterInterface'; |
||
| 34 | const PRINTER_CONFIG_KEY = 'printer'; |
||
| 35 | |||
| 36 | /** |
||
| 37 | * {@inheritDoc} |
||
| 38 | */ |
||
| 39 | protected $config = array( |
||
| 40 | self::PROVIDER_CONFIG_KEY => array( |
||
| 41 | self::COMPONENT_CLASS_CONFIG_KEY => 'Kolyunya\Codeception\Lib\MarkupValidator\DefaultMarkupProvider', |
||
| 42 | ), |
||
| 43 | self::VALIDATOR_CONFIG_KEY => array( |
||
| 44 | self::COMPONENT_CLASS_CONFIG_KEY => 'Kolyunya\Codeception\Lib\MarkupValidator\W3CMarkupValidator', |
||
| 45 | ), |
||
| 46 | self::REPORTER_CONFIG_KEY => array( |
||
| 47 | self::COMPONENT_CLASS_CONFIG_KEY => 'Kolyunya\Codeception\Lib\MarkupValidator\DefaultMarkupReporter', |
||
| 48 | ), |
||
| 49 | ); |
||
| 50 | |||
| 51 | /** |
||
| 52 | * Markup provider. |
||
| 53 | * |
||
| 54 | * @var MarkupProviderInterface |
||
| 55 | */ |
||
| 56 | private $provider; |
||
| 57 | |||
| 58 | /** |
||
| 59 | * Markup validator. |
||
| 60 | * |
||
| 61 | * @var MarkupValidatorInterface |
||
| 62 | */ |
||
| 63 | private $validator; |
||
| 64 | |||
| 65 | /** |
||
| 66 | * Markup validation message reporter. |
||
| 67 | * |
||
| 68 | * @var MarkupReporterInterface |
||
| 69 | */ |
||
| 70 | private $reporter; |
||
| 71 | |||
| 72 | /** |
||
| 73 | * {@inheritDoc} |
||
| 74 | */ |
||
| 75 | public function __construct(ModuleContainer $moduleContainer, $config = null) |
||
| 83 | |||
| 84 | /** |
||
| 85 | * Validates page markup via a markup validator. |
||
| 86 | * Allows to recongigure reporter component. |
||
| 87 | * |
||
| 88 | * @param array $reporterConfiguration Reporter configuration. |
||
| 89 | */ |
||
| 90 | public function validateMarkup(array $reporterConfiguration = array()) |
||
| 101 | |||
| 102 | /** |
||
| 103 | * Initializes markup provider. |
||
| 104 | */ |
||
| 105 | private function initializeProvider() |
||
| 115 | |||
| 116 | /** |
||
| 117 | * Initializes markup validator. |
||
| 118 | */ |
||
| 119 | private function initializeValidator() |
||
| 126 | |||
| 127 | /** |
||
| 128 | * Initializes markup reporter. |
||
| 129 | */ |
||
| 130 | private function initializeReporter() |
||
| 137 | |||
| 138 | /** |
||
| 139 | * Instantiates and returns a module component. |
||
| 140 | * |
||
| 141 | * @param string $componentName Component name. |
||
| 142 | * @param string $interface An interface component must implement. |
||
| 143 | * @param array $arguments Component's constructor arguments. |
||
| 144 | * |
||
| 145 | * @throws Exception When component does not implement expected interface. |
||
| 146 | * |
||
| 147 | * @return object Instance of a module component. |
||
| 148 | */ |
||
| 149 | private function instantiateComponent($componentName, $interface, array $arguments = array()) |
||
| 166 | |||
| 167 | /** |
||
| 168 | * Returns component class name. |
||
| 169 | * |
||
| 170 | * @param string $componentName Component name. |
||
| 171 | * |
||
| 172 | * @return string Component class name. |
||
| 173 | */ |
||
| 174 | View Code Duplication | private function getComponentClass($componentName) |
|
| 188 | |||
| 189 | /** |
||
| 190 | * Returns component configuration parameters. |
||
| 191 | * |
||
| 192 | * @param string $componentName Component name. |
||
| 193 | * |
||
| 194 | * @return string Component configuration parameters. |
||
| 195 | */ |
||
| 196 | View Code Duplication | private function getComponentConfiguration($componentName) |
|
| 212 | } |
||
| 213 |
It seems like the type of the argument is not accepted by the function/method which you are calling.
In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.
We suggest to add an explicit type cast like in the following example: