for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PHPDaemon\Config\Entry;
use PHPDaemon\Config\Entry\Generic;
/**
* Boolean config entry
*
* @package Core
* @subpackage Config
* @author Vasily Zorin <[email protected]>
*/
class Boolean extends Generic
{
* Converts human-readable value to plain
* @param $value
* @return bool
public static function humanToPlain($value)
return (boolean)$value;
}