Illuminate\Database\Eloquent\Builder::removedScopes PHP Метод

removedScopes() публичный Метод

Get an array of global scopes that were removed from the query.
public removedScopes ( ) : array
Результат array
    public function removedScopes()
    {
        return $this->removedScopes;
    }

Usage Example

Пример #1
0
 /**
  * Get an array of global scopes that were removed from the query.
  *
  * @return array 
  * @static 
  */
 public static function removedScopes()
 {
     return \Illuminate\Database\Eloquent\Builder::removedScopes();
 }
All Usage Examples Of Illuminate\Database\Eloquent\Builder::removedScopes