@@ -4,7 +4,6 @@ |
||
| 4 | 4 | |
| 5 | 5 | // From 'charcoal-cms' |
| 6 | 6 | use Charcoal\Cms\AbstractSection; |
| 7 | -use Charcoal\Cms\Mixin\EmptySectionInterface; |
|
| 8 | 7 | |
| 9 | 8 | /** |
| 10 | 9 | * Empty section |
@@ -74,7 +74,7 @@ |
||
| 74 | 74 | /** |
| 75 | 75 | * The tag's color. |
| 76 | 76 | * |
| 77 | - * @return mixed |
|
| 77 | + * @return string |
|
| 78 | 78 | */ |
| 79 | 79 | public function color() |
| 80 | 80 | { |
@@ -86,7 +86,7 @@ |
||
| 86 | 86 | /** |
| 87 | 87 | * Retrieve the renderable object's template identifier. |
| 88 | 88 | * |
| 89 | - * @return mixed |
|
| 89 | + * @return string |
|
| 90 | 90 | */ |
| 91 | 91 | public function templateIdent() |
| 92 | 92 | { |
@@ -200,7 +200,7 @@ |
||
| 200 | 200 | } |
| 201 | 201 | |
| 202 | 202 | $attachmentWidgets = $structureMetadata->get('attachments.widgets'); |
| 203 | - foreach ((array)$attachmentWidgets as $ident => $metadata) { |
|
| 203 | + foreach ((array) $attachmentWidgets as $ident => $metadata) { |
|
| 204 | 204 | $this->addGroup($ident, $metadata); |
| 205 | 205 | } |
| 206 | 206 | |