Skip to content
This repository was archived by the owner on Nov 11, 2022. It is now read-only.

Commit a160ae4

Browse files
ousidactions-user
authored andcommitted
Fix styling
1 parent d2cdf6d commit a160ae4

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

src/Console/Concerns/InteractsWithConsoleCommands.php

+1-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
*/
1010
trait InteractsWithConsoleCommands
1111
{
12-
1312
/**
1413
* Loop through the name arguments and, create each record individualy
1514
* @param string $command
@@ -26,12 +25,11 @@ public function loopThroughNameArgumentWith(string $command): bool
2625
);
2726

2827
if (
29-
count( array_filter($this->getListOfOptions()) )
28+
count(array_filter($this->getListOfOptions()))
3029
) {
3130
$this->line("<options=bold,reverse;fg=green> {$name} assets created successfully.</>\n");
3231
$this->line("----------------------------------------------------------------\n");
3332
}
34-
3533
});
3634

3735
$this->line("<options=bold,reverse;fg=green> DONE </> 🤙\n");

src/LaraCommandsServiceProvider.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
namespace Coderflex\LaraCommand;
44

5-
use Spatie\LaravelPackageTools\Package;
6-
use Spatie\LaravelPackageTools\PackageServiceProvider;
75
use Coderflex\LaraCommand\Console\{
86
ModelMakeCommand
97
};
8+
use Spatie\LaravelPackageTools\Package;
9+
use Spatie\LaravelPackageTools\PackageServiceProvider;
1010

1111
class LaraCommandsServiceProvider extends PackageServiceProvider
1212
{

0 commit comments

Comments
 (0)