for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
Install GitHub App
<?php
namespace Respect\Validation\Rules;
use Respect\Validation\Validatable;
use Respect\Validation\Exceptions\ComponentException;
abstract class AbstractWrapper extends AbstractRule
{
protected $validatable;
public function getValidatable()
if (!$this->validatable instanceof Validatable) {
throw new ComponentException('There is no defined validatable');
}
return $this->validatable;
public function assert($input)
return $this->getValidatable()->assert($input);
public function check($input)
return $this->getValidatable()->check($input);
public function validate($input)
return $this->getValidatable()->validate($input);
public function setName($name)
$this->getValidatable()->setName($name);
return parent::setName($name);