From fe92a9c8d1618b93bb9428921d2cef6f45637454 Mon Sep 17 00:00:00 2001 From: Dries Vints Date: Mon, 12 Dec 2022 10:23:44 +0100 Subject: [PATCH 1/2] Add input and output properties to Command --- src/Console/Command.php | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/Console/Command.php b/src/Console/Command.php index 0e78ae67..a687a9d0 100644 --- a/src/Console/Command.php +++ b/src/Console/Command.php @@ -9,6 +9,20 @@ trait Command { + /** + * The console command input. + * + * @var array + */ + protected $input; + + /** + * The console command output. + * + * @var array + */ + protected $output; + /** * Execute the command. * From 8de7c1b138bc9182e5e91e3a28436ac43893eae5 Mon Sep 17 00:00:00 2001 From: Dries Vints Date: Mon, 12 Dec 2022 10:24:56 +0100 Subject: [PATCH 2/2] Add Laravel 9 build --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 4e01b010..66f89a90 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -17,7 +17,7 @@ jobs: fail-fast: true matrix: php: [7.2, 7.3, 7.4, '8.0', 8.1, 8.2] - laravel: [6, 7, 8] + laravel: [6, 7, 8, 9] exclude: - php: 7.2 laravel: 8