12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?php
-
- namespace Illuminate\Validation\Rules;
-
- class In
- {
- /**
- * The name of the rule.
- */
- protected $rule = 'in';
-
- /**
- * The accepted values.
- *
- * @var array
- */
- protected $values;
-
- /**
- * Create a new in rule instance.
- *
- * @param array $values
- * @return void
- */
- public function __construct(array $values)
- {
- $this->values = $values;
- }
-
- /**
- * Convert the rule to a validation string.
- *
- * @return string
- *
- * @see \Illuminate\Validation\ValidationRuleParser::parseParameters
- */
- public function __toString()
- {
- $values = array_map(function ($value) {
- return '"'.str_replace('"', '""', $value).'"';
- }, $this->values);
-
- return $this->rule.':'.implode(',', $values);
- }
- }
|