From 67090411d77925a9af3119f1f45d5df4ee085dad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Rub=C3=A9l?= Date: Mon, 2 Oct 2023 14:13:29 +0200 Subject: [PATCH] Update `pint` config & apply fixes. --- pint.json | 3 ++- src/Events/PipePassed.php | 2 ++ src/Events/PipeStarted.php | 2 ++ src/Pipeline.php | 2 ++ tests/OriginalPipelineTest.php | 2 ++ tests/PipelineEventsTest.php | 2 ++ tests/PipelineRunHelperTest.php | 2 ++ tests/PipelineTest.php | 2 ++ tests/TestCase.php | 2 ++ 9 files changed, 18 insertions(+), 1 deletion(-) diff --git a/pint.json b/pint.json index eef5a35..c7c9e41 100644 --- a/pint.json +++ b/pint.json @@ -4,6 +4,7 @@ "Laravel/laravel_phpdoc_separation": false, "concat_space": { "spacing": "one" - } + }, + "declare_strict_types": true } } diff --git a/src/Events/PipePassed.php b/src/Events/PipePassed.php index f4a9df1..62ec7d8 100644 --- a/src/Events/PipePassed.php +++ b/src/Events/PipePassed.php @@ -1,5 +1,7 @@