for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Scalp;
final class Some extends Option
{
private $value;
public function __construct($value)
$this->construct($value);
$this->value = $value;
}
public function isEmpty(): bool
return false;
public function get()
return $this->value;