mirror of
https://github.com/Respect/Validation.git
synced 2026-03-16 07:15:45 +01:00
Most changes was made by php-cs-fixer. Also removes unused `RecursiveTreeIterator` class.
26 lines
731 B
PHP
26 lines
731 B
PHP
<?php
|
|
namespace Respect\Validation\Rules;
|
|
|
|
use Respect\Validation\Exceptions\ComponentException;
|
|
use Respect\Validation\Validatable;
|
|
|
|
class Key extends AbstractRelated
|
|
{
|
|
public function __construct($reference, Validatable $referenceValidator = null, $mandatory = true)
|
|
{
|
|
if (!is_string($reference) || empty($reference)) {
|
|
throw new ComponentException('Invalid array key name');
|
|
}
|
|
parent::__construct($reference, $referenceValidator, $mandatory);
|
|
}
|
|
|
|
public function getReferenceValue($input)
|
|
{
|
|
return $input[$this->reference];
|
|
}
|
|
|
|
public function hasReference($input)
|
|
{
|
|
return is_array($input) && array_key_exists($this->reference, $input);
|
|
}
|
|
}
|