Robbin Voortman
Robbin Voortman
This has been stale for some time now; is this going to be picked up again by someone? I'm not too familiar with the bootstrap upgrade, but I do know...
you are sure you don't have a trailing newline? I use the following: data = data.split("\n"); console.log("Number of newlines: " + (data.length - 1)); and it always returns just what...
Yes that would be amazing!
Still a problem in PestPHP 3 unfortunately :(
As a workaround in a Symfony project with an existing preload.php file, we have manually added the classes first: ```php /** config/preload.php */ require dirname(__DIR__).'/vendor/autoload.php'; use Symfony\Component\DependencyInjection\Dumper\Preloader; $containerPreloadFile = dirname(__DIR__).'/var/cache/prod/Infrastructure_UserInterface_ApplicationKernelProdContainer.preload.php';...