for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace phpbu\App\Event\Cleanup;
use phpbu\App\Configuration\Backup\Cleanup;
use phpbu\App\Event\Action;
/**
* Cleanup event base class.
*
* @package phpbu
* @subpackage App
* @author Sebastian Feldmann <[email protected]>
* @copyright Sebastian Feldmann <[email protected]>
* @license https://opensource.org/licenses/MIT The MIT License (MIT)
* @link http://phpbu.de/
* @since Class available since Release 2.0.0
*/
abstract class Abstraction extends Action
{
* Constructor.
* @param \phpbu\App\Configuration\Backup\Cleanup $cleanup
public function __construct(Cleanup $cleanup)
$this->configuration = $cleanup;
}