Bolt\Configuration\Validation\Validator::add PHP Method

add() public method

public add ( $checkName, $className, $prepend = false )
    public function add($checkName, $className, $prepend = false)
    {
        if ($prepend) {
            $this->check = [$checkName => $className] + $this->check;
        } else {
            $this->check[$checkName] = $className;
        }
    }