mirror of
https://github.com/Chouchen/Shikiryu_Backup.git
synced 2021-06-30 16:02:14 +02:00
21 lines
385 B
PHP
21 lines
385 B
PHP
<?php
|
|
|
|
namespace Shikiryu\Backup\Backup;
|
|
|
|
class Factory
|
|
{
|
|
/**
|
|
* @param array $config
|
|
*
|
|
* @return BackupAbstract
|
|
*/
|
|
public static function build(array $config)
|
|
{
|
|
$class = __NAMESPACE__.'\\'.array_keys($config)[0];
|
|
if (class_exists($class)) {
|
|
return new $class(array_values($config)[0]);
|
|
}
|
|
return null;
|
|
}
|
|
}
|