From 2a29d46f34d59a1c8f62ac170b4503c0d83cfa89 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 11 Sep 2025 10:44:13 +0000 Subject: [PATCH 1/2] Update dependency phpunit/phpunit to ^12.3.10 | datasource | package | from | to | | ---------- | --------------- | ------ | ------- | | packagist | phpunit/phpunit | 12.3.7 | 12.3.10 | --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 74fbb7e..034f5b8 100644 --- a/composer.json +++ b/composer.json @@ -14,7 +14,7 @@ "php": "~8.3.0 || ~8.4.0" }, "require-dev": { - "phpunit/phpunit": "^12.3.7", + "phpunit/phpunit": "^12.3.10", "slam/php-cs-fixer-extensions": "^3.12.0" }, "autoload": { From d0f7183e6a21bc1927a3a3ec09a8623820d44d86 Mon Sep 17 00:00:00 2001 From: Filippo Tessarotto Date: Fri, 12 Sep 2025 07:18:26 +0200 Subject: [PATCH 2/2] CS Fix --- lib/r.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/r.php b/lib/r.php index 67811c9..de631ff 100644 --- a/lib/r.php +++ b/lib/r.php @@ -177,7 +177,7 @@ public static function dump(mixed $var, int $maxDepth = 2, bool $stripTags = tru return $dumpText; } - public static function export(mixed $var, int $maxDepth): null|array|bool|float|int|\stdClass|string + public static function export(mixed $var, int $maxDepth): array|bool|float|int|\stdClass|string|null { $isObj = \is_object($var);