| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 9 | 
| Code Lines | 7 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php  | 
            ||
| 14 | public function handle(\SimpleXMLElement $node): void  | 
            ||
| 15 |     { | 
            ||
| 16 |         $this->store->content("content/authors/{$node->author_login}/_index", [ | 
            ||
| 17 | 'title' => (string)$node->author_display_name,  | 
            ||
| 18 | 'name' => (string)$node->author_display_name,  | 
            ||
| 19 | 'firstName' => (string)$node->author_first_name,  | 
            ||
| 20 | 'lastName' => (string)$node->author_last_name,  | 
            ||
| 21 | 'email' => (string)$node->author_email,  | 
            ||
| 22 | 'slug' => (string)$node->author_login,  | 
            ||
| 23 | ]);  | 
            ||
| 26 |