tastphp/framework

View on GitHub
src/Framework/Event/AppEvent.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace TastPHP\Framework\Event;

use Symfony\Component\EventDispatcher\Event;

final class AppEvent extends Event
{
    const INIT = "app.init";

    const RESPONSE = "app.response";

    const REQUEST = "app.request";

    const MIDDLEWARE = "app.middleware";

    const EXCEPTION = "app.exception";

    const NOTFOUND = "app.notfound";

    const HTTPFINISH = "app.httpfinish";
}