for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Mvkasatkin\typecast\type;
abstract class Type implements CastInterface
{
/**
* @var mixed
*/
protected $default;
* @param $default
public function __construct($default = null)
$this->default = $default;
}