MIF_E31222691/laravel/routing/destination.php

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);
}