Chris@0: Chris@0: * Chris@0: * For the full copyright and license information, please view the LICENSE Chris@0: * file that was distributed with this source code. Chris@0: */ Chris@0: Chris@0: namespace Symfony\Component\HttpKernel\ControllerMetadata; Chris@0: Chris@0: /** Chris@0: * Builds method argument data. Chris@0: * Chris@0: * @author Iltar van der Berg Chris@0: */ Chris@0: interface ArgumentMetadataFactoryInterface Chris@0: { Chris@0: /** Chris@0: * @param mixed $controller The controller to resolve the arguments for Chris@0: * Chris@0: * @return ArgumentMetadata[] Chris@0: */ Chris@0: public function createArgumentMetadata($controller); Chris@0: }