class SortedMiddleware extends Collection (View source)
EnumeratesValues | |
Macroable |
static protected string[] | $proxies | The methods that can be proxied. | from EnumeratesValues |
static protected array | $macros | The registered string macros. | from Macroable |
protected array | $items | The items contained in the collection. | from Collection |
static EnumeratesValues | make(mixed $items = []) Create a new collection instance if the value isn't one already. | from EnumeratesValues |
static EnumeratesValues | wrap(mixed $value) Wrap the given value in a collection if applicable. | from EnumeratesValues |
static array | unwrap(array|EnumeratesValues $value) Get the underlying items from the given collection if applicable. | from EnumeratesValues |
static EnumeratesValues | empty() Create a new instance with no items. | from EnumeratesValues |
static EnumeratesValues | times(int $number, callable $callback = null) Create a new collection by invoking the callback a given amount of times. | from EnumeratesValues |
mixed | average(callable|string|null $callback = null) Alias for the "avg" method. | from EnumeratesValues |
bool | some(mixed $key, mixed $operator = null, mixed $value = null) Alias for the "contains" method. | from EnumeratesValues |
bool | containsStrict(mixed $key, mixed $value = null) Determine if an item exists, using strict comparison. | from EnumeratesValues |
void | dd(mixed ...$args) Dump the items and end the script. | from EnumeratesValues |
$this | dump() Dump the items. | from EnumeratesValues |
$this | each(callable $callback) Execute a callback over each item. | from EnumeratesValues |
EnumeratesValues | eachSpread(callable $callback) Execute a callback over each nested chunk of items. | from EnumeratesValues |
bool | every(string|callable $key, mixed $operator = null, mixed $value = null) Determine if all items pass the given truth test. | from EnumeratesValues |
mixed | firstWhere(string $key, mixed $operator = null, mixed $value = null) Get the first item by the given key value pair. | from EnumeratesValues |
bool | isNotEmpty() Determine if the collection is not empty. | from EnumeratesValues |
EnumeratesValues | mapSpread(callable $callback) Run a map over each nested chunk of items. | from EnumeratesValues |
EnumeratesValues | mapToGroups(callable $callback) Run a grouping map over the items. | from EnumeratesValues |
EnumeratesValues | flatMap(callable $callback) Map a collection and flatten the result by a single level. | from EnumeratesValues |
EnumeratesValues | mapInto(string $class) Map the values into a new class. | from EnumeratesValues |
mixed | min(callable|string|null $callback = null) Get the min value of a given key. | from EnumeratesValues |
mixed | max(callable|string|null $callback = null) Get the max value of a given key. | from EnumeratesValues |
EnumeratesValues | forPage(int $page, int $perPage) "Paginate" the collection by slicing it into a smaller collection. | from EnumeratesValues |
EnumeratesValues | partition(callable|string $key, mixed $operator = null, mixed $value = null) Partition the collection into two arrays using the given callback or key. | from EnumeratesValues |
mixed | sum(callable|string|null $callback = null) Get the sum of the given values. | from EnumeratesValues |
EnumeratesValues|mixed | when(bool|mixed $value, callable $callback = null, callable $default = null) Apply the callback if the value is truthy. | from EnumeratesValues |
EnumeratesValues|mixed | whenEmpty(callable $callback, callable $default = null) Apply the callback if the collection is empty. | from EnumeratesValues |
EnumeratesValues|mixed | whenNotEmpty(callable $callback, callable $default = null) Apply the callback if the collection is not empty. | from EnumeratesValues |
EnumeratesValues|mixed | unless(bool $value, callable $callback, callable $default = null) Apply the callback if the value is falsy. | from EnumeratesValues |
EnumeratesValues|mixed | unlessEmpty(callable $callback, callable $default = null) Apply the callback unless the collection is empty. | from EnumeratesValues |
EnumeratesValues|mixed | unlessNotEmpty(callable $callback, callable $default = null) Apply the callback unless the collection is not empty. | from EnumeratesValues |
EnumeratesValues | where(string $key, mixed $operator = null, mixed $value = null) Filter items by the given key value pair. | from EnumeratesValues |
EnumeratesValues | whereNull(string|null $key = null) Filter items where the value for the given key is null. | from EnumeratesValues |
EnumeratesValues | whereNotNull(string|null $key = null) Filter items where the value for the given key is not null. | from EnumeratesValues |
EnumeratesValues | whereStrict(string $key, mixed $value) Filter items by the given key value pair using strict comparison. | from EnumeratesValues |
EnumeratesValues | whereIn(string $key, mixed $values, bool $strict = false) Filter items by the given key value pair. | from EnumeratesValues |
EnumeratesValues | whereInStrict(string $key, mixed $values) Filter items by the given key value pair using strict comparison. | from EnumeratesValues |
EnumeratesValues | whereBetween(string $key, array $values) Filter items such that the value of the given key is between the given values. | from EnumeratesValues |
EnumeratesValues | whereNotBetween(string $key, array $values) Filter items such that the value of the given key is not between the given values. | from EnumeratesValues |
EnumeratesValues | whereNotIn(string $key, mixed $values, bool $strict = false) Filter items by the given key value pair. | from EnumeratesValues |
EnumeratesValues | whereNotInStrict(string $key, mixed $values) Filter items by the given key value pair using strict comparison. | from EnumeratesValues |
EnumeratesValues | whereInstanceOf(string $type) Filter the items, removing any items that don't match the given type. | from EnumeratesValues |
mixed | pipe(callable $callback) Pass the collection to the given callback and return the result. | from EnumeratesValues |
mixed | pipeInto(string $class) Pass the collection into a new class. | from EnumeratesValues |
$this | tap(callable $callback) Pass the collection to the given callback and then return it. | from EnumeratesValues |
EnumeratesValues | reject(callable|mixed $callback = true) Create a collection of all elements that do not pass a given truth test. | from EnumeratesValues |
EnumeratesValues | unique(string|callable|null $key = null, bool $strict = false) Return only unique items from the collection array. | from EnumeratesValues |
EnumeratesValues | uniqueStrict(string|callable|null $key = null) Return only unique items from the collection array using strict comparison. | from EnumeratesValues |
Collection | collect() Collect the values into a collection. | from EnumeratesValues |
array | toArray() Get the collection of items as a plain array. | from EnumeratesValues |
array | jsonSerialize() Convert the object into something JSON serializable. | from EnumeratesValues |
string | toJson(int $options = 0) Get the collection of items as JSON. | from EnumeratesValues |
CachingIterator | getCachingIterator(int $flags = CachingIterator::CALL_TOSTRING) Get a CachingIterator instance. | from EnumeratesValues |
string | __toString() Convert the collection to its string representation. | from EnumeratesValues |
static void | proxy(string $method) Add a method to the list of proxied methods. | from EnumeratesValues |
mixed | __get(string $key) Dynamically access collection proxies. | from EnumeratesValues |
array | getArrayableItems(mixed $items) Results array of items from Collection or Arrayable. | from EnumeratesValues |
Closure | operatorForWhere(string $key, string|null $operator = null, mixed $value = null) Get an operator checker callback. | from EnumeratesValues |
bool | useAsCallable(mixed $value) Determine if the given value is callable, but not a string. | from EnumeratesValues |
callable | valueRetriever(callable|string|null $value) Get a value retrieving callback. | from EnumeratesValues |
Closure | equality(mixed $value) Make a function to check an item's equality. | from EnumeratesValues |
Closure | negate(Closure $callback) Make a function using another function, by negating its result. | from EnumeratesValues |
Closure | identity() Make a function that returns what's passed to it. | from EnumeratesValues |
static void | macro(string $name, object|callable $macro) Register a custom macro. | from Macroable |
static void | mixin(object $mixin, bool $replace = true) Mix another object into the class. | from Macroable |
static bool | hasMacro(string $name) Checks if macro is registered. | from Macroable |
static mixed | __callStatic(string $method, array $parameters) Dynamically handle calls to the class. | from Macroable |
mixed | __call(string $method, array $parameters) Dynamically handle calls to the class. | from Macroable |
void | __construct(array $priorityMap, Collection|array $middlewares) Create a new Sorted Middleware container. | |
static Enumerable | range(int $from, int $to) Create a collection with the given range. | from Collection |
array | all() Get all of the items in the collection. | from Collection |
LazyCollection | lazy() Get a lazy collection for the items in this collection. | from Collection |
mixed | avg(callable|string|null $callback = null) Get the average value of a given key. | from Collection |
mixed | median(string|array|null $key = null) Get the median of a given key. | from Collection |
array|null | mode(string|array|null $key = null) Get the mode of a given key. | from Collection |
Enumerable | collapse() Collapse the collection of items into a single array. | from Collection |
bool | contains(mixed $key, mixed $operator = null, mixed $value = null) Determine if an item exists in the collection. | from Collection |
Enumerable | crossJoin(mixed ...$lists) Cross join with the given lists, returning all possible permutations. | from Collection |
Enumerable | diff(mixed $items) Get the items in the collection that are not present in the given items. | from Collection |
Enumerable | diffUsing(mixed $items, callable $callback) Get the items in the collection that are not present in the given items, using the callback. | from Collection |
Enumerable | diffAssoc(mixed $items) Get the items in the collection whose keys and values are not present in the given items. | from Collection |
Enumerable | diffAssocUsing(mixed $items, callable $callback) Get the items in the collection whose keys and values are not present in the given items, using the callback. | from Collection |
Enumerable | diffKeys(mixed $items) Get the items in the collection whose keys are not present in the given items. | from Collection |
Enumerable | diffKeysUsing(mixed $items, callable $callback) Get the items in the collection whose keys are not present in the given items, using the callback. | from Collection |
Enumerable | duplicates(callable|null $callback = null, bool $strict = false) Retrieve duplicate items from the collection. | from Collection |
Enumerable | duplicatesStrict(callable|null $callback = null) Retrieve duplicate items from the collection using strict comparison. | from Collection |
Closure | duplicateComparator(bool $strict) Get the comparison function to detect duplicates. | from Collection |
Enumerable | except(mixed $keys) Get all items except for those with the specified keys. | from Collection |
Enumerable | filter(callable $callback = null) Run a filter over each of the items. | from Collection |
mixed | first(callable $callback = null, mixed $default = null) Get the first item from the collection passing the given truth test. | from Collection |
Enumerable | flatten(int $depth = INF) Get a flattened array of the items in the collection. | from Collection |
Enumerable | flip() Flip the items in the collection. | from Collection |
$this | forget(string|array $keys) Remove an item from the collection by key. | from Collection |
mixed | get(mixed $key, mixed $default = null) Get an item from the collection by key. | from Collection |
Enumerable | groupBy(array|callable|string $groupBy, bool $preserveKeys = false) Group an associative array by a field or using a callback. | from Collection |
Enumerable | keyBy(callable|string $keyBy) Key an associative array by a field or using a callback. | from Collection |
bool | has(mixed $key) Determine if an item exists in the collection by key. | from Collection |
string | implode(string $value, string|null $glue = null) Concatenate values of a given key as a string. | from Collection |
Enumerable | intersect(mixed $items) Intersect the collection with the given items. | from Collection |
Enumerable | intersectByKeys(mixed $items) Intersect the collection with the given items by key. | from Collection |
bool | isEmpty() Determine if the collection is empty or not. | from Collection |
string | join(string $glue, string $finalGlue = '') Join all items from the collection using a string. The final items can use a separate glue string. | from Collection |
Enumerable | keys() Get the keys of the collection items. | from Collection |
mixed | last(callable $callback = null, mixed $default = null) Get the last item from the collection. | from Collection |
Enumerable | pluck(string|array $value, string|null $key = null) Get the values of a given key. | from Collection |
Enumerable | map(callable $callback) Run a map over each of the items. | from Collection |
Enumerable | mapToDictionary(callable $callback) Run a dictionary map over the items. | from Collection |
Enumerable | mapWithKeys(callable $callback) Run an associative map over each of the items. | from Collection |
Enumerable | merge(mixed $items) Merge the collection with the given items. | from Collection |
Enumerable | mergeRecursive(mixed $items) Recursively merge the collection with the given items. | from Collection |
Enumerable | combine(mixed $values) Create a collection by using this collection for keys and another for its values. | from Collection |
Enumerable | union(mixed $items) Union the collection with the given items. | from Collection |
Enumerable | nth(int $step, int $offset = 0) Create a new collection consisting of every n-th element. | from Collection |
Enumerable | only(mixed $keys) Get the items with the specified keys. | from Collection |
mixed | pop() Get and remove the last item from the collection. | from Collection |
$this | prepend(mixed $value, mixed $key = null) Push an item onto the beginning of the collection. | from Collection |
$this | push(mixed ...$values) Push one or more items onto the end of the collection. | from Collection |
Enumerable | concat(iterable $source) Push all of the given items onto the collection. | from Collection |
mixed | pull(mixed $key, mixed $default = null) Get and remove an item from the collection. | from Collection |
$this | put(mixed $key, mixed $value) Put an item in the collection by key. | from Collection |
Enumerable|mixed | random(int|null $number = null) Get one or a specified number of items randomly from the collection. | from Collection |
mixed | reduce(callable $callback, mixed $initial = null) Reduce the collection to a single value. | from Collection |
Enumerable | replace(mixed $items) Replace the collection items with the given items. | from Collection |
Enumerable | replaceRecursive(mixed $items) Recursively replace the collection items with the given items. | from Collection |
Enumerable | reverse() Reverse items order. | from Collection |
mixed | search(mixed $value, bool $strict = false) Search the collection for a given value and return the corresponding key if successful. | from Collection |
mixed | shift() Get and remove the first item from the collection. | from Collection |
Enumerable | shuffle(int|null $seed = null) Shuffle the items in the collection. | from Collection |
Enumerable | skip(int $count) Skip the first {$count} items. | from Collection |
Enumerable | skipUntil(mixed $value) Skip items in the collection until the given condition is met. | from Collection |
Enumerable | skipWhile(mixed $value) Skip items in the collection while the given condition is met. | from Collection |
Enumerable | slice(int $offset, int|null $length = null) Slice the underlying collection array. | from Collection |
Enumerable | split(int $numberOfGroups) Split a collection into a certain number of groups. | from Collection |
Enumerable | chunk(int $size) Chunk the collection into chunks of the given size. | from Collection |
Enumerable | chunkWhile(callable $callback) Chunk the collection into chunks with a callback. | from Collection |
Enumerable | sort(callable|null|int $callback = null) Sort through each item with a callback. | from Collection |
Enumerable | sortDesc(int $options = SORT_REGULAR) Sort items in descending order. | from Collection |
Enumerable | sortBy(callable|string $callback, int $options = SORT_REGULAR, bool $descending = false) Sort the collection using the given callback. | from Collection |
Enumerable | sortByDesc(callable|string $callback, int $options = SORT_REGULAR) Sort the collection in descending order using the given callback. | from Collection |
Enumerable | sortKeys(int $options = SORT_REGULAR, bool $descending = false) Sort the collection keys. | from Collection |
Enumerable | sortKeysDesc(int $options = SORT_REGULAR) Sort the collection keys in descending order. | from Collection |
Collection | splice(int $offset, int|null $length = null, mixed $replacement = []) Splice a portion of the underlying collection array. | from Collection |
Enumerable | take(int $limit) Take the first or last {$limit} items. | from Collection |
Enumerable | takeUntil(mixed $value) Take items in the collection until the given condition is met. | from Collection |
Enumerable | takeWhile(mixed $value) Take items in the collection while the given condition is met. | from Collection |
$this | transform(callable $callback) Transform each item in the collection using a callback. | from Collection |
Enumerable | values() Reset the keys on the underlying array. | from Collection |
Enumerable | zip(mixed $items) Zip the collection together with one or more arrays. | from Collection |
Enumerable | pad(int $size, mixed $value) Pad collection to the specified length with a value. | from Collection |
ArrayIterator | getIterator() Get an iterator for the items. | from Collection |
int | count() Count the number of items in the collection. | from Collection |
Enumerable | countBy(callable|string $countBy = null) Count the number of items in the collection by a field or using a callback. | from Collection |
$this | add(mixed $item) Add an item to the collection. | from Collection |
Collection | toBase() Get a base Support collection instance from this collection. | from Collection |
bool | offsetExists(mixed $key) Determine if an item exists at an offset. | from Collection |
mixed | offsetGet(mixed $key) Get an item at a given offset. | from Collection |
void | offsetSet(mixed $key, mixed $value) Set the item at a given offset. | from Collection |
void | offsetUnset(string $key) Unset the item at a given offset. | from Collection |
array | sortMiddleware(array $priorityMap, array $middlewares) Sort the middlewares by the given priority map. | |
int|null | priorityMapIndex(array $priorityMap, string $middleware) Calculate the priority map index of the middleware. | |
Generator | middlewareNames(string $middleware) Resolve the middleware names to look for in the priority array. | |
array | moveMiddleware(array $middlewares, int $from, int $to) Splice a middleware into a new position and remove the old entry. |
Create a new collection instance if the value isn't one already.
Wrap the given value in a collection if applicable.
Get the underlying items from the given collection if applicable.
Create a new instance with no items.
Create a new collection by invoking the callback a given amount of times.
Alias for the "avg" method.
Alias for the "contains" method.
Determine if an item exists, using strict comparison.
Dump the items and end the script.
Dump the items.
Execute a callback over each item.
Execute a callback over each nested chunk of items.
Determine if all items pass the given truth test.
Get the first item by the given key value pair.
Determine if the collection is not empty.
Run a map over each nested chunk of items.
Run a grouping map over the items.
The callback should return an associative array with a single key/value pair.
Map a collection and flatten the result by a single level.
Map the values into a new class.
Get the min value of a given key.
Get the max value of a given key.
"Paginate" the collection by slicing it into a smaller collection.
Partition the collection into two arrays using the given callback or key.
Get the sum of the given values.
Apply the callback if the value is truthy.
Apply the callback if the collection is empty.
Apply the callback if the collection is not empty.
Apply the callback if the value is falsy.
Apply the callback unless the collection is empty.
Apply the callback unless the collection is not empty.
Filter items by the given key value pair.
Filter items where the value for the given key is null.
Filter items where the value for the given key is not null.
Filter items by the given key value pair using strict comparison.
Filter items by the given key value pair.
Filter items by the given key value pair using strict comparison.
Filter items such that the value of the given key is between the given values.
Filter items such that the value of the given key is not between the given values.
Filter items by the given key value pair.
Filter items by the given key value pair using strict comparison.
Filter the items, removing any items that don't match the given type.
Pass the collection to the given callback and return the result.
Pass the collection into a new class.
Pass the collection to the given callback and then return it.
Create a collection of all elements that do not pass a given truth test.
Return only unique items from the collection array.
Return only unique items from the collection array using strict comparison.
Collect the values into a collection.
Get the collection of items as a plain array.
Convert the object into something JSON serializable.
Get the collection of items as JSON.
Get a CachingIterator instance.
Convert the collection to its string representation.
Add a method to the list of proxied methods.
Dynamically access collection proxies.
Results array of items from Collection or Arrayable.
Get an operator checker callback.
Determine if the given value is callable, but not a string.
Get a value retrieving callback.
Make a function to check an item's equality.
Make a function using another function, by negating its result.
Make a function that returns what's passed to it.
Register a custom macro.
Mix another object into the class.
Checks if macro is registered.
Dynamically handle calls to the class.
Dynamically handle calls to the class.
Create a new Sorted Middleware container.
Create a collection with the given range.
Get all of the items in the collection.
Get a lazy collection for the items in this collection.
Get the average value of a given key.
Get the median of a given key.
Get the mode of a given key.
Collapse the collection of items into a single array.
Determine if an item exists in the collection.
Cross join with the given lists, returning all possible permutations.
Get the items in the collection that are not present in the given items.
Get the items in the collection that are not present in the given items, using the callback.
Get the items in the collection whose keys and values are not present in the given items.
Get the items in the collection whose keys and values are not present in the given items, using the callback.
Get the items in the collection whose keys are not present in the given items.
Get the items in the collection whose keys are not present in the given items, using the callback.
Retrieve duplicate items from the collection.
Retrieve duplicate items from the collection using strict comparison.
Get the comparison function to detect duplicates.
Get all items except for those with the specified keys.
Run a filter over each of the items.
Get the first item from the collection passing the given truth test.
Get a flattened array of the items in the collection.
Flip the items in the collection.
Remove an item from the collection by key.
Get an item from the collection by key.
Group an associative array by a field or using a callback.
Key an associative array by a field or using a callback.
Determine if an item exists in the collection by key.
Concatenate values of a given key as a string.
Intersect the collection with the given items.
Intersect the collection with the given items by key.
Determine if the collection is empty or not.
Join all items from the collection using a string. The final items can use a separate glue string.
Get the keys of the collection items.
Get the last item from the collection.
Get the values of a given key.
Run a map over each of the items.
Run a dictionary map over the items.
The callback should return an associative array with a single key/value pair.
Run an associative map over each of the items.
The callback should return an associative array with a single key/value pair.
Merge the collection with the given items.
Recursively merge the collection with the given items.
Create a collection by using this collection for keys and another for its values.
Union the collection with the given items.
Create a new collection consisting of every n-th element.
Get the items with the specified keys.
Get and remove the last item from the collection.
Push an item onto the beginning of the collection.
Push one or more items onto the end of the collection.
Push all of the given items onto the collection.
Get and remove an item from the collection.
Put an item in the collection by key.
Get one or a specified number of items randomly from the collection.
Reduce the collection to a single value.
Replace the collection items with the given items.
Recursively replace the collection items with the given items.
Reverse items order.
Search the collection for a given value and return the corresponding key if successful.
Get and remove the first item from the collection.
Shuffle the items in the collection.
Skip the first {$count} items.
Skip items in the collection until the given condition is met.
Skip items in the collection while the given condition is met.
Slice the underlying collection array.
Split a collection into a certain number of groups.
Chunk the collection into chunks of the given size.
Chunk the collection into chunks with a callback.
Sort through each item with a callback.
Sort items in descending order.
Sort the collection using the given callback.
Sort the collection in descending order using the given callback.
Sort the collection keys.
Sort the collection keys in descending order.
Splice a portion of the underlying collection array.
Take the first or last {$limit} items.
Take items in the collection until the given condition is met.
Take items in the collection while the given condition is met.
Transform each item in the collection using a callback.
Reset the keys on the underlying array.
Zip the collection together with one or more arrays.
e.g. new Collection([1, 2, 3])->zip([4, 5, 6]); => [[1, 4], [2, 5], [3, 6]]
Pad collection to the specified length with a value.
Get an iterator for the items.
Count the number of items in the collection.
Count the number of items in the collection by a field or using a callback.
Add an item to the collection.
Get a base Support collection instance from this collection.
Determine if an item exists at an offset.
Get an item at a given offset.
Set the item at a given offset.
Unset the item at a given offset.
Sort the middlewares by the given priority map.
Each call to this method makes one discrete middleware movement if necessary.
Calculate the priority map index of the middleware.
Resolve the middleware names to look for in the priority array.
Splice a middleware into a new position and remove the old entry.
© Taylor Otwell
Licensed under the MIT License.
Laravel is a trademark of Taylor Otwell.
https://laravel.com/api/8.x/Illuminate/Routing/SortedMiddleware.html