Nicolas Reynis

Results 26 comments of Nicolas Reynis

This is fixed by adding that code in createNewSlider, near line 540: ``` javascript if (updateSlider === true) { if (Array.isArray(this.options.ticks_labels) && this.options.ticks_labels.length > 0) { for (i = 0;...

By reading the [documentation](https://github.com/johnbillion/extended-cpts/wiki/Registering-taxonomies#default-arguments-for-custom-taxonomies) I was under the assumption that `required` option was doing just that. But it seems it is just adding a required attribute (and only in the...

Just found #604. Forcing dev stability solve the first issue `composer require friendsofsymfony/comment-bundle:^3.0@dev`. I still thinks the other points are valid and should be addressed in some way. But that's...

This is really annoying, especially if you use static analysis.

You should split this: it really is 3 PR in one: - Adding static analysis tooling - Exposing script - Changing inheritance organization All those are independent concerns, by tying...

An easy fix would be to just add every public method of `BaseAccept` into the `AcceptHeader` interface. It would solve the issue without introducing any BC.

You are right, it does not seems to be related to the `get` method name... I don't know why my tests succeeded yesterday. I probably misinterpreted cached results and jumped...

Maybe you could do like phpunit and provide a hook. This way we could re-bind bypass final after each stream wrapper restoration. That's a bit of plumbing, but the other...

Seems like the only thing you need to register stream wrappers is their FQCN, so you could just use a config parameter for that: ```yaml parameters: streamWrappers: # FQCN of...

I think this feature request is kinda related to this one: https://github.com/js-cookie/js-cookie/issues/560