Completed
Push — 2.0.0-dev ( 119ddb...2fd54f )
by Arnaud
03:42 queued 01:22
created
src/Command/AbstractCommand.php 2 patches
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -141,7 +141,7 @@  discard block
 block discarded – undo
141 141
     }
142 142
 
143 143
     /**
144
-     * @param $text
144
+     * @param string $text
145 145
      */
146 146
     public function wlAnnonce($text)
147 147
     {
@@ -149,7 +149,7 @@  discard block
 block discarded – undo
149 149
     }
150 150
 
151 151
     /**
152
-     * @param $text
152
+     * @param string $text
153 153
      */
154 154
     public function wlDone($text)
155 155
     {
@@ -157,7 +157,7 @@  discard block
 block discarded – undo
157 157
     }
158 158
 
159 159
     /**
160
-     * @param $text
160
+     * @param string $text
161 161
      */
162 162
     public function wlAlert($text)
163 163
     {
@@ -165,7 +165,7 @@  discard block
 block discarded – undo
165 165
     }
166 166
 
167 167
     /**
168
-     * @param $text
168
+     * @param string $text
169 169
      */
170 170
     public function wlError($text)
171 171
     {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@
 block discarded – undo
97 97
      */
98 98
     public function getPHPoole()
99 99
     {
100
-        $messageCallback = function ($code, $message = '', $itemsCount = 0, $itemsMax = 0, $verbose = true) {
100
+        $messageCallback = function($code, $message = '', $itemsCount = 0, $itemsMax = 0, $verbose = true) {
101 101
             switch ($code) {
102 102
                 case 'CREATE':
103 103
                 case 'CONVERT':
Please login to merge, or discard this patch.
src/Command/ListContent.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
             $this->wlAnnonce('Content:');
24 24
             $pages = $this->getPagesTree();
25 25
             if ($this->getConsole()->isUtf8()) {
26
-                $unicodeTreePrefix = function (RecursiveTreeIterator $tree) {
26
+                $unicodeTreePrefix = function(RecursiveTreeIterator $tree) {
27 27
                     $prefixParts = [
28 28
                         RecursiveTreeIterator::PREFIX_LEFT         => ' ',
29 29
                         RecursiveTreeIterator::PREFIX_MID_HAS_NEXT => '│ ',
Please login to merge, or discard this patch.