for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Yaro\Jarboe\Table\Fields\Traits;
trait Tab
{
protected $tab = '';
public function tab(string $tab)
$this->tab = $tab;
return $this;
}
public function getTab(): string
return $this->tab;