Completed
Push — master ( a4e6dd...a851cc )
by Arne
02:45
created
src/VaultConfiguration.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -189,6 +189,9 @@
 block discarded – undo
189 189
         return $this->settings;
190 190
     }
191 191
 
192
+    /**
193
+     * @return string
194
+     */
192 195
     public function getSetting(string $name)
193 196
     {
194 197
         return isset($this->settings[$name]) ? $this->settings[$name] : null;
Please login to merge, or discard this patch.
src/Cli/ConflictHandler/ConsolePromptConflictHandler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
 
46 46
             $this->consoleStyle->warning("Invalid choice");
47 47
         }
48
-        while(true);
48
+        while (true);
49 49
 
50 50
         return $return;
51 51
     }
Please login to merge, or discard this patch.
src/Cli/Application.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
 
5 5
 class Application extends \Symfony\Component\Console\Application
6 6
 {
7
-    public const LOGO =  <<<TXT
7
+    public const LOGO = <<<TXT
8 8
    ___           __   _      ___ 
9 9
   / _ | ________/ /  (_)  __/ _ \
10 10
  / __ |/ __/ __/ _ \/ / |/ / , _/
Please login to merge, or discard this patch.
src/Storeman.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -260,8 +260,7 @@
 block discarded – undo
260 260
         if ($vaultTitle)
261 261
         {
262 262
             $vault = $this->getVault($vaultTitle);
263
-        }
264
-        else
263
+        } else
265 264
         {
266 265
             $vaults = $this->getVaultsHavingRevision($revision);
267 266
             $vault = $this->getPrioritizedVault($vaults);
Please login to merge, or discard this patch.