spotonlive/sl-db-backup

View on GitHub
src/SpotOnLive/DbBackup/Options/FileAdapterOptions.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace SpotOnLive\DbBackup\Options;

class FileAdapterOptions extends Options
{
    /** @var array */
    protected $defaults = [
        'storage_path' => '../storage/',
        'prefix' => null,
        'file_type' => 'sql'
    ];
}