DASPRiD / Dash

Flexible PSR-7 compliant HTTP router
BSD 2-Clause "Simplified" License
29 stars 9 forks source link

`RouteCollection#count()` can be avoided, `RouteCollection#isEmpty()` would be better #7

Closed Ocramius closed 10 years ago

Ocramius commented 10 years ago

Can gain some minor improvements by just checking if the array is empty via:

public function isEmpty()
{
    return ! $this->routes;
}
Ocramius commented 10 years ago

Can also inline some assignments that are not really needed