Passed
Push — master ( 0c35c3...4c9016 )
by Sebastian
03:25 queued 12s
created
src/Mailcode/Factory.php 1 patch
Indentation   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -23,9 +23,9 @@  discard block
 block discarded – undo
23 23
     const ERROR_INVALID_COMMAND_CREATED = 50001;
24 24
     const ERROR_UNEXPECTED_COMMAND_TYPE = 50002;
25 25
 
26
-   /**
27
-    * @var Mailcode_Factory_CommandSets
28
-    */
26
+    /**
27
+     * @var Mailcode_Factory_CommandSets
28
+     */
29 29
     private static $commandSets;
30 30
 
31 31
     /**
@@ -79,33 +79,33 @@  discard block
 block discarded – undo
79 79
     }
80 80
 
81 81
     /**
82
-    * Creates a renderer instance, which can be used to easily
83
-    * create and convert commands to strings.
84
-    * 
85
-    * @return Mailcode_Renderer
86
-    */
82
+     * Creates a renderer instance, which can be used to easily
83
+     * create and convert commands to strings.
84
+     * 
85
+     * @return Mailcode_Renderer
86
+     */
87 87
     public static function createRenderer() : Mailcode_Renderer
88 88
     {
89 89
         return new Mailcode_Renderer();
90 90
     }
91 91
     
92
-   /**
93
-    * Creates a printer instance, which works like the renderer,
94
-    * but outputs the generated strings to standard output.
95
-    * 
96
-    * @return Mailcode_Printer
97
-    */
92
+    /**
93
+     * Creates a printer instance, which works like the renderer,
94
+     * but outputs the generated strings to standard output.
95
+     * 
96
+     * @return Mailcode_Printer
97
+     */
98 98
     public static function createPrinter() : Mailcode_Printer
99 99
     {
100 100
         return new Mailcode_Printer();
101 101
     }
102 102
     
103
-   /**
104
-    * Gets/creates the global instance of the date format info
105
-    * class, used to handle date formatting aspects.
106
-    * 
107
-    * @return Mailcode_Date_FormatInfo
108
-    */
103
+    /**
104
+     * Gets/creates the global instance of the date format info
105
+     * class, used to handle date formatting aspects.
106
+     * 
107
+     * @return Mailcode_Date_FormatInfo
108
+     */
109 109
     public static function createDateInfo() : Mailcode_Date_FormatInfo
110 110
     {
111 111
         return Mailcode_Date_FormatInfo::getInstance();
Please login to merge, or discard this patch.
src/Mailcode/Renderer.php 1 patch
Indentation   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -21,17 +21,17 @@  discard block
 block discarded – undo
21 21
  */
22 22
 class Mailcode_Renderer
23 23
 {
24
-   /**
25
-    * @var boolean
26
-    */
24
+    /**
25
+     * @var boolean
26
+     */
27 27
     protected $highlighted = false;
28 28
     
29
-   /**
30
-    * Sets whether to output highlighted commands instead of the default plain text.
31
-    * 
32
-    * @param bool $highlighted
33
-    * @return Mailcode_Renderer
34
-    */
29
+    /**
30
+     * Sets whether to output highlighted commands instead of the default plain text.
31
+     * 
32
+     * @param bool $highlighted
33
+     * @return Mailcode_Renderer
34
+     */
35 35
     public function setOutputHighlighted(bool $highlighted=true) : Mailcode_Renderer
36 36
     {
37 37
         $this->highlighted = $highlighted;
@@ -39,12 +39,12 @@  discard block
 block discarded – undo
39 39
         return $this;
40 40
     }
41 41
     
42
-   /**
43
-    * Converts a show variable command to string.
44
-    * 
45
-    * @param string $variableName The variable name, with or without $ sign.
46
-    * @return string
47
-    */
42
+    /**
43
+     * Converts a show variable command to string.
44
+     * 
45
+     * @param string $variableName The variable name, with or without $ sign.
46
+     * @return string
47
+     */
48 48
     public function showVar(string $variableName) : string
49 49
     {
50 50
         return $this->command2string(Mailcode_Factory::show()->var($variableName));
Please login to merge, or discard this patch.