for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Finder\Spider\Traits;
use Support\Helps\DebugHelper;
/**
* Outputs events information to the console.
*
* @see TriggerableInterface
*/
trait GroupManagerTrait
{
protected $group = false;
protected function setGroup($group)
$this->group = $group;
}
public function getGroup()
return $this->group;
* Lógica
protected function run()
DebugHelper::debug('Run GroupManager !');
return true;