12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php namespace System\Validation\Rules;
- use System\Validation\Rule;
- class Exclusion_Of extends Rule {
-
- public $reserved;
-
- public function check($attribute, $attributes)
- {
- if ( ! array_key_exists($attribute, $attributes))
- {
- return true;
- }
- return ! in_array($attributes[$attribute], $this->reserved);
- }
-
- public function from($reserved)
- {
- $this->reserved = $reserved;
- return $this;
- }
- }
|