for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace keeko\core\event;
use keeko\core\model\Module;
/**
*/
class ModuleEvent {
const POST_CREATE = 'core.module.post_create';
const POST_DELETE = 'core.module.post_delete';
const POST_SAVE = 'core.module.post_save';
const POST_UPDATE = 'core.module.post_update';
const PRE_CREATE = 'core.module.pre_create';
const PRE_DELETE = 'core.module.pre_delete';
const PRE_SAVE = 'core.module.pre_save';
const PRE_UPDATE = 'core.module.pre_update';
* @var keeko.core.model
protected $module;
* @param Module $module
public function __construct(Module $module) {
$module
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.
$this->module = module;
}
* @return Module
public function getModule() {
return $this->module;
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.