| Conditions | 5 | 
| Paths | 3 | 
| Total Lines | 13 | 
| Code Lines | 7 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 1 | 
| 1 | <?php  | 
            ||
| 23 | public function __construct($displayName, $language)  | 
            ||
| 24 |     { | 
            ||
| 25 |         if (!is_string($displayName) || trim($displayName) === '') { | 
            ||
| 26 |             throw InvalidArgumentException::invalidType('non-empty string', 'displayName', $displayName); | 
            ||
| 27 | }  | 
            ||
| 28 | |||
| 29 |         if (!is_string($language) || trim($language) === '') { | 
            ||
| 30 |             throw InvalidArgumentException::invalidType('non-empty string', 'language', $language); | 
            ||
| 31 | }  | 
            ||
| 32 | |||
| 33 | $this->displayName = $displayName;  | 
            ||
| 34 | $this->language = $language;  | 
            ||
| 35 | }  | 
            ||
| 36 | |||
| 67 |