| Conditions | 2 |
| Paths | 2 |
| Total Lines | 5 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 31 | public function toObject(\stdClass $jsonObject, bool $isOrQuery = false) |
||
| 32 | { |
||
| 33 | $deploymentId = JsonUtil::isNull($jsonObject, self::DEPLOYMENT_ID) ? null : JsonUtil::getString($jsonObject, self::DEPLOYMENT_ID); |
||
| 34 | $count = JsonUtil::getInt($jsonObject, self::COUNT); |
||
| 35 | return new DeploymentMapping($deploymentId, $count); |
||
| 36 | } |
||
| 38 |
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.