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\ShouldClass;
use Gabrieljmj\Should\AbstractType;
use \InvalidArgumentException;
use \Exception;
class TheClass extends AbstractType
{
* @var \Gabrieljmj\Should\ShouldClass
public $should;
* @param \Gabrieljmj\Should\ShouldClass $should
public function __construct(ShouldClass $should)
$this->setShould($should);
}