for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* ShouldPHP
*
* @author Gabriel Jacinto <[email protected]>
* @status dev
* @link https://github.com/GabrielJMJ/ShouldPHP
* @license MIT
*/
namespace Gabrieljmj\Should;
use Gabrieljmj\Should\ShouldInterface;
use Gabrieljmj\Should\Condition\TheProperty\Be;
class ShouldProperty implements ShouldInterface
{
public $be;
public function __construct($class, $property)
$this->be = new Be($class, $property);
}
public function getAssertList()
return $this->be->getAssertList();