1 | <?php |
||
20 | class CheckVulnerabilitiesStep extends AbstractStep |
||
21 | { |
||
22 | protected $securityChecker; |
||
23 | |||
24 | /** |
||
25 | * Constructor. |
||
26 | * |
||
27 | * @param SecurityChecker $securityChecker |
||
28 | */ |
||
29 | public function __construct(SecurityChecker $securityChecker) |
||
33 | |||
34 | /** |
||
35 | * {@inheritdoc} |
||
36 | */ |
||
37 | public function execute(ConsumerEvent $event, $directory) |
||
57 | } |
||
58 |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.