| 1 | <?php |
||
| 20 | class ScalarDefinition extends AbstractTypeDefinition implements ScalarDefinitionInterface |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * @return TypeInterface |
||
| 24 | */ |
||
| 25 | 1 | public static function getType(): TypeInterface |
|
| 29 | |||
| 30 | /** |
||
| 31 | * @param mixed $value |
||
| 32 | * @return mixed |
||
| 33 | */ |
||
| 34 | public function parse($value) |
||
| 42 | |||
| 43 | /** |
||
| 44 | * @param mixed $value |
||
| 45 | * @return mixed |
||
| 46 | */ |
||
| 47 | public function serialize($value) |
||
| 55 | |||
| 56 | /** |
||
| 57 | * @return bool |
||
| 58 | */ |
||
| 59 | public function isRenderable(): bool |
||
| 63 | |||
| 64 | /** |
||
| 65 | * @return bool |
||
| 66 | */ |
||
| 67 | public function isInputable(): bool |
||
| 71 | } |
||
| 72 |
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.