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
/*
* This file is part of Respect/Validation.
*
* (c) Alexandre Gomes Gaigalas <[email protected]>
* For the full copyright and license information, please view the "LICENSE.md"
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Respect\Validation\Rules;
use Respect\Validation\Validatable;
/**
* Abstract class to help on creating rules that wrap rules.
* @author Henrique Moody <[email protected]>
abstract class AbstractWrapper extends AbstractRule
{
* @var Validatable
private $validatable;
* Initializes the rule.
* @param Validatable $validatable
public function __construct(Validatable $validatable)
$this->validatable = $validatable;
}
* {@inheritdoc}
public function assert($input): void
$this->validatable->assert($input);
public function check($input): void
$this->validatable->check($input);
public function validate($input): bool
return $this->validatable->validate($input);
public function setId($name)
$this->validatable->setId($name);
return parent::setId($name);