Completed
Push — master ( 4b7539...ee2373 )
by Chris
02:39
created
src/Messages/Device/Requests/GetPower.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace DaveRandom\LibLifxLan\Messages\Device\Requests;
4 4
 
Please login to merge, or discard this patch.
src/Messages/Device/Requests/GetVersion.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace DaveRandom\LibLifxLan\Messages\Device\Requests;
4 4
 
Please login to merge, or discard this patch.
src/Messages/Device/Requests/GetInfo.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace DaveRandom\LibLifxLan\Messages\Device\Requests;
4 4
 
Please login to merge, or discard this patch.
src/Messages/Light/Responses/State.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace DaveRandom\LibLifxLan\Messages\Light\Responses;
4 4
 
Please login to merge, or discard this patch.
src/Messages/Light/Responses/StateInfrared.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace DaveRandom\LibLifxLan\Messages\Light\Responses;
4 4
 
Please login to merge, or discard this patch.
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
     public function __construct(int $brightness)
20 20
     {
21 21
         if ($brightness < 0 || $brightness > 65535) {
22
-            throw new InvalidValueException("Brightness {$brightness} outside allowable range of 0 - 65535");
22
+            throw new InvalidValueException("brightness {$brightness} outside allowable range of 0 - 65535");
23 23
         }
24 24
 
25 25
         $this->brightness = $brightness;
Please login to merge, or discard this patch.
src/Messages/Light/Commands/SetColor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace DaveRandom\LibLifxLan\Messages\Light\Commands;
4 4
 
Please login to merge, or discard this patch.
src/Messages/Light/Commands/SetWaveform.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace DaveRandom\LibLifxLan\Messages\Light\Commands;
4 4
 
Please login to merge, or discard this patch.
src/Messages/Light/Commands/SetWaveformOptional.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace DaveRandom\LibLifxLan\Messages\Light\Commands;
4 4
 
Please login to merge, or discard this patch.
src/Messages/Light/Requests/GetPower.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace DaveRandom\LibLifxLan\Messages\Light\Requests;
4 4
 
Please login to merge, or discard this patch.