1
0
mirror of https://github.com/flextype/flextype.git synced 2025-08-14 00:54:03 +02:00

feat(element-queries): refactor #436

This commit is contained in:
Awilum
2020-07-15 23:45:12 +03:00
parent 7a2a42f3ee
commit 9b84f469ec

View File

@@ -20,6 +20,7 @@ use function array_rand;
use function array_undot;
use function count;
use function error_reporting;
use function is_array;
use function is_null;
use function shuffle;
use const E_NOTICE;
@@ -308,7 +309,7 @@ class Collection
$results = $collection->last();
// Return first matching result
return is_array ($results) ? array_undot($results) : $results;
return is_array($results) ? array_undot($results) : $results;
}
/**
@@ -332,7 +333,7 @@ class Collection
$results = $collection->next();
// Return first matching result
return is_array ($results) ? array_undot($results) : $results;
return is_array($results) ? array_undot($results) : $results;
}
/**
@@ -385,7 +386,7 @@ class Collection
$results = $collection->first();
// Return first matching result
return is_array ($results) ? array_undot($results) : $results;
return is_array($results) ? array_undot($results) : $results;
}
/**