spotonlive/sl-db-backup

View on GitHub
src/SpotOnLive/DbBackup/Services/BackupServiceInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace SpotOnLive\DbBackup\Services;

interface BackupServiceInterface
{
    /**
     * Backup database
     *
     * @param string $database
     * @return bool
     */
    public function backup($database = null);
}