| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 8 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | 2 | public function create(?array $ops = null): GalleryItem |
|
| 17 | { |
||
| 18 | 2 | $component = new GalleryItem(); |
|
| 19 | 2 | $this->init($component, $ops); |
|
| 20 | 2 | $component->setTitle($this->ops['title']); |
|
| 21 | 2 | $component->setCaption($this->ops['caption']); |
|
| 22 | 2 | $component->setFilePath($this->ops['filePath']); |
|
| 23 | 2 | $this->validate($component); |
|
| 24 | 2 | return $component; |
|
| 25 | } |
||
| 42 |