Completed
Branch master (ec1db3)
by Lukáš
07:32
created
Category
src/Authentication/TokenHeaderAuthentication.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Lookyman\Rundeck\Api\Authentication;
5 5
 
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
 	 */
27 27
 	public function authenticate(callable $handler): callable
28 28
 	{
29
-		return function (RequestInterface $request, array $options) use ($handler) {
29
+		return function(RequestInterface $request, array $options) use ($handler) {
30 30
 			return $handler($request->withAddedHeader('X-Rundeck-Auth-Token', $this->token), $options);
31 31
 		};
32 32
 	}
Please login to merge, or discard this patch.
src/Authentication/AuthenticationInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Lookyman\Rundeck\Api\Authentication;
5 5
 
Please login to merge, or discard this patch.
src/Configuration.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Lookyman\Rundeck\Api;
5 5
 
Please login to merge, or discard this patch.
src/Format/FormatInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Lookyman\Rundeck\Api\Format;
5 5
 
Please login to merge, or discard this patch.
src/Format/JsonFormat.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Lookyman\Rundeck\Api\Format;
5 5
 
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
 	 */
14 14
 	public function setFormat(callable $handler): callable
15 15
 	{
16
-		return function (RequestInterface $request, array $options) use ($handler) {
16
+		return function(RequestInterface $request, array $options) use ($handler) {
17 17
 			return $handler($request->withAddedHeader('Content-Type', 'application/json')->withAddedHeader('Accept', 'application/json'), $options);
18 18
 		};
19 19
 	}
Please login to merge, or discard this patch.
src/Client.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Lookyman\Rundeck\Api;
5 5
 
Please login to merge, or discard this patch.
src/Endpoints/Project/Job.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Lookyman\Rundeck\Api\Endpoints\Project;
5 5
 
Please login to merge, or discard this patch.
src/Endpoints/Project/Project.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Lookyman\Rundeck\Api\Endpoints\Project;
5 5
 
Please login to merge, or discard this patch.
src/Endpoints/Job/Job.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Lookyman\Rundeck\Api\Endpoints\Job;
5 5
 
Please login to merge, or discard this patch.