Illuminate\Database\Eloquent\Builder::removedScopes PHP Méthode

removedScopes() public méthode

Get an array of global scopes that were removed from the query.
public removedScopes ( ) : array
Résultat array
    public function removedScopes()
    {
        return $this->removedScopes;
    }

Usage Example

Exemple #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