Completed
Push — master ( 58b546...f86624 )
by Sebastian
02:38
created
src/Configuration/Loader/Xml.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -409,7 +409,7 @@
 block discarded – undo
409 409
         $original    = \libxml_use_internal_errors(true);
410 410
         $xsdFilename = __DIR__ . '/../../../phpbu.xsd';
411 411
         if (\defined('__PHPBU_PHAR_ROOT__')) {
412
-            $xsdFilename =  __PHPBU_PHAR_ROOT__ . '/phpbu.xsd';
412
+            $xsdFilename = __PHPBU_PHAR_ROOT__ . '/phpbu.xsd';
413 413
         }
414 414
         $this->document->schemaValidate($xsdFilename);
415 415
         foreach (\libxml_get_errors() as $error) {
Please login to merge, or discard this patch.
src/Cmd.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -194,7 +194,7 @@
 block discarded – undo
194 194
 
195 195
         if ($configLoader->hasValidationErrors()) {
196 196
             echo "  Warning - The configuration file did not pass validation!" . \PHP_EOL .
197
-                 "  The following problems have been detected:" . \PHP_EOL;
197
+                    "  The following problems have been detected:" . \PHP_EOL;
198 198
 
199 199
             foreach ($configLoader->getValidationErrors() as $line => $errors) {
200 200
                 echo \sprintf("\n  Line %d:\n", $line);
Please login to merge, or discard this patch.