HEX
Server: Apache
System: Linux server2.voipitup.com.au 4.18.0-553.111.1.lve.el8.x86_64 #1 SMP Fri Mar 13 13:42:17 UTC 2026 x86_64
User: posscale (1027)
PHP: 8.2.30
Disabled: exec,passthru,shell_exec,system
Upload Files
File: //home/posscale/subdomains/xibo/vendor/respect/validation/library/Rules/AbstractComposite.php
<?php
namespace Respect\Validation\Rules;

use Respect\Validation\Exceptions\ValidationException;
use Respect\Validation\Validatable;
use Respect\Validation\Validator;

abstract class AbstractComposite extends AbstractRule
{
    protected $rules = array();

    public function __construct()
    {
        $this->addRules(func_get_args());
    }

    public function setName($name)
    {
        $parentName = $this->getName();
        foreach ($this->rules as $rule) {
            $ruleName = $rule->getName();
            if ($ruleName && $parentName !== $ruleName) {
                continue;
            }

            $rule->setName($name);
        }

        return parent::setName($name);
    }

    public function addRule($validator, $arguments = array())
    {
        if (!$validator instanceof Validatable) {
            $this->appendRule(Validator::buildRule($validator, $arguments));
        } else {
            $this->appendRule($validator);
        }

        return $this;
    }

    public function removeRules()
    {
        $this->rules = array();
    }

    public function addRules(array $validators)
    {
        foreach ($validators as $key => $spec) {
            if ($spec instanceof Validatable) {
                $this->appendRule($spec);
            } elseif (is_numeric($key) && is_array($spec)) {
                $this->addRules($spec);
            } elseif (is_array($spec)) {
                $this->addRule($key, $spec);
            } else {
                $this->addRule($spec);
            }
        }

        return $this;
    }

    public function getRules()
    {
        return $this->rules;
    }

    public function hasRule($validator)
    {
        if (empty($this->rules)) {
            return false;
        }

        if ($validator instanceof Validatable) {
            return isset($this->rules[spl_object_hash($validator)]);
        }

        if (is_string($validator)) {
            foreach ($this->rules as $rule) {
                if (get_class($rule) == __NAMESPACE__.'\\'.$validator) {
                    return true;
                }
            }
        }

        return false;
    }

    protected function appendRule(Validatable $validator)
    {
        if (! $validator->getName() && $this->getName()) {
            $validator->setName($this->getName());
        }

        $this->rules[spl_object_hash($validator)] = $validator;
    }

    protected function validateRules($input)
    {
        $validators = $this->getRules();
        $exceptions = array();
        foreach ($validators as $v) {
            try {
                $v->assert($input);
            } catch (ValidationException $e) {
                $exceptions[] = $e;
            }
        }

        return $exceptions;
    }
}