Results 22 comments of Bishop Bettini

`-p` takes a directory, I believe, not a single file. Try `-p .` instead.

Does instructing the HHVM JIT to perform an immediate warm-up help? `hhvm -v Eval.Jit=1 -v Eval.JitProfileInterpRequests=0 ./vendor/bin/athletic -p ./tests/` _Note:_ If using HHVM < 3.4, change `Eval.JitProfileInterpRequests` to `Eval.JitWarmupRequests`.

Regardless, PHP 7 has an experimental JIT, so a general purpose warm-up specification might work out just fine. Something like: ``` /** * @iterations 1000, 10 */ ```

I consider requiring paths A Good Thing. I'd rather see the CLI signature be, though: `php vendor/bin/athletic [options] [path...]` Thus: `php vendor/bin/athletic -b vendor/autoload.php ./tests ./vendor/bishopb/stencil/tests`

Same issue, my use case: PHP 5.3 environment where I cannot use traits, but need some common behavior amongst all my events. Thus I want: ``` php class MyBaseEvent extends...

Perhaps a more robust approach would be to scrub everything _except_ those identified in an allow list. That mode could be engaged in a backward compatible way with a new...

Thanks for taking the time to submit this! I agree; the current code seems buggy. Digging a little, looks like [`JSON_FORCE_OBJECT` was introduced back in 2017](https://github.com/rollbar/rollbar-php/commit/b39234b62926bb33fea88478e309dbb9ff6ba3a7#diff-fc2487797c2db4b13b48c6b0b6a1767519ca2865f4fe67c84892d7f8f0108530R59) by @rokob. I _think_...

Thanks @apphancer for the report. Let's see if we can get to the bottom of it. I'm seeking some clarification in the comments below. > It seems like errors with...

Interesting! Definitely should, as forwarding an Exception is [straight out of the documentation](https://docs.rollbar.com/docs/basic-php-installation-setup#send-an-error-and-a-message). What version of PHP were you using?