예제 #1
0
 /**
  * @param \WoohooLabs\Yin\JsonApi\Request\RequestInterface $request
  * @param \Psr\Http\Message\ResponseInterface $response
  * @param \WoohooLabs\Yin\JsonApi\Exception\ExceptionFactoryInterface $exceptionFactory
  * @param string $relationshipName
  */
 public function __construct(RequestInterface $request, ResponseInterface $response, ExceptionFactoryInterface $exceptionFactory, $relationshipName)
 {
     parent::__construct($request, $response, $exceptionFactory);
     $this->relationshipName = $relationshipName;
 }
예제 #2
0
파일: Responder.php 프로젝트: garethwi/yin
 /**
  * @param \WoohooLabs\Yin\JsonApi\Request\RequestInterface $request
  * @param \Psr\Http\Message\ResponseInterface $response
  * @param \WoohooLabs\Yin\JsonApi\Exception\ExceptionFactoryInterface $exceptionFactory
  */
 public function __construct(RequestInterface $request, ResponseInterface $response, ExceptionFactoryInterface $exceptionFactory)
 {
     parent::__construct($request, $response, $exceptionFactory);
 }
예제 #3
0
 /**
  * @param \WoohooLabs\Yin\JsonApi\Request\RequestInterface $request
  * @param \Psr\Http\Message\ResponseInterface $response
  * @param \WoohooLabs\Yin\JsonApi\Exception\ExceptionFactoryInterface $exceptionFactory
  * @param SerializerInterface $serializer
  */
 public function __construct(RequestInterface $request, ResponseInterface $response, ExceptionFactoryInterface $exceptionFactory, SerializerInterface $serializer)
 {
     parent::__construct($request, $response, $exceptionFactory, $serializer);
 }