for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Yaro\Jarboe\Table\Fields\Traits;
trait DefaultTrait
{
protected $default = null;
public function default($value)
$this->default = $value;
return $this;
}
public function getDefault()
return $this->default;