for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Kontrolio\Rules\Core;
use Kontrolio\Rules\AbstractRule;
/**
* Accepted validation rule.
*
* @package Kontrolio\Rules\Core
*/
class Accepted extends IsIn
{
public function __construct()
parent::__construct([
'yes',
'on',
1,
'1',
true,
'true'
]);
}