simple-swoole / simps

🚀 A simple, lightweight and high-performance PHP coroutine framework.
https://simps.io
Apache License 2.0
469 stars 48 forks source link

[refine] switch case use default enum. #13

Closed Koooooo-7 closed 4 years ago

Koooooo-7 commented 4 years ago

Use the default FastRoute router enums.

interface Dispatcher {
    const NOT_FOUND = 0, FOUND = 1, METHOD_NOT_ALLOWED = 2;

    public function dispatch($httpMethod, $uri);
}