Skip to content

Commit

Permalink
Update pint config & apply fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-rubel committed Oct 2, 2023
1 parent 85945e1 commit 6709041
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pint.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"Laravel/laravel_phpdoc_separation": false,
"concat_space": {
"spacing": "one"
}
},
"declare_strict_types": true
}
}
2 changes: 2 additions & 0 deletions src/Events/PipePassed.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace MichaelRubel\EnhancedPipeline\Events;

class PipePassed
Expand Down
2 changes: 2 additions & 0 deletions src/Events/PipeStarted.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace MichaelRubel\EnhancedPipeline\Events;

class PipeStarted
Expand Down
2 changes: 2 additions & 0 deletions src/Pipeline.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace MichaelRubel\EnhancedPipeline;

use Closure;
Expand Down
2 changes: 2 additions & 0 deletions tests/OriginalPipelineTest.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace MichaelRubel\EnhancedPipeline\Tests;

use Illuminate\Container\Container;
Expand Down
2 changes: 2 additions & 0 deletions tests/PipelineEventsTest.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace MichaelRubel\EnhancedPipeline\Tests;

use Illuminate\Support\Facades\Event;
Expand Down
2 changes: 2 additions & 0 deletions tests/PipelineRunHelperTest.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace MichaelRubel\EnhancedPipeline\Tests;

use MichaelRubel\EnhancedPipeline\Pipeline;
Expand Down
2 changes: 2 additions & 0 deletions tests/PipelineTest.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace MichaelRubel\EnhancedPipeline\Tests;

use Illuminate\Contracts\Container\BindingResolutionException;
Expand Down
2 changes: 2 additions & 0 deletions tests/TestCase.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace MichaelRubel\EnhancedPipeline\Tests;

use MichaelRubel\EnhancedPipeline\EnhancedPipelineServiceProvider;
Expand Down

0 comments on commit 6709041

Please sign in to comment.