| Conditions | 2 | 
| Paths | 2 | 
| Total Lines | 8 | 
| Code Lines | 6 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php declare(strict_types=1); | ||
| 21 |     public function createAdminContentObject(array $params): \stdClass { | ||
| 22 | $contentObject = new \stdClass(); | ||
| 23 | $contentObject->site = $this->getSiteObject(); | ||
| 24 |         if (empty($params['title'])) { | ||
| 25 |             throw new \InvalidArgumentException("The 'title:' parameter has not been set!"); | ||
| 26 | } | ||
| 27 | $contentObject->title = $params['title']; | ||
| 28 | return $contentObject; | ||
| 29 | } | ||
| 49 |