Passed
Push — master ( e6fd03...a950a4 )
by Sebastian
04:03
created
src/Mailcode/Factory/Exception.php 2 patches
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -21,13 +21,13 @@  discard block
 block discarded – undo
21 21
 {
22 22
     protected ?Mailcode_Commands_Command $command = null;
23 23
     
24
-   /**
25
-    * @param string $message
26
-    * @param string|NULL $details
27
-    * @param int|NULL $code
28
-    * @param Exception|NULL $previous
29
-    * @param Mailcode_Commands_Command|NULL $command
30
-    */
24
+    /**
25
+     * @param string $message
26
+     * @param string|NULL $details
27
+     * @param int|NULL $code
28
+     * @param Exception|NULL $previous
29
+     * @param Mailcode_Commands_Command|NULL $command
30
+     */
31 31
     public function __construct(string $message, $details=null, $code=null, $previous=null, ?Mailcode_Commands_Command $command=null)
32 32
     {
33 33
         parent::__construct($message, $details, $code, $previous);
@@ -35,11 +35,11 @@  discard block
 block discarded – undo
35 35
         $this->command = $command;
36 36
     }
37 37
     
38
-   /**
39
-    * Retrieves the erroneous command, if any.
40
-    * 
41
-    * @return Mailcode_Commands_Command|NULL
42
-    */
38
+    /**
39
+     * Retrieves the erroneous command, if any.
40
+     * 
41
+     * @return Mailcode_Commands_Command|NULL
42
+     */
43 43
     public function getCommand() : ?Mailcode_Commands_Command
44 44
     {
45 45
         return $this->command;
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
     * @param Exception|NULL $previous
29 29
     * @param Mailcode_Commands_Command|NULL $command
30 30
     */
31
-    public function __construct(string $message, $details=null, $code=null, $previous=null, ?Mailcode_Commands_Command $command=null)
31
+    public function __construct(string $message, $details = null, $code = null, $previous = null, ?Mailcode_Commands_Command $command = null)
32 32
     {
33 33
         parent::__construct($message, $details, $code, $previous);
34 34
         
Please login to merge, or discard this patch.