From 0576fcc356806f77c52d5ef3efc259e0a7a31d64 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 16 Jan 2024 09:35:22 +0000 Subject: [PATCH 1/2] github-actions(deps): bump shivammathur/setup-php from 2.27.1 to 2.29.0 Bumps [shivammathur/setup-php](https://github.com/shivammathur/setup-php) from 2.27.1 to 2.29.0. - [Release notes](https://github.com/shivammathur/setup-php/releases) - [Commits](https://github.com/shivammathur/setup-php/compare/2.27.1...2.29.0) --- updated-dependencies: - dependency-name: shivammathur/setup-php dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .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 29a93af..541352c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -20,7 +20,7 @@ jobs: uses: actions/checkout@v4 - name: Setup PHP - uses: shivammathur/setup-php@2.27.1 + uses: shivammathur/setup-php@2.29.0 with: php-version: ${{ matrix.php }} coverage: xdebug From 253ed373f14f01a31ad557a66ac90c7903502362 Mon Sep 17 00:00:00 2001 From: Holger Date: Tue, 16 Jan 2024 10:35:35 +0100 Subject: [PATCH 2/2] Apply fixes from StyleCI (#272) --- src/config/fpdf.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/config/fpdf.php b/src/config/fpdf.php index c19042b..048b7d2 100644 --- a/src/config/fpdf.php +++ b/src/config/fpdf.php @@ -11,10 +11,10 @@ | */ - 'orientation' => 'P', - 'unit' => 'mm', - 'size' => 'A4', - 'font_path' => env('FPDF_FONTPATH'), + 'orientation' => 'P', + 'unit' => 'mm', + 'size' => 'A4', + 'font_path' => env('FPDF_FONTPATH'), /* |-------------------------------------------------------------------------- @@ -25,6 +25,6 @@ | a special header needs to be attached to each download response. | */ - 'useVaporHeaders' => env('FPDF_VAPOR_HEADERS', false), + 'useVaporHeaders' => env('FPDF_VAPOR_HEADERS', false), ];