for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace FlatPlan\Components;
class Table extends AbstractComponent {
protected $roles = ['table'];
/**
* @param string $role
* @return void
*/
public function __construct($role)
{
$this->setRole($role);
}
protected function getComponent()
$component = new \stdClass();
$component->role = $this->getRole();
return $component;