Passed
Pull Request — master (#619)
by Luis Henrique
07:34 queued 04:33
created
src/Common/Config.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,9 +46,9 @@
 block discarded – undo
46 46
      */
47 47
     protected static function validInputData($data)
48 48
     {
49
-        $filejsonschema = __DIR__. "/../../storage/config.schema";
49
+        $filejsonschema = __DIR__ . "/../../storage/config.schema";
50 50
         $validator = new JsonValid();
51
-        $validator->check($data, (object)['$ref' => 'file://' . $filejsonschema]);
51
+        $validator->check($data, (object) ['$ref' => 'file://' . $filejsonschema]);
52 52
         if (!$validator->isValid()) {
53 53
             $msg = "";
54 54
             foreach ($validator->getErrors() as $error) {
Please login to merge, or discard this patch.