@@ -124,9 +124,9 @@ |
||
124 | 124 | { |
125 | 125 | $executable = new Executable\RedisCli($this->pathToRedisCli); |
126 | 126 | $executable->backup() |
127 | - ->useHost($this->host) |
|
128 | - ->usePort($this->port) |
|
129 | - ->usePassword($this->password); |
|
127 | + ->useHost($this->host) |
|
128 | + ->usePort($this->port) |
|
129 | + ->usePassword($this->password); |
|
130 | 130 | return $executable; |
131 | 131 | } |
132 | 132 |
@@ -152,10 +152,10 @@ |
||
152 | 152 | |
153 | 153 | $executable = new Executable\Tar($this->pathToTar); |
154 | 154 | $executable->archiveDirectory($this->path) |
155 | - ->useCompression($this->compression) |
|
156 | - ->ignoreFailedRead($this->ignoreFailedRead) |
|
157 | - ->removeSourceDirectory($this->removeSourceDir) |
|
158 | - ->archiveTo($this->pathToArchive); |
|
155 | + ->useCompression($this->compression) |
|
156 | + ->ignoreFailedRead($this->ignoreFailedRead) |
|
157 | + ->removeSourceDirectory($this->removeSourceDir) |
|
158 | + ->archiveTo($this->pathToArchive); |
|
159 | 159 | return $executable; |
160 | 160 | } |
161 | 161 |
@@ -262,20 +262,20 @@ |
||
262 | 262 | { |
263 | 263 | $executable = new Executable\Pgdump($this->pathToPgdump); |
264 | 264 | $executable->credentials($this->user, $this->password) |
265 | - ->useHost($this->host) |
|
266 | - ->usePort($this->port) |
|
267 | - ->dumpDatabase($this->database) |
|
268 | - ->dumpSchemas($this->schemas) |
|
269 | - ->excludeSchemas($this->excludeSchemas) |
|
270 | - ->dumpTables($this->tables) |
|
271 | - ->excludeTables($this->excludeTables) |
|
272 | - ->excludeTableData($this->excludeTableData) |
|
273 | - ->dumpSchemaOnly($this->schemaOnly) |
|
274 | - ->dumpDataOnly($this->dataOnly) |
|
275 | - ->dumpNoPrivileges($this->noPrivileges) |
|
276 | - ->dumpNoOwner($this->noOwner) |
|
277 | - ->dumpFormat($this->format) |
|
278 | - ->dumpTo($target->getPathnamePlain()); |
|
265 | + ->useHost($this->host) |
|
266 | + ->usePort($this->port) |
|
267 | + ->dumpDatabase($this->database) |
|
268 | + ->dumpSchemas($this->schemas) |
|
269 | + ->excludeSchemas($this->excludeSchemas) |
|
270 | + ->dumpTables($this->tables) |
|
271 | + ->excludeTables($this->excludeTables) |
|
272 | + ->excludeTableData($this->excludeTableData) |
|
273 | + ->dumpSchemaOnly($this->schemaOnly) |
|
274 | + ->dumpDataOnly($this->dataOnly) |
|
275 | + ->dumpNoPrivileges($this->noPrivileges) |
|
276 | + ->dumpNoOwner($this->noOwner) |
|
277 | + ->dumpFormat($this->format) |
|
278 | + ->dumpTo($target->getPathnamePlain()); |
|
279 | 279 | return $executable; |
280 | 280 | } |
281 | 281 |
@@ -140,11 +140,11 @@ |
||
140 | 140 | { |
141 | 141 | $executable = new Executable\Innobackupex($this->pathToXtraBackup); |
142 | 142 | $executable->useHost($this->host) |
143 | - ->credentials($this->user, $this->password) |
|
144 | - ->dumpDatabases($this->databases) |
|
145 | - ->including($this->include) |
|
146 | - ->dumpFrom($this->dataDir) |
|
147 | - ->dumpTo($this->getDumpDir($target)); |
|
143 | + ->credentials($this->user, $this->password) |
|
144 | + ->dumpDatabases($this->databases) |
|
145 | + ->including($this->include) |
|
146 | + ->dumpFrom($this->dataDir) |
|
147 | + ->dumpTo($this->getDumpDir($target)); |
|
148 | 148 | return $executable; |
149 | 149 | } |
150 | 150 |
@@ -161,13 +161,13 @@ |
||
161 | 161 | { |
162 | 162 | $executable = new Executable\Arangodump($this->pathToArangodump); |
163 | 163 | $executable->useEndpoint($this->endpoint) |
164 | - ->credentials($this->username, $this->password) |
|
165 | - ->dumpDatabase($this->database) |
|
166 | - ->dumpCollections($this->collections) |
|
167 | - ->disableAuthentication($this->disableAuthentication) |
|
168 | - ->includeSystemCollections($this->includeSystemCollections) |
|
169 | - ->dumpData($this->dumpData) |
|
170 | - ->dumpTo($this->getDumpDir($target)); |
|
164 | + ->credentials($this->username, $this->password) |
|
165 | + ->dumpDatabase($this->database) |
|
166 | + ->dumpCollections($this->collections) |
|
167 | + ->disableAuthentication($this->disableAuthentication) |
|
168 | + ->includeSystemCollections($this->includeSystemCollections) |
|
169 | + ->dumpData($this->dumpData) |
|
170 | + ->dumpTo($this->getDumpDir($target)); |
|
171 | 171 | return $executable; |
172 | 172 | } |
173 | 173 |
@@ -96,12 +96,12 @@ |
||
96 | 96 | ); |
97 | 97 | } else { |
98 | 98 | $executable->fromPath($this->getRsyncLocation($target)) |
99 | - ->toHost($this->host) |
|
100 | - ->toPath($this->path) |
|
101 | - ->toUser($this->user) |
|
102 | - ->compressed(!$target->shouldBeCompressed()) |
|
103 | - ->removeDeleted($this->delete) |
|
104 | - ->exclude($this->excludes); |
|
99 | + ->toHost($this->host) |
|
100 | + ->toPath($this->path) |
|
101 | + ->toUser($this->user) |
|
102 | + ->compressed(!$target->shouldBeCompressed()) |
|
103 | + ->removeDeleted($this->delete) |
|
104 | + ->exclude($this->excludes); |
|
105 | 105 | } |
106 | 106 | return $executable; |
107 | 107 | } |
@@ -72,10 +72,10 @@ |
||
72 | 72 | $executable = new Tar($this->pathToCommand); |
73 | 73 | $executable->archiveDirectory($this->path); |
74 | 74 | $executable->archiveTo($this->getArchiveFile($target)) |
75 | - ->useCompression( |
|
76 | - $target->shouldBeCompressed() ? $target->getCompression()->getCommand() : '' |
|
77 | - ) |
|
78 | - ->removeSourceDirectory(true); |
|
75 | + ->useCompression( |
|
76 | + $target->shouldBeCompressed() ? $target->getCompression()->getCommand() : '' |
|
77 | + ) |
|
78 | + ->removeSourceDirectory(true); |
|
79 | 79 | return $executable; |
80 | 80 | } |
81 | 81 |