for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Sludio\HelperBundle\Openidconnect\Specification;
use Sludio\HelperBundle\Script\Specification\CompositeSpecification;
abstract class AbstractSpecification extends CompositeSpecification
{
/**
* @var string
*/
protected $name;
protected $message;
* @var bool
protected $required;
public function __construct($name, $required = false)
$this->name = $name;
$this->required = $required;
}
public function getName()
return $this->name;
public function getMessage()
return $this->message;
public function isRequired()
return $this->required;