tastphp/tastphp

View on GitHub
src/FrontBundle/Listener/FooListener.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace TastPHP\FrontBundle\Listener;

use TastPHP\Framework\Event\HttpEvent;

class FooListener
{
    public function onFooAction(HttpEvent $event)
    {
//        dump("onFooAction!");
    }
}