From 038b570a1417b12df515d833c4c2c4c3c6a3a003 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 5 Aug 2024 15:30:21 +0200 Subject: [PATCH] Update all non-major dependencies (#264) * Update all non-major dependencies | datasource | package | from | to | | ---------- | ------------------------- | ------ | ------ | | packagist | friendsofphp/php-cs-fixer | 3.60.0 | 3.61.1 | | packagist | phpstan/phpstan | 1.11.8 | 1.11.9 | * CS Fix * CS Fix --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Filippo Tessarotto --- Makefile | 2 +- composer.json | 6 +++--- src/Reader/XLSX/Manager/StyleManager.php | 3 +-- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index 8aedadc9..b8a34ac1 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -DOCKER_PHP_EXEC := docker compose run php +DOCKER_PHP_EXEC := docker compose run --rm php SRCS := $(shell find ./src ./tests -type f -not -path "*/resources/generated_*") diff --git a/composer.json b/composer.json index 28c15494..df443e35 100644 --- a/composer.json +++ b/composer.json @@ -38,13 +38,13 @@ }, "require-dev": { "ext-zlib": "*", - "friendsofphp/php-cs-fixer": "^3.60.0", + "friendsofphp/php-cs-fixer": "^3.61.1", "infection/infection": "^0.29.6", "phpbench/phpbench": "^1.3.1", - "phpstan/phpstan": "^1.11.8", + "phpstan/phpstan": "^1.11.9", "phpstan/phpstan-phpunit": "^1.4.0", "phpstan/phpstan-strict-rules": "^1.6.0", - "phpunit/phpunit": "^10.5.20 || ^11.2.8" + "phpunit/phpunit": "^10.5.20 || ^11.3.0" }, "suggest": { "ext-iconv": "To handle non UTF-8 CSV files (if \"php-mbstring\" is not already installed or is too limited)", diff --git a/src/Reader/XLSX/Manager/StyleManager.php b/src/Reader/XLSX/Manager/StyleManager.php index 15929c4f..b28d2012 100644 --- a/src/Reader/XLSX/Manager/StyleManager.php +++ b/src/Reader/XLSX/Manager/StyleManager.php @@ -67,8 +67,7 @@ class StyleManager implements StyleManagerInterface private array $numFmtIdToIsDateFormatCache = []; /** - * @param string $filePath Path of the XLSX file being read - * @param ?string $stylesXMLFilePath + * @param string $filePath Path of the XLSX file being read */ public function __construct(string $filePath, ?string $stylesXMLFilePath) {