From a4095e6d638bc7d3376798fad2b3f4a5ac68d836 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Sat, 7 Dec 2019 02:06:06 +0000 Subject: [PATCH 1/2] build(deps-dev): update phpunit/phpunit requirement from ^4.8 || ^5.7 || ^6.5 || ^7.5 to ^4.8 || ^5.7 || ^6.5 || ^7.5 || ^8.0 Updates the requirements on [phpunit/phpunit](https://github.com/sebastianbergmann/phpunit) to permit the latest version. - [Release notes](https://github.com/sebastianbergmann/phpunit/releases) - [Changelog](https://github.com/sebastianbergmann/phpunit/blob/master/ChangeLog-8.5.md) - [Commits](https://github.com/sebastianbergmann/phpunit/commits/8.5.0) Signed-off-by: dependabot-preview[bot] --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 702b1d6..eb879f6 100644 --- a/composer.json +++ b/composer.json @@ -26,6 +26,6 @@ "require": { }, "require-dev": { - "phpunit/phpunit": "^4.8 || ^5.7 || ^6.5 || ^7.5" + "phpunit/phpunit": "^4.8 || ^5.7 || ^6.5 || ^7.5 || ^8.0" } } From c3ffba3805ef9923d090c3e313ac4e9494a22358 Mon Sep 17 00:00:00 2001 From: Jitendra Adhikari Date: Sat, 7 Dec 2019 09:21:51 +0700 Subject: [PATCH 2/2] chore: php5 compat --- src/With.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/With.php b/src/With.php index 71bb294..771d25b 100644 --- a/src/With.php +++ b/src/With.php @@ -41,7 +41,7 @@ public function __construct($thing) * * @return With */ - public function __call(string $method, array $things): With + public function __call(string $method, array $things) { if (\substr($method, -1) === '_') { $method = \substr($method, 0, -1);