for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Anomaly\AddonsModule\Addon\Table;
use Anomaly\Streams\Platform\Ui\Table\TableBuilder;
/**
* Class AddonTableBuilder
*
* @link http://pyrocms.com/
* @author PyroCMS, Inc. <[email protected]>
* @author Ryan Thompson <[email protected]>
*/
class AddonTableBuilder extends TableBuilder
{
* The addon type to list.
* @var null|string
protected $type = null;
* Get the type.
* @return null|string
public function getType()
return $this->type;
}
* Set the type.
* @param $type
* @return $this
public function setType($type)
$this->type = $type;
return $this;