Illuminate\Database\Eloquent\Builder::removedScopes PHP Method

removedScopes() public method

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

Usage Example

コード例 #1
0
ファイル: _ide_helper.php プロジェクト: whplay/ohmate-shop
 /**
  * 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