We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| Total Complexity | 3 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 3 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 32 | abstract class AbstractDlfValidator extends AbstractValidator |
||
| 33 | { |
||
| 34 | use LoggerAwareTrait; |
||
| 35 | |||
| 36 | protected string $valueClassName; |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @param $valueClassName string The class name of the value |
||
| 40 | */ |
||
| 41 | public function __construct(string $valueClassName) |
||
| 42 | { |
||
| 43 | $this->logger = GeneralUtility::makeInstance(LogManager::class)->getLogger(static::class); |
||
| 44 | $this->valueClassName = $valueClassName; |
||
| 45 | } |
||
| 46 | |||
| 47 | public function validate($value): Result |
||
| 54 | } |
||
| 55 | } |
||
| 56 |
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.