Размер файла: 1.64Kb
<?php //28b15a82501422b3248c5d457d14cf30
/** @noinspection all */
namespace Illuminate\Notifications {
use Illuminate\Support\Collection;
use LaravelIdea\Helper\_BaseCollection;
/**
* @method DatabaseNotification|null getOrPut($key, \Closure $value)
* @method DatabaseNotification|$this shift(int $count = 1)
* @method DatabaseNotification|null firstOrFail(callable|string $key = null, $operator = null, $value = null)
* @method DatabaseNotification|$this pop(int $count = 1)
* @method DatabaseNotification|null pull($key, \Closure $default = null)
* @method DatabaseNotification|null last(callable|null $callback = null, \Closure $default = null)
* @method DatabaseNotification|$this random(callable|int|null $number = null, bool $preserveKeys = false)
* @method DatabaseNotification|null sole(callable|string $key = null, $operator = null, $value = null)
* @method DatabaseNotification|null get($key, \Closure $default = null)
* @method DatabaseNotification|null first(callable|null $callback = null, \Closure $default = null)
* @method DatabaseNotification|null firstWhere(callable|string $key, $operator = null, $value = null)
* @method DatabaseNotification|null find($key, $default = null)
* @method DatabaseNotification[] all()
*/
class DatabaseNotificationCollection extends _BaseCollection {
/**
* @param int $size
* @param bool $preserveKeys
* @return DatabaseNotification[][]|Collection<DatabaseNotificationCollection>
*/
public function chunk($size, $preserveKeys = true)
{
return [];
}
}
}