Skip to content

Commit 6244bf3

Browse files
authored
Merge pull request #78 from KevinVanSonsbeek/master
Bumped composer.json to allow php ^8.0
2 parents e6c934c + adba3f2 commit 6244bf3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
}
2828
},
2929
"require": {
30-
"php": "^7.2"
30+
"php": "^7.2 || ^8.0"
3131
},
3232
"require-dev": {
3333
"phpunit/phpunit": "^8.2"

src/CollectionInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ public function exchangeArray(array $elements): void;
135135
public function append($element): void;
136136

137137
/**
138-
* @phpstan-param class-string<ArrayAccess>|string $iteratorClass
138+
* @phpstan-param class-string<\ArrayAccess>|string $iteratorClass
139139
*
140140
* @throws InvalidArgumentException When the given iterator class does not implement ArrayAccess.
141141
*/

0 commit comments

Comments
 (0)