* (c) Francis Besset * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. */ namespace BeSimple\SoapBundle\ServiceDefinition; use BeSimple\SoapCommon\Definition\Method as BaseMethod; use BeSimple\SoapCommon\Definition\Type\TypeRepository; /** * @author Christian Kerl * @author Francis Besset */ class Method extends BaseMethod { private $controller; public function __construct($name, TypeRepository $typeRepository, $controller) { parent::__construct($name, $typeRepository); $this->controller = $controller; } public function getController() { return $this->controller; } public function getVersions() { return array(\SOAP_1_1); } }