@@ -124,7 +124,7 @@ |
||
124 | 124 | */ |
125 | 125 | public function findByName($name): ?Tree |
126 | 126 | { |
127 | - return $this->all()->first(static function (Tree $tree) use ($name): bool { |
|
127 | + return $this->all()->first(static function (Tree $tree) use ($name) : bool { |
|
128 | 128 | return $tree->name() === $name; |
129 | 129 | }); |
130 | 130 | } |
@@ -369,7 +369,7 @@ |
||
369 | 369 | return '<b title="' . GedcomTag::getLabel($type) . '">' . $type . '</b>'; |
370 | 370 | } |
371 | 371 | |
372 | - /** |
|
372 | + /** |
|
373 | 373 | * @param ServerRequestInterface $request |
374 | 374 | * |
375 | 375 | * @return ResponseInterface |