mirror of
https://github.com/barryvdh/laravel-ide-helper.git
synced 2026-08-18 01:57:13 +00:00
Make non-static instead of skipping
So the parent functions are still accessible, without errors.
This commit is contained in:
@@ -62,15 +62,15 @@ return array(
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Skipped methods
|
||||
| Non-static methods
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| These functions aren't actually facade calls, so don't include them as helper
|
||||
| These functions aren't actually facade calls, so don't make them static
|
||||
|
|
||||
*/
|
||||
|
||||
'skip' => array(
|
||||
'Eloquent' => array('freshTimestamp'),
|
||||
'nonstatic' => array(
|
||||
'Eloquent' => array('freshTimestamp', 'newCollection', 'toArray', 'toJson', 'toSql'),
|
||||
),
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user