Completed
Push — master ( 3d1e55...a942a8 )
by Emmanuel
02:11
created
src/GlW3CValidator.php 2 patches
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -102,10 +102,10 @@  discard block
 block discarded – undo
102 102
         $request  = $client->createRequest('POST', $w3curl . $validator, ['exceptions' => false]);
103 103
         $postBody = $request->getBody();
104 104
         $postBody->addFile(
105
-                 new PostFile($field, fopen(
106
-                     $file,
107
-                     'r'
108
-                 ))
105
+                    new PostFile($field, fopen(
106
+                        $file,
107
+                        'r'
108
+                    ))
109 109
         );
110 110
 
111 111
         $retry    = self::MAX_RETRY;
@@ -158,13 +158,13 @@  discard block
 block discarded – undo
158 158
 
159 159
         $ext = $fileinfo->getExtension();;
160 160
         $view = $this->sendToW3C(
161
-                     $this->types[$ext]['w3curl'],
162
-                         $this->types[$ext]['validator'],
163
-                         $this->types[$ext]['field'],
164
-                         $this->types[$ext]['resulttag'],
165
-                         strtr($fileinfo->getRealPath(), ["\\" => "/"]),
166
-                         $title,
167
-                         $this->types[$ext]['css']
161
+                        $this->types[$ext]['w3curl'],
162
+                            $this->types[$ext]['validator'],
163
+                            $this->types[$ext]['field'],
164
+                            $this->types[$ext]['resulttag'],
165
+                            strtr($fileinfo->getRealPath(), ["\\" => "/"]),
166
+                            $title,
167
+                            $this->types[$ext]['css']
168 168
         );
169 169
 
170 170
         if (!$this->fs->exists($filedir)) {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -156,7 +156,7 @@
 block discarded – undo
156 156
         $title   = strtr($fileinfo->getRelativePathname(), ["\\" => "/"]);
157 157
         $filedir = $this->resultrootdir . '/' . strtr($fileinfo->getRelativepath(), ["\\" => "/"]);
158 158
 
159
-        $ext = $fileinfo->getExtension();;
159
+        $ext = $fileinfo->getExtension(); ;
160 160
         $view = $this->sendToW3C(
161 161
                      $this->types[$ext]['w3curl'],
162 162
                          $this->types[$ext]['validator'],
Please login to merge, or discard this patch.