mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 01:08:56 +00:00
Update Predb model getAll function PHPDOC block
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
2018-04-25 DariusIII
|
||||
* Fix: Update Predb model getAll function PHPDOC block
|
||||
* Fix: Fix adding new user roles
|
||||
* Fix: Remove duplicated SESSION_DRIVER from .env.example
|
||||
* Chg: Update smarty/smarty to version 3.1.32
|
||||
|
||||
@@ -143,13 +143,11 @@ class Predb extends Model
|
||||
}
|
||||
|
||||
/**
|
||||
* Get all PRE's in the DB.
|
||||
* @param string $search
|
||||
*
|
||||
*
|
||||
* @param string|array $search
|
||||
* @return array
|
||||
* @return \Illuminate\Contracts\Pagination\LengthAwarePaginator|mixed
|
||||
*/
|
||||
public static function getAll($search = ''): array
|
||||
public static function getAll($search = '')
|
||||
{
|
||||
if ($search !== '') {
|
||||
$search = explode(' ', trim($search));
|
||||
|
||||
Reference in New Issue
Block a user