コード例 #1
0
ファイル: HeadersHandler.php プロジェクト: nrip/retrofit-php
 /**
  * @param Method $method
  * @param Headers $annotation
  * @return null
  */
 public function handle(Method $method, $annotation)
 {
     $method->addHeaders($annotation->getHeaders());
 }
コード例 #2
0
ファイル: HeaderHandler.php プロジェクト: nrip/retrofit-php
 /**
  * @param Method $method
  * @param Header $annotation
  * @return null
  */
 public function handle(Method $method, $annotation)
 {
     $method->addHeaders([$annotation->getKey() => $annotation->getValue()]);
 }