for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Cairns\Radiate\Inflector;
final class HandleMethodInflector implements MethodInflector
{
public function inflect($event, $listener)
$method = 'handle';
if (! method_exists($listener, $method)) {
return null;
}
return $method;