@@ -80,7 +80,7 @@ |
||
80 | 80 | */ |
81 | 81 | public function runCommand(string $command) : RedisCli |
82 | 82 | { |
83 | - if(!isset($this->availableCommands[$command])) { |
|
83 | + if (!isset($this->availableCommands[$command])) { |
|
84 | 84 | throw new Exception('Unknown redis-cli command'); |
85 | 85 | } |
86 | 86 | $this->command = $command; |
@@ -453,8 +453,8 @@ |
||
453 | 453 | protected function createCommandLine() : CommandLine |
454 | 454 | { |
455 | 455 | $process = new CommandLine(); |
456 | - $password = $this->password ? 'PGPASSWORD=' . escapeshellarg($this->password) . ' ' : ''; |
|
457 | - $cmd = new Cmd($password . $this->binary); |
|
456 | + $password = $this->password ? 'PGPASSWORD='.escapeshellarg($this->password).' ' : ''; |
|
457 | + $cmd = new Cmd($password.$this->binary); |
|
458 | 458 | $process->addCommand($cmd); |
459 | 459 | |
460 | 460 | // always disable password prompt |
@@ -102,9 +102,9 @@ |
||
102 | 102 | if (!empty($this->host)) { |
103 | 103 | // remote user |
104 | 104 | if (!empty($this->user)) { |
105 | - $return .= $this->user . '@'; |
|
105 | + $return .= $this->user.'@'; |
|
106 | 106 | } |
107 | - $return .= $this->host . ':'; |
|
107 | + $return .= $this->host.':'; |
|
108 | 108 | } |
109 | 109 | $return .= $this->path; |
110 | 110 |
@@ -39,7 +39,7 @@ |
||
39 | 39 | */ |
40 | 40 | public function __construct(Runner $runner = null) |
41 | 41 | { |
42 | - $this->runner = $runner ? : new Runner\Simple(); |
|
42 | + $this->runner = $runner ?: new Runner\Simple(); |
|
43 | 43 | } |
44 | 44 | |
45 | 45 | /** |
@@ -33,10 +33,10 @@ discard block |
||
33 | 33 | $crypt = $this->execute($target); |
34 | 34 | $name = strtolower(get_class($this)); |
35 | 35 | |
36 | - $result->debug($name . ':' . $this->getExecutable($target)->getCommandPrintable()); |
|
36 | + $result->debug($name.':'.$this->getExecutable($target)->getCommandPrintable()); |
|
37 | 37 | |
38 | 38 | if (!$crypt->isSuccessful()) { |
39 | - throw new Exception($name . ' failed:' . PHP_EOL . $crypt->getStdErr()); |
|
39 | + throw new Exception($name.' failed:'.PHP_EOL.$crypt->getStdErr()); |
|
40 | 40 | } |
41 | 41 | } |
42 | 42 | |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | public function simulate(Target $target, Result $result) |
50 | 50 | { |
51 | 51 | $result->debug( |
52 | - 'execute encryption:' . PHP_EOL . |
|
52 | + 'execute encryption:'.PHP_EOL. |
|
53 | 53 | $this->getExecutable($target)->getCommandPrintable() |
54 | 54 | ); |
55 | 55 | } |
@@ -115,12 +115,12 @@ |
||
115 | 115 | { |
116 | 116 | $executable = new Executable\Mcrypt((string)$this->pathToMcrypt); |
117 | 117 | $executable->useAlgorithm($this->algorithm) |
118 | - ->useKey($this->key) |
|
119 | - ->useKeyFile($this->keyFile) |
|
120 | - ->useConfig($this->config) |
|
121 | - ->useHash($this->hash) |
|
122 | - ->saveAt($target->getPathname()) |
|
123 | - ->deleteUncrypted(!$this->keepUncrypted); |
|
118 | + ->useKey($this->key) |
|
119 | + ->useKeyFile($this->keyFile) |
|
120 | + ->useConfig($this->config) |
|
121 | + ->useHash($this->hash) |
|
122 | + ->saveAt($target->getPathname()) |
|
123 | + ->deleteUncrypted(!$this->keepUncrypted); |
|
124 | 124 | return $executable; |
125 | 125 | } |
126 | 126 | } |
@@ -113,7 +113,7 @@ |
||
113 | 113 | */ |
114 | 114 | protected function createExecutable(Target $target) : Executable |
115 | 115 | { |
116 | - $executable = new Executable\Mcrypt((string)$this->pathToMcrypt); |
|
116 | + $executable = new Executable\Mcrypt((string) $this->pathToMcrypt); |
|
117 | 117 | $executable->useAlgorithm($this->algorithm) |
118 | 118 | ->useKey($this->key) |
119 | 119 | ->useKeyFile($this->keyFile) |
@@ -176,13 +176,13 @@ |
||
176 | 176 | { |
177 | 177 | $executable = new Executable\Mongodump($this->pathToMongodump); |
178 | 178 | $executable->dumpToDirectory($this->getDumpDir($target)) |
179 | - ->useIpv6($this->useIPv6) |
|
180 | - ->useHost($this->host) |
|
181 | - ->credentials($this->user, $this->password, $this->authenticationDatabase) |
|
182 | - ->dumpDatabases($this->databases) |
|
183 | - ->dumpCollections($this->collections) |
|
184 | - ->excludeCollections($this->excludeCollections) |
|
185 | - ->excludeCollectionsWithPrefix($this->excludeCollectionsWithPrefix); |
|
179 | + ->useIpv6($this->useIPv6) |
|
180 | + ->useHost($this->host) |
|
181 | + ->credentials($this->user, $this->password, $this->authenticationDatabase) |
|
182 | + ->dumpDatabases($this->databases) |
|
183 | + ->dumpCollections($this->collections) |
|
184 | + ->excludeCollections($this->excludeCollections) |
|
185 | + ->excludeCollectionsWithPrefix($this->excludeCollectionsWithPrefix); |
|
186 | 186 | return $executable; |
187 | 187 | } |
188 | 188 |
@@ -160,7 +160,7 @@ discard block |
||
160 | 160 | $result->debug($mongodump->getCmdPrintable()); |
161 | 161 | |
162 | 162 | if (!$mongodump->isSuccessful()) { |
163 | - throw new Exception('mongodump failed: ' . $mongodump->getStdErr()); |
|
163 | + throw new Exception('mongodump failed: '.$mongodump->getStdErr()); |
|
164 | 164 | } |
165 | 165 | |
166 | 166 | return $this->createStatus($target); |
@@ -205,6 +205,6 @@ discard block |
||
205 | 205 | */ |
206 | 206 | public function getDumpDir(Target $target) : string |
207 | 207 | { |
208 | - return $target->getPath() . '/dump'; |
|
208 | + return $target->getPath().'/dump'; |
|
209 | 209 | } |
210 | 210 | } |
@@ -126,10 +126,10 @@ |
||
126 | 126 | { |
127 | 127 | $executable = new Executable\Elasticdump($this->pathToElasticdump); |
128 | 128 | $executable->useHost($this->host) |
129 | - ->credentials($this->user, $this->password) |
|
130 | - ->dumpIndex($this->index) |
|
131 | - ->dumpType($this->type) |
|
132 | - ->dumpTo($target->getPathnamePlain()); |
|
129 | + ->credentials($this->user, $this->password) |
|
130 | + ->dumpIndex($this->index) |
|
131 | + ->dumpType($this->type) |
|
132 | + ->dumpTo($target->getPathnamePlain()); |
|
133 | 133 | return $executable; |
134 | 134 | } |
135 | 135 |
@@ -109,7 +109,7 @@ |
||
109 | 109 | $result->debug($elasticdump->getCmdPrintable()); |
110 | 110 | |
111 | 111 | if (!$elasticdump->isSuccessful()) { |
112 | - throw new Exception('elasticdump failed: ' . $elasticdump->getStdErr()); |
|
112 | + throw new Exception('elasticdump failed: '.$elasticdump->getStdErr()); |
|
113 | 113 | } |
114 | 114 | |
115 | 115 | return $this->createStatus($target); |
@@ -74,11 +74,11 @@ |
||
74 | 74 | ); |
75 | 75 | } else { |
76 | 76 | $executable->fromHost($this->host) |
77 | - ->fromUser($this->user) |
|
78 | - ->fromPath($this->path) |
|
79 | - ->toPath($this->getRsyncLocation($target, true)) |
|
80 | - ->removeDeleted($this->delete) |
|
81 | - ->exclude($this->excludes); |
|
77 | + ->fromUser($this->user) |
|
78 | + ->fromPath($this->path) |
|
79 | + ->toPath($this->getRsyncLocation($target, true)) |
|
80 | + ->removeDeleted($this->delete) |
|
81 | + ->exclude($this->excludes); |
|
82 | 82 | } |
83 | 83 | return $executable; |
84 | 84 | } |
@@ -50,7 +50,7 @@ |
||
50 | 50 | $result->debug($rsync->getCmd()); |
51 | 51 | |
52 | 52 | if (!$rsync->isSuccessful()) { |
53 | - throw new Exception('rsync failed:' . $rsync->getStdErr()); |
|
53 | + throw new Exception('rsync failed:'.$rsync->getStdErr()); |
|
54 | 54 | } |
55 | 55 | |
56 | 56 | return $this->createStatus($target); |