Johannes

Results 113 comments of Johannes

Again, this can be easily done via composition: ``` php class DicLoader implements Loader { private $delegate; public function load() { $fixtures = $this->delegate->load(); foreach ($fixtures as $fixture) { if...

@buskamuza, you might want to try https://scrutinizer-ci.com for code analysis (disclaimer: I work there).

I need it for example to get the next/previous/parent relation correct, see #17. However, I have discovered some other areas where I might want different nodes (names for example which...

How about adding a BagInterface implementation which persists data to the backend as soon as it is set instead of waiting on the save call. Likewise we would need to...

btw, my idea came from database systems which only lock that part of the data that is necessary to allow for higher concurrency. If we want to do really perfect,...

It is a single record with the current implementation because we load a key-value map into the bag at the beginning and store in back in the end, but why...

Maybe we should just switch to scan for arrays with a label key, and extract all of them? We could also add an additional check to see if they have...

I'm still using Symfony 2.1, and I'm a bit hesistant to upgrade to 2.2 considering that it is not stable yet. However, it should be easy to adapt the logger...

Sounds good. On Mon, Mar 17, 2014 at 8:32 PM, bassrock [email protected] wrote: > +1 pretty cool idea. So the console command would update the job entity's > progress value?...