Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
mvdnbrk authored and actions-user committed Sep 3, 2020
1 parent 4cc0654 commit e0101e7
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 15 deletions.
1 change: 0 additions & 1 deletion tests/IconsManifestTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

namespace Tests;

use BladeUI\Icons\Factory;
use BladeUI\Icons\IconsManifest;
use Illuminate\Filesystem\Filesystem;

Expand Down
30 changes: 16 additions & 14 deletions tests/fixtures/generated-manifest.php
Original file line number Diff line number Diff line change
@@ -1,25 +1,27 @@
<?php return array (
'default' =>
array (
<?php

return [
'default' =>
[
'path' => '{{ DIR }}/resources/svg',
'prefix' => 'icon',
'class' => '',
'icons' =>
array (
'icons' =>
[
0 => 'camera',
1 => 'foo-camera',
2 => 'solid.camera',
3 => 'zondicon-flag',
),
),
'zondicons' =>
array (
],
],
'zondicons' =>
[
'path' => '{{ DIR }}/resources/zondicons',
'prefix' => 'zondicon',
'class' => '',
'icons' =>
array (
'icons' =>
[
0 => 'flag',
),
),
);
],
],
];

0 comments on commit e0101e7

Please sign in to comment.