Completed
Pull Request — master (#72)
by Nate
03:35
created
src/Internal/AnnotationHandler/HeaderMapAnnotHandler.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@  discard block
 block discarded – undo
4 4
  * Distributed under the MIT License (http://opensource.org/licenses/MIT)
5 5
  */
6 6
 
7
-declare(strict_types=1);
7
+declare(strict_types = 1);
8 8
 
9 9
 namespace Tebru\Retrofit\Internal\AnnotationHandler;
10 10
 
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
         ServiceMethodBuilder $serviceMethodBuilder,
37 37
         ?Converter $converter,
38 38
         ?int $index
39
-    ): void {
39
+    ) : void {
40 40
         $serviceMethodBuilder->addParameterHandler($index, new HeaderMapParamHandler($converter));
41 41
     }
42 42
 }
Please login to merge, or discard this patch.
src/Internal/AnnotationHandler/UrlAnnotHandler.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@  discard block
 block discarded – undo
4 4
  * Distributed under the MIT License (http://opensource.org/licenses/MIT)
5 5
  */
6 6
 
7
-declare(strict_types=1);
7
+declare(strict_types = 1);
8 8
 
9 9
 namespace Tebru\Retrofit\Internal\AnnotationHandler;
10 10
 
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
         ServiceMethodBuilder $serviceMethodBuilder,
37 37
         ?Converter $converter,
38 38
         ?int $index
39
-    ): void {
39
+    ) : void {
40 40
         $serviceMethodBuilder->addParameterHandler($index, new UrlParamHandler($converter));
41 41
     }
42 42
 }
Please login to merge, or discard this patch.
src/Internal/AnnotationHandler/QueryNameAnnotHandler.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@  discard block
 block discarded – undo
4 4
  * Distributed under the MIT License (http://opensource.org/licenses/MIT)
5 5
  */
6 6
 
7
-declare(strict_types=1);
7
+declare(strict_types = 1);
8 8
 
9 9
 namespace Tebru\Retrofit\Internal\AnnotationHandler;
10 10
 
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
         ServiceMethodBuilder $serviceMethodBuilder,
38 38
         ?Converter $converter,
39 39
         ?int $index
40
-    ): void {
40
+    ) : void {
41 41
         $serviceMethodBuilder->addParameterHandler(
42 42
             $index,
43 43
             new QueryNameParamHandler($converter, $annotation->isEncoded())
Please login to merge, or discard this patch.
src/Internal/AnnotationHandler/HeadersAnnotHandler.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@  discard block
 block discarded – undo
4 4
  * Distributed under the MIT License (http://opensource.org/licenses/MIT)
5 5
  */
6 6
 
7
-declare(strict_types=1);
7
+declare(strict_types = 1);
8 8
 
9 9
 namespace Tebru\Retrofit\Internal\AnnotationHandler;
10 10
 
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
         ServiceMethodBuilder $serviceMethodBuilder,
35 35
         ?Converter $converter,
36 36
         ?int $index
37
-    ): void {
37
+    ) : void {
38 38
         /** @var string[] $headerList */
39 39
         $headerList = $annotation->getValue();
40 40
         foreach ($headerList as $name => $header) {
Please login to merge, or discard this patch.
src/Internal/AnnotationHandler/BodyAnnotHandler.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@  discard block
 block discarded – undo
4 4
  * Distributed under the MIT License (http://opensource.org/licenses/MIT)
5 5
  */
6 6
 
7
-declare(strict_types=1);
7
+declare(strict_types = 1);
8 8
 
9 9
 namespace Tebru\Retrofit\Internal\AnnotationHandler;
10 10
 
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
         ServiceMethodBuilder $serviceMethodBuilder,
37 37
         ?Converter $converter,
38 38
         ?int $index
39
-    ): void {
39
+    ) : void {
40 40
         $serviceMethodBuilder->setIsJson();
41 41
         $serviceMethodBuilder->addParameterHandler($index, new BodyParamHandler($converter));
42 42
     }
Please login to merge, or discard this patch.
src/Internal/AnnotationHandler/PartMapAnnotHandler.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@  discard block
 block discarded – undo
4 4
  * Distributed under the MIT License (http://opensource.org/licenses/MIT)
5 5
  */
6 6
 
7
-declare(strict_types=1);
7
+declare(strict_types = 1);
8 8
 
9 9
 namespace Tebru\Retrofit\Internal\AnnotationHandler;
10 10
 
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
         ServiceMethodBuilder $serviceMethodBuilder,
38 38
         ?Converter $converter,
39 39
         ?int $index
40
-    ): void {
40
+    ) : void {
41 41
         $serviceMethodBuilder->setIsMultipart();
42 42
         $serviceMethodBuilder->addParameterHandler(
43 43
             $index,
Please login to merge, or discard this patch.
src/Internal/AnnotationHandler/PartAnnotHandler.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@  discard block
 block discarded – undo
4 4
  * Distributed under the MIT License (http://opensource.org/licenses/MIT)
5 5
  */
6 6
 
7
-declare(strict_types=1);
7
+declare(strict_types = 1);
8 8
 
9 9
 namespace Tebru\Retrofit\Internal\AnnotationHandler;
10 10
 
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
         ServiceMethodBuilder $serviceMethodBuilder,
38 38
         ?Converter $converter,
39 39
         ?int $index
40
-    ): void {
40
+    ) : void {
41 41
         $serviceMethodBuilder->setIsMultipart();
42 42
         $serviceMethodBuilder->addParameterHandler(
43 43
             $index,
Please login to merge, or discard this patch.
src/Internal/AnnotationHandler/QueryAnnotHandler.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@  discard block
 block discarded – undo
4 4
  * Distributed under the MIT License (http://opensource.org/licenses/MIT)
5 5
  */
6 6
 
7
-declare(strict_types=1);
7
+declare(strict_types = 1);
8 8
 
9 9
 namespace Tebru\Retrofit\Internal\AnnotationHandler;
10 10
 
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
         ServiceMethodBuilder $serviceMethodBuilder,
38 38
         ?Converter $converter,
39 39
         ?int $index
40
-    ): void {
40
+    ) : void {
41 41
         $serviceMethodBuilder->addParameterHandler(
42 42
             $index,
43 43
             new QueryParamHandler($converter, $annotation->getValue(), $annotation->isEncoded())
Please login to merge, or discard this patch.
src/Internal/ParameterHandler/FieldParamHandler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
  * Distributed under the MIT License (http://opensource.org/licenses/MIT)
5 5
  */
6 6
 
7
-declare(strict_types=1);
7
+declare(strict_types = 1);
8 8
 
9 9
 namespace Tebru\Retrofit\Internal\ParameterHandler;
10 10
 
Please login to merge, or discard this patch.