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