Restored some PHP 7.4 support
This commit is contained in:
@ -10,7 +10,11 @@ class FilteringReaderIterator implements Iterator
|
||||
|
||||
private $condition;
|
||||
|
||||
public function __construct(Iterator $reader, array|callable $condition)
|
||||
/**
|
||||
*
|
||||
* @note Removed support for callable in cond (php7.4 compat)
|
||||
*/
|
||||
public function __construct(Iterator $reader, array $condition)
|
||||
{
|
||||
$this->reader = $reader;
|
||||
$this->condition = $condition;
|
||||
|
Reference in New Issue
Block a user