Completed
Push — master ( 58b546...f86624 )
by Sebastian
02:38
created
src/Configuration/Generator.php 1 patch
Upper-Lower-Casing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
     </backups>
35 35
 </phpbu>
36 36
 
37
-EOT;
37
+eot;
38 38
 
39 39
     /**
40 40
      * @var string
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
   ]
65 65
 }
66 66
 
67
-EOT;
67
+eot;
68 68
 
69 69
     /**
70 70
      * Return the config file content
Please login to merge, or discard this patch.
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 2 patches
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.
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -406,7 +406,7 @@
 block discarded – undo
406 406
   -v, --verbose            Output more verbose information.
407 407
   -V, --version            Output version information and exit.
408 408
 
409
-EOT;
409
+eot;
410 410
         if ($this->isPhar) {
411 411
             echo '  --version-check        Check whether phpbu is up to date.' . PHP_EOL;
412 412
             echo '  --self-update          Upgrade phpbu to the latest version.' . PHP_EOL;
Please login to merge, or discard this patch.