@@ -106,12 +106,10 @@ discard block |
||
106 | 106 | if (is_string($token)) |
107 | 107 | { |
108 | 108 | $output .= $token; |
109 | - } |
|
110 | - elseif (in_array($token[0], [T_COMMENT, T_DOC_COMMENT])) |
|
109 | + } elseif (in_array($token[0], [T_COMMENT, T_DOC_COMMENT])) |
|
111 | 110 | { |
112 | 111 | $output .= str_repeat("\n", substr_count($token[1], "\n")); |
113 | - } |
|
114 | - elseif (T_WHITESPACE === $token[0]) |
|
112 | + } elseif (T_WHITESPACE === $token[0]) |
|
115 | 113 | { |
116 | 114 | // reduce wide spaces |
117 | 115 | $whitespace = preg_replace('{[ \t]+}', ' ', $token[1]); |
@@ -123,8 +121,7 @@ discard block |
||
123 | 121 | $whitespace = preg_replace('{\n +}', "\n", $whitespace); |
124 | 122 | |
125 | 123 | $output .= $whitespace; |
126 | - } |
|
127 | - else |
|
124 | + } else |
|
128 | 125 | { |
129 | 126 | $output .= $token[1]; |
130 | 127 | } |
@@ -88,8 +88,7 @@ |
||
88 | 88 | $configurationFileWriter->writeConfigurationFile($configuration, $configFilePath, $skipDefaults); |
89 | 89 | |
90 | 90 | $output->writeln("<info>Successfully written config file to {$configFilePath}</info>"); |
91 | - } |
|
92 | - else |
|
91 | + } else |
|
93 | 92 | { |
94 | 93 | $output->writeln("<comment>Aborted</comment>"); |
95 | 94 | } |
@@ -68,7 +68,7 @@ |
||
68 | 68 | } |
69 | 69 | } |
70 | 70 | } |
71 | - while($this->consoleStyle->choice('Add another vault?', ['y', 'n'], 'n') === 'y'); |
|
71 | + while ($this->consoleStyle->choice('Add another vault?', ['y', 'n'], 'n') === 'y'); |
|
72 | 72 | |
73 | 73 | |
74 | 74 | $skipDefaults = !$input->getOption('writeDefaults'); |
@@ -41,8 +41,7 @@ |
||
41 | 41 | { |
42 | 42 | $vaultConfiguration->setConflictHandler('preferLocal'); |
43 | 43 | } |
44 | - } |
|
45 | - elseif ($preferRemote) |
|
44 | + } elseif ($preferRemote) |
|
46 | 45 | { |
47 | 46 | foreach ($configuration->getVaults() as $vaultConfiguration) |
48 | 47 | { |
@@ -26,13 +26,11 @@ |
||
26 | 26 | { |
27 | 27 | $return[$key] = $recursiveDiff; |
28 | 28 | } |
29 | - } |
|
30 | - elseif ($value !== $array2[$key]) |
|
29 | + } elseif ($value !== $array2[$key]) |
|
31 | 30 | { |
32 | 31 | $return[$key] = $value; |
33 | 32 | } |
34 | - } |
|
35 | - else |
|
33 | + } else |
|
36 | 34 | { |
37 | 35 | $return[$key] = $value; |
38 | 36 | } |
@@ -27,8 +27,7 @@ discard block |
||
27 | 27 | { |
28 | 28 | throw new Exception(sprintf('read() failed for %s.', $relativePath)); |
29 | 29 | } |
30 | - } |
|
31 | - catch (\Exception $exception) |
|
30 | + } catch (\Exception $exception) |
|
32 | 31 | { |
33 | 32 | throw new Exception($exception->getMessage(), 0, $exception); |
34 | 33 | } |
@@ -46,8 +45,7 @@ discard block |
||
46 | 45 | { |
47 | 46 | throw new Exception(sprintf('write() failed for %s.', $relativePath)); |
48 | 47 | } |
49 | - } |
|
50 | - catch (\Exception $exception) |
|
48 | + } catch (\Exception $exception) |
|
51 | 49 | { |
52 | 50 | throw new Exception($exception->getMessage(), 0, $exception); |
53 | 51 | } |
@@ -63,8 +61,7 @@ discard block |
||
63 | 61 | { |
64 | 62 | throw new Exception(sprintf('writeStream() failed for %s.', $relativePath)); |
65 | 63 | } |
66 | - } |
|
67 | - catch (\Exception $exception) |
|
64 | + } catch (\Exception $exception) |
|
68 | 65 | { |
69 | 66 | throw new Exception($exception->getMessage(), 0, $exception); |
70 | 67 | } |
@@ -75,8 +72,7 @@ discard block |
||
75 | 72 | try |
76 | 73 | { |
77 | 74 | return $this->filesystem->has($relativePath); |
78 | - } |
|
79 | - catch (\Exception $exception) |
|
75 | + } catch (\Exception $exception) |
|
80 | 76 | { |
81 | 77 | throw new Exception($exception->getMessage(), 0, $exception); |
82 | 78 | } |
@@ -92,8 +88,7 @@ discard block |
||
92 | 88 | { |
93 | 89 | throw new Exception(sprintf('unlink() failed for %s', $relativePath)); |
94 | 90 | } |
95 | - } |
|
96 | - catch (\Exception $exception) |
|
91 | + } catch (\Exception $exception) |
|
97 | 92 | { |
98 | 93 | throw new Exception($exception->getMessage(), 0, $exception); |
99 | 94 | } |
@@ -111,8 +106,7 @@ discard block |
||
111 | 106 | } |
112 | 107 | |
113 | 108 | return $stream; |
114 | - } |
|
115 | - catch (\Exception $exception) |
|
109 | + } catch (\Exception $exception) |
|
116 | 110 | { |
117 | 111 | throw new Exception($exception->getMessage(), 0, $exception); |
118 | 112 | } |
@@ -33,7 +33,7 @@ |
||
33 | 33 | |
34 | 34 | $started = time(); |
35 | 35 | |
36 | - while(true) |
|
36 | + while (true) |
|
37 | 37 | { |
38 | 38 | if (!$this->storageAdapter->exists($lockFileName)) |
39 | 39 | { |
@@ -26,7 +26,7 @@ |
||
26 | 26 | { |
27 | 27 | $storeman->dump( |
28 | 28 | $input->getArgument('path'), |
29 | - $input->getOption( 'revision') ? (int)$input->getOption('revision') : null, |
|
29 | + $input->getOption('revision') ? (int)$input->getOption('revision') : null, |
|
30 | 30 | $input->getOption('vault'), |
31 | 31 | new SynchronizationProgressListener($output) |
32 | 32 | ); |
@@ -57,8 +57,7 @@ |
||
57 | 57 | /** @var Configuration $configuration */ |
58 | 58 | $configuration = new $className(); |
59 | 59 | $configuration->exchangeArray($array); |
60 | - } |
|
61 | - catch (\InvalidArgumentException $exception) |
|
60 | + } catch (\InvalidArgumentException $exception) |
|
62 | 61 | { |
63 | 62 | throw new ConfigurationException("In file {$configurationFilePath}", 0, $exception); |
64 | 63 | } |
@@ -205,8 +205,7 @@ |
||
205 | 205 | $vaultConfig = new $className($this); |
206 | 206 | $vaultConfig->exchangeArray($val); |
207 | 207 | } |
208 | - } |
|
209 | - else |
|
208 | + } else |
|
210 | 209 | { |
211 | 210 | // using setter to prevent skipping validation |
212 | 211 | call_user_func([$this, 'set' . ucfirst($key)], $value); |