Skip to content

Commit 2ed2e27

Browse files
Fix PHPDoc issues
Removed unnecessary throw annotation and some periods and fixed some whitespaces.
1 parent a7d833a commit 2ed2e27

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

src/Backup/Source/Mysqldump.php

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ class Mysqldump extends SimulatorExecutable implements Simulator, Restorable
161161
private $extendedInsert;
162162

163163
/**
164-
* Dump blob fields as hex.
164+
* Dump blob fields as hex
165165
* --hex-blob
166166
*
167167
* @var boolean
@@ -177,15 +177,15 @@ class Mysqldump extends SimulatorExecutable implements Simulator, Restorable
177177
private $noData;
178178

179179
/**
180-
* Add general transaction id statement.
180+
* Add general transaction id statement
181181
* --set-gids-purged=['ON', 'OFF', 'AUTO']
182182
*
183183
* @var string
184184
*/
185185
private $gtidPurged;
186186

187187
/**
188-
* Dump procedures and functions.
188+
* Dump procedures and functions
189189
* --routines
190190
*
191191
* @var bool
@@ -229,7 +229,7 @@ public function setup(array $conf = [])
229229
}
230230

231231
/**
232-
* Get tables and databases to backup.
232+
* Get tables and databases to backup
233233
*
234234
* @param array $conf
235235
*/
@@ -242,7 +242,7 @@ protected function setupSourceData(array $conf)
242242
}
243243

244244
/**
245-
* Execute the backup.
245+
* Execute the backup
246246
*
247247
* @see \phpbu\App\Backup\Source
248248
* @param \phpbu\App\Backup\Target $target
@@ -273,10 +273,9 @@ public function backup(Target $target, Result $result) : Status
273273
/**
274274
* Restore the backup
275275
*
276-
* @param \phpbu\App\Backup\Target $target
277-
* @param \phpbu\App\Backup\Restore\Plan $plan
276+
* @param \phpbu\App\Backup\Target $target
277+
* @param \phpbu\App\Backup\Restore\Plan $plan
278278
* @return \phpbu\App\Backup\Source\Status
279-
* @throws \phpbu\App\Exception
280279
*/
281280
public function restore(Target $target, Plan $plan): Status
282281
{

0 commit comments

Comments
 (0)