Skip to content

Commit

Permalink
followup
Browse files Browse the repository at this point in the history
  • Loading branch information
georgringer committed Sep 20, 2023
1 parent 59c8670 commit 6e77437
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
5 changes: 4 additions & 1 deletion Classes/Exception/ApiConfigurationMissingException.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,7 @@
* For the full copyright and license information, please read the
* LICENSE.txt file that was distributed with this source code.
*/
class ApiConfigurationMissingException extends \RuntimeException {}
class ApiConfigurationMissingException extends \RuntimeException
{

}
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,13 @@ public function hiddenClassIsAdded(): void
[
0 => 'label',
1 => '--div--',
'icon' => 'some-icon'],
'icon' => 'some-icon',
],
[
0 => 'label 2',
1 => 'fo',
2 => 'another-icon'],
2 => 'another-icon',
],
],
],
],
Expand Down
6 changes: 4 additions & 2 deletions Tests/Unit/Backend/FieldWizard/ExternalIconsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,13 @@ public function hiddenClassIsAdded(): void
[
0 => 'label',
1 => '--div--',
'icon' => 'some-icon'],
'icon' => 'some-icon',
],
[
0 => 'label 2',
1 => 'fo',
2 => 'https://some-external.icon.com'],
2 => 'https://some-external.icon.com',
],
],
],
],
Expand Down

0 comments on commit 6e77437

Please sign in to comment.