| Conditions | 2 |
| Paths | 2 |
| Total Lines | 7 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 20 | public function __call(string $name, array $resourceData): void |
||
| 21 | { |
||
| 22 | $name = strtolower(substr($name, 3)); |
||
| 23 | |||
| 24 | if (in_array($name, Schema::getDataTypes())) { |
||
| 25 | $className = __NAMESPACE__.'\\Models\\'.ucfirst($name); |
||
| 26 | $this->content[$name] = $className::getInstance()->add($resourceData[0]); |
||
| 27 | } |
||
| 51 |