PATH:
home
/
lab2454c
/
crypto.keyreum.com
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Validation
/
Rules
<?php namespace Illuminate\Validation\Rules; class NotIn { /** * The name of the rule. */ protected $rule = 'not_in'; /** * The accepted values. * * @var array */ protected $values; /** * Create a new "not 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 */ public function __toString() { $values = array_map(function ($value) { return '"'.str_replace('"', '""', $value).'"'; }, $this->values); return $this->rule.':'.implode(',', $values); } }
[+]
..
[-] Exists.php
[edit]
[-] In.php
[edit]
[-] Dimensions.php
[edit]
[-] DatabaseRule.php
[edit]
[-] Unique.php
[edit]
[-] NotIn.php
[edit]
[-] RequiredIf.php
[edit]
[-] Password.php
[edit]