Adam Tomat
Adam Tomat
Update Handler API based on: https://github.com/Rareloop/lumberjack-core/pull/38
When outputting twig variables, I prefer to have spaces before and after for readability. For example: Dislike: ```twig {{var}} ``` Like: ```twig {{ var }} ``` I'd love if this...
Rather than only allowing `Exception`s in the `report` and `render` methods in the exception handler, allow anything that is `Throwable` (e.g. `TypeError`)
Given: ```php session()->put([ 'foo' => [ 'bar' => 123, ], ]); ``` I expected `session()->has('foo.bar')` to return `true`, however it returns `false` because it currently doesn't support dot syntax. This...