8889841chome/clixcotz/fmi.clix.co.tz/vendor/laravel/framework/src/Illuminate/Validation/Rules/NotIn.php000064400000001403150437225540026643 0ustar00values = $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); } }