Florian Voutzinos
Florian Voutzinos
@schulzrinne Can you please send a PR to update it? Thanks 👍
@valentinceaprazaru Can you please send a PR to fix the error? Thanks 👍
Hey, Maybe you can maybe do this ? ``` $lastDate = $business->closest(new \DateTime('2017-07-24 10:00'), Business::CLOSEST_LAST); ```
Hello, you can use a `SpecialDay` to change the working hours dynamically: ``` $days = [ // Special day with dynamic opening hours depending on the date new SpecialDay(Days::FRIDAY, function...
Hey @ddinchev, I didn't test it but would something like this work ? ``` $days = [ new Day(Days::MONDAY, [['00:00', '23:59']]), new Day(Days::TUESDAY, [['00:00', '23:59']]), // etc ]; ```
It cannot be easily changed as `bower-requirejs` depends on the `requirejs` parser, that [evaluates](https://github.com/jrburke/r.js/blob/6391520ecb29eb51f4469859d06ed0bd2e09b625/build/jslib/parse.js#L448) the config when parsing it. Changing it will likely require a lot of overrides making this...
Can you please send a PR to fix it? If it doesn't work as-is...
Hi, this is due to this condition here: https://github.com/florianv/symfony-swap/blob/master/DependencyInjection/FlorianvSwapExtension.php#L83 and here: https://github.com/florianv/symfony-swap/blob/master/DependencyInjection/FlorianvSwapExtension.php#L108 In case you'd like to debug the issue ;) Thanks!
We could maybe provide an option for the `JsonDecoder` to preserve objects ? The outermost object would still need to be encoded as associative array.
Looks like it's an issue with AbstractApi's response?