Pheasant\Tests\Examples\Animal::scopes PHP Method

scopes() public static method

public static scopes ( )
    public static function scopes()
    {
        return array('frogs' => function ($chain) {
            return $chain->filter('type = ?', 'frog');
        }, 'by_type' => function ($chain, $type) {
            return $chain->filter('type = ?', $type);
        });
    }