Mike Grace

Results 3 issues of Mike Grace

Utilising Moment's durations, http://momentjs.com/docs/#/durations/ I would really love to be able to get back a precise duration. Kind of related to issue #9 but different.

How is the database module error handling handled and should it be documented? https://github.com/jmathai/epiphany/blob/master/docs/Database.markdown

Some of the examples show to do the routing like ``` $router = new EpiRoute(); $router->get('/', array('MyClass', 'MyMethod')); $router->run(); ``` while others show ``` getRoute()->get('/', 'showEndpoints'); getRoute()->get('/version', 'showVersion'); getRoute()->run(); ```...