for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace phpbu\App\Configuration\Backup;
/**
* Check Configuration
*
* @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
*/
class Check
{
* Check type
* @var string
public $type;
* Check value
public $value;
* Constructor
* @param string $type
* @param string $value
public function __construct($type, $value)
$this->type = $type;
$this->value = $value;
}