Skip to content

Commit 38544e6

Browse files
Fixed codestyle
1 parent 3e3af29 commit 38544e6

File tree

9 files changed

+945
-107
lines changed

9 files changed

+945
-107
lines changed

.editorconfig

Lines changed: 798 additions & 9 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ iconify --all --path=/foo/bar
5454
> [!TIP]
5555
> Creating classes for new brands and IDEs is compatible
5656
> with [Laravel Idea](https://plugins.jetbrains.com/plugin/13441-laravel-idea).
57-
>
57+
>
5858
> ![Laravel Idea](/.github/images/laravel-idea.png)
5959
6060
### Adding a new brand

app/Commands/DefaultCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ protected function skip(DirectoryIterator $directory): bool
7070
return true;
7171
}
7272

73-
return (bool) (in_array($directory->getBasename(), config('data.exclude'), true));
73+
return (bool) in_array($directory->getBasename(), config('data.exclude'), true);
7474
}
7575

7676
protected function getPath(): string

app/Commands/PublishCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class PublishCommand extends Command
2222
public const SKIPPED = 1;
2323

2424
protected $signature = 'publish'
25-
. ' {--path= : Indicates the way to the search directory}';
25+
. ' {--path= : Indicates the Directory of the project}';
2626

2727
protected $description = 'Publishes icons to improve project display in IDE';
2828

resources/brands/dragon_code.svg

Lines changed: 11 additions & 11 deletions
Loading
Lines changed: 3 additions & 1 deletion
Loading

resources/brands/laravel_lang.svg

Lines changed: 13 additions & 12 deletions
Loading

resources/brands/laravel_nova.svg

Lines changed: 8 additions & 5 deletions
Loading

0 commit comments

Comments
 (0)