Paul M. Jones
Paul M. Jones
Hi all, esp. @pavarnos -- Earlier, we removed ?-placeholder replacements from where(), having(), etc., and replaced it with binding of named parameters as part of the method call. So, in...
Hi -- in my legacy refactoring work, I have found it useful to introduce a Teller (as in "bank teller") object to ease the transition from float math to Money...
This PR introduces a Teller class, nominally to help ease legacy codebases away from float math over to using Money object. It differs from the tentative offering in #629 in...
Probably via a RememberInterface injected into Auth, or perhaps by moving the "resume" functionality into an extensible ResumeInterface. Will also need a new status to indicate the user is "remembered"...
BLUF: The 4.x parser appears to lose comments in some cases; while their removal has no effect on the logical operation of code rebuilt from the AST, their disappearance is...
The `functions_opening_brace` option `next_line_unless_newline_at_signature_end` fixes muti-line function signatures to look like this: ```php public function veryLongFoo( VeryLongBar $bar, VeryLongBaz $baz ): VeryLongFoo { // function body } ``` This PR...
How would you feel about making this an official Bookdown project under the same namespace, github, etc? You'd stay fully in charge of it, of course.
This PR adds a `useCustomConfigureRoutes()` method to _FastRoute_ to allow for custom _ConfigureRoutes_ implementations. Also in _FastRoute_: - rename $configuredRoutes and $routeConfiguration to $configureRoutes for consistency - add configureRoutes() method...
This evolution of #282 puts the DI configuration into a separate Settings object.