| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | public static function createFromArray(array $config): BackupJob |
||
| 12 | { |
||
| 13 | return (new BackupJob()) |
||
| 14 | ->setFileSelection(static::createFileSelection($config['backup']['source']['files'])) |
||
| 15 | ->setDbDumpers(static::createDbDumpers(static::getSourceDatabaseConnections($config['backup']['source']))) |
||
| 16 | ->setBackupDestinations(BackupDestinationFactory::createFromArray($config['backup'])); |
||
| 17 | } |
||
| 18 | |||
| 44 |