Craig Duncan
Craig Duncan
Support for Laravel 7 is available in version 4.9.0 of this library. It looks like the `component()` signature has a breaking change, so I'll need to prepare 5.0.0 for that...
Not directly here, it would need to be a PhpStorm plugin. I will take a look at what's possible when I get some time
Hi @robryanx, sorry for the delay in responded, do you have an example script to reproduce the issue you're describing?
What type of example are you looking for? Is the one in the current test suite not suitable?
So the problem only occurs when throwing exceptions? I think I can see how that would happen, I'll take a look at reproducing and resolving
Hmm I'm unable to reproduce the problem, please can you provide a script that demonstrates the issue?
Hi @Moskito89, you'll need a try/catch around your code to make sure you call `$fork->wait()`. Right now when a thread ends we don't know if others are still running, so...
I'd expect the shutdown function would be called within the threads too, thus deleting the shared memory early. You could perhaps register one after calling `$fork->call()` in your code. I'll...
Another approach I thought of, was to use a special symbol to indicate that the list should be extended, eg: ```json { "symbol-whitelist" : ["*", "strict"], "php-core-extensions" : ["*", "json"]...
This library currently allows you to configure the list of symbols to ignore. However you must pass the default list the library ships with, plus your symbols. So when the...