Пример #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
 /**
  * @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);
 }