Skip to content

Commit c486661

Browse files
committed
wip
2 parents d3e932c + 8b0ca9f commit c486661

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

src/Data.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ public function __construct(
1212
public array $payload = [],
1313
public bool $halt = false,
1414
) {}
15-
}
15+
}

src/Facades/Modelware.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
/**
88
* @method static void add(string $event, array $pipes, string $prefix = 'modelware')
9-
*
9+
*
1010
* @see \Inmanturbo\Modelware\Modelware
1111
*/
1212
class Modelware extends Facade

src/Modelware.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
use Illuminate\Support\Facades\Event;
66
use Illuminate\Support\Facades\Pipeline;
77

8-
class Modelware {
9-
8+
class Modelware
9+
{
1010
public function add(string $event, array $pipes, string $prefix = 'modelware'): void
1111
{
1212
app()->bind("{$prefix}.{$event}", function () use ($pipes) {

src/ModelwareServiceProvider.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
namespace Inmanturbo\Modelware;
44

5+
use Inmanturbo\Modelware\Commands\ModelwareCommand;
56
use Spatie\LaravelPackageTools\Package;
67
use Spatie\LaravelPackageTools\PackageServiceProvider;
7-
use Inmanturbo\Modelware\Commands\ModelwareCommand;
88

99
class ModelwareServiceProvider extends PackageServiceProvider
1010
{

tests/TestCase.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
namespace Inmanturbo\Modelware\Tests;
44

55
use Illuminate\Database\Eloquent\Factories\Factory;
6-
use Orchestra\Testbench\TestCase as Orchestra;
76
use Inmanturbo\Modelware\ModelwareServiceProvider;
7+
use Orchestra\Testbench\TestCase as Orchestra;
88

99
class TestCase extends Orchestra
1010
{

0 commit comments

Comments
 (0)