You've already forked php-flasher
mirror of
https://github.com/php-flasher/php-flasher.git
synced 2026-04-05 12:32:55 +01:00
test: fix tests
This commit is contained in:
@@ -65,7 +65,7 @@ final class Filter
|
||||
$this->applyOrdering();
|
||||
$this->applyLimit();
|
||||
|
||||
return $this->envelopes;
|
||||
return array_values($this->envelopes);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -134,7 +134,7 @@ final class Filter
|
||||
*/
|
||||
private function applyOrdering()
|
||||
{
|
||||
if (null === $this->orderings) {
|
||||
if (array() === $this->orderings) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user