Files
ponzi/laravel/routing/destination.php
2011-10-02 23:39:26 -05:00

13 lines
214 B
PHP

<?php namespace Laravel\Routing;
interface Destination {
/**
* Get an array of filter names defined for the destination.
*
* @param string $name
* @return array
*/
public function filters($name);
}