Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
byp
/
wp-content
/
plugins
/
wpide
/
vendor
/
rakit
/
validation
/
src
/
Rules
:
Accepted.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Rakit\Validation\Rules; use Rakit\Validation\Rule; class Accepted extends Rule { /** @var bool */ protected $implicit = true; /** @var string */ protected $message = "The :attribute must be accepted"; /** * Check the $value is accepted * * @param mixed $value * @return bool */ public function check($value): bool { $acceptables = ['yes', 'on', '1', 1, true, 'true']; return in_array($value, $acceptables, true); } }