lumberjack-core
lumberjack-core copied to clipboard
The exception handling code is triggering a deprecated warning while handling other errors. Each time an error is triggered my error log has 2 errors, one genuine error from my...
(Thanks for sending a pull request! Please make sure you read the contribution guidelines, then fill out the blanks below.) What does this implement/fix? Explain your changes. --------------------------------------------------- Replaces the...
What does this implement/fix? Explain your changes. --------------------------------------------------- See coverage with our eyes. https://coveralls.io/github/Rareloop/lumberjack-core Does this close any currently open issues? ------------------------------------------ No
Rather than only allowing `Exception`s in the `report` and `render` methods in the exception handler, allow anything that is `Throwable` (e.g. `TypeError`)
What does this implement/fix? Explain your changes. --------------------------------------------------- Fix PSR-4 autoloading. Does this close any currently open issues? ------------------------------------------ No. Any relevant logs, error output, etc? ------------------------------------- Output of `composer...
II was wondering if it would be a good idea to add the exception handler of Laravel, it is nicer than the one of Symfony. Roots Acorn managed to implement...
What does this implement/fix? --------------------------------------------------- As [discussed here](https://github.com/Rareloop/lumberjack/issues/16) this adds support for custom taxonomy. I took the same structure and way of doing things as the custom "Post" types so...
would it be possible to expose the `PostQuery` to the `QueryBuilder` etc so we can get eg `->found_posts` (and any similar data) currently I have to run a separate `WP_Query`...
It would be nice if the` PostType::query()` replicate the https://timber.github.io/docs/reference/timber-postquery/#pagination With `Timber` we can do something like this : ```php $posts = new PostQuery(); // Pagination object $posts->pagination(); ``` But,...