quazardous

Results 32 comments of quazardous

Integration with Silex and a bundle lite/like feature: https://github.com/quazardous/silex-pack But maybe it can be achieved with a better approach. I was just wondering, Twig has namespace and it's very usefull...

argh I missed the link ;p the check could be done once a day and file-cached ? mysqltuner gives fragmentation stats too (space loss), could be usefull

`array_indentation` will indent comments inside arrays. ```php // 'strict_param' => true, 'array_syntax' => ['syntax' => 'short'], 'braces' => [ 'allow_single_line_closure' => true, 'position_after_functions_and_oop_constructs' => 'next', 'allow_single_line_anonymous_class_with_empty_body' => true, ], ```...

> Keeping commented-out code is a bad practice IMO. I don't want it to be supported by the tool. But it's often the case in big real life config files....

It's the beauty of open source projects, we talk it and can do it if needed (or not). But (better) ignoring parts of code is sometimes missing in CS Fixer...

I made noise, but still the indentation of comments in arrays is not consistent (?) with indentation in structure blocks. ```php while (true) { // comment not indented break; }...

Same here, it seams to happen if $app['dispatcher'] was already evaluated with a $this['dispatcher']->addListener(...) or something else... be sure to put those calls in the boot() method => it s...

I've done a workaround by overriding the`Document` class I've added new function `uploadStream()` and `downloadStream()` ```php

Ok, I'll give it a try. For the dowloading part, stream will not be compatible with any postprocess code, so maybe it should stay in a separated function. What do...