for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Yaro\Jarboe\Table\Fields\Traits;
trait Rows
{
protected $rows = 3;
public function rows(int $rows)
$this->rows = $rows;
return $this;
}
public function getRowsNum(): int
return $this->rows;