for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace phpbu\App\Backup\Cleaner\Stepwise\Keeper;
use phpbu\App\Backup\Cleaner\Stepwise\Keeper;
use phpbu\App\Backup\File;
/**
* Keep none class
*
* @package phpbu
* @subpackage Backup
* @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 5.0.0
*/
class None implements Keeper
{
* Decides if given file should be kept.
* @param \phpbu\App\Backup\File $file
* @return bool
public function keep(File $file) : bool
return false;
}