File tree Expand file tree Collapse file tree 6 files changed +6
-6
lines changed
Expand file tree Collapse file tree 6 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ protected function buildOptionParser(ConsoleOptionParser $parser)
3838 * Deletes all backup files
3939 * @param \Cake\Console\Arguments $args The command arguments
4040 * @param \Cake\Console\ConsoleIo $io The console io
41- * @return null| int The exit code or null for success
41+ * @return int|null The exit code or null for success
4242 * @see https://github.com/mirko-pagliai/cakephp-database-backup/wiki/How-to-use-the-BackupShell#delete_all
4343 * @uses DatabaseBackup\Utility\BackupManager::deleteAll()
4444 */
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ protected function buildOptionParser(ConsoleOptionParser $parser)
6666 * This command uses `RotateCommand` and `SendCommand`.
6767 * @param \Cake\Console\Arguments $args The command arguments
6868 * @param \Cake\Console\ConsoleIo $io The console io
69- * @return null| int The exit code or null for success
69+ * @return int|null The exit code or null for success
7070 * @see https://github.com/mirko-pagliai/cakephp-database-backup/wiki/How-to-use-the-BackupShell#export
7171 * @uses DatabaseBackup\Command\RotateCommand::execute()
7272 * @uses DatabaseBackup\Command\SendCommand::execute()
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ protected function buildOptionParser(ConsoleOptionParser $parser)
4343 * Imports a database backup
4444 * @param \Cake\Console\Arguments $args The command arguments
4545 * @param \Cake\Console\ConsoleIo $io The console io
46- * @return null| int The exit code or null for success
46+ * @return int|null The exit code or null for success
4747 * @see https://github.com/mirko-pagliai/cakephp-database-backup/wiki/How-to-use-the-BackupShell#import
4848 * @uses DatabaseBackup\Utility\BackupImport::filename()
4949 * @uses DatabaseBackup\Utility\BackupImport::import()
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ protected function buildOptionParser(ConsoleOptionParser $parser)
4040 * Lists database backups
4141 * @param \Cake\Console\Arguments $args The command arguments
4242 * @param \Cake\Console\ConsoleIo $io The console io
43- * @return null| int The exit code or null for success
43+ * @return int|null The exit code or null for success
4444 * @see https://github.com/mirko-pagliai/cakephp-database-backup/wiki/How-to-use-the-BackupShell#index
4545 * @uses DatabaseBackup\Utility\BackupManager::index()
4646 */
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ protected function buildOptionParser(ConsoleOptionParser $parser)
4646 * delete all backups that are older. By default, no backup will be deleted
4747 * @param \Cake\Console\Arguments $args The command arguments
4848 * @param \Cake\Console\ConsoleIo $io The console io
49- * @return null| int The exit code or null for success
49+ * @return int|null The exit code or null for success
5050 * @see https://github.com/mirko-pagliai/cakephp-database-backup/wiki/How-to-use-the-BackupShell#rotate
5151 * @uses DatabaseBackup\Utility\BackupManager::rotate()
5252 */
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ protected function buildOptionParser(ConsoleOptionParser $parser)
4949 * Sends a backup file via email
5050 * @param \Cake\Console\Arguments $args The command arguments
5151 * @param \Cake\Console\ConsoleIo $io The console io
52- * @return null| int The exit code or null for success
52+ * @return int|null The exit code or null for success
5353 * @see https://github.com/mirko-pagliai/cakephp-database-backup/wiki/How-to-use-the-BackupShell#send
5454 * @uses DatabaseBackup\Utility\BackupManager::send()
5555 */
You can’t perform that action at this time.
0 commit comments