for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Leaditin\Code;
/**
* @package Leaditin\Code
* @author Igor Vuckovic <[email protected]>
* @license MIT
*/
class Value
{
* @var null|mixed
protected $value;
* @param null|mixed $value
public function __construct($value = null)
$this->value = $value;
}
* @return null|mixed
public function value()
return $this->value;