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