1 | <?php |
||
8 | abstract class AbstractPrependableExtensionTestCase extends AbstractExtensionTestCase |
||
9 | { |
||
10 | /** |
||
11 | * Call this method from within your test after you have (optionally) modified the ContainerBuilder for this test |
||
12 | * ($this->container). |
||
13 | * |
||
14 | * @param array $specificConfiguration |
||
|
|||
15 | */ |
||
16 | protected function load(array $configurationValues = array()) |
||
27 | } |
This check looks for PHPDoc comments describing methods or function parameters that do not exist on the corresponding method or function.
Consider the following example. The parameter
$italy
is not defined by the methodfinale(...)
.The most likely cause is that the parameter was removed, but the annotation was not.