Markus Staab

Results 889 comments of Markus Staab

Hehe... I tried some things already but it seems like phpunit discards output from a listener... therefore this could need some support from phpunit core.

the pointed lines are mostly correct though, on a second look ;-)

proposal: integrate with https://scrutinizer-ci.com

The idea is: instead of insert/update the db on each errored/successfull test we could store the results in a data structure and insert everything on shotdown... At least in mysql...

IIRC the "old symfony webserver" had some kind of detection when the php webserver started successfully. sometimes 1 sec is not enough, sometimes its a lot faster.

Cool, thx for checking

Maybe it would be even worth to profile php’s internal webserver with the goal of improving startup time

> Fatal error: Call to undefined method Closure::__set_state() in E:\biiblog\src\Bii\route.cache on line 7 the error message sounds like you try to serialize()/var_export() a Closure object which seems to not support...

for the "builtin php Closures are not serializable" problem, exists a separate lib https://github.com/jeremeamia/super_closure your caching adapter needs to take care of that, in case you really wanne cache such...