💚 Fix with PHPCS

This commit is contained in:
2020-04-17 12:08:51 +02:00
parent ee0e59d9b3
commit c3a44ae390
15 changed files with 9 additions and 9 deletions

View File

@@ -0,0 +1,29 @@
<?php
namespace Shikiryu\Backup\Transport;
use Shikiryu\Backup\Backup\BackupAbstract;
abstract class TransportAbstract
{
/** @var BackupAbstract */
protected $backup;
/** @var array */
protected $config;
public function __construct(BackupAbstract $backup, array $config)
{
foreach ($config as $name => $value) {
$this->$name = $value;
}
$this->config = $config;
$this->backup = $backup;
}
/**
* @return bool
*/
abstract public function send();
}