- Notifications
You must be signed in to change notification settings - Fork 1.5k
Closed
Labels
Description
Here is the DocBlock:
/** * Checks user permission to execute given $event * * @param kEvent $event * @return bool * @access public */
What immediately can be fixed in it:
- empty line between
@param
and@return
becauseparam
tag group needs to be separated - replace
bool
toboolean
(maybe it's another sniff though)