Toon Verwerft

Results 280 comments of Toon Verwerft

Code works pretty well - but psalm is not able to infer the return types. Making it quite hard to use with psalm currently. More info: https://github.com/vimeo/psalm/issues/8487 Alternative is to...

@jkasten2 / @rgomezp Not having decent type reusability in typescript is a bit annyoing: If we want to accept e.g. an `IOSNotification` object in one of our functions - there...

@jkasten2 / @rgomezp To give some context : this is what one currently needs to use in order to get the onesignal ID: ```ts const oneSignalId = (window.OneSignal?.User as any)._currentUser.onesignalId;...

The breadcrumbs view helper is definitely a must. I created a basic on at: https://gist.github.com/veewee/9fa72438953a5ad98dbe This helper is based on the NavigationMenuHelper. For the moment it is not configurable, but...

You could use $rawBody = file_get_contents('php://input') instead. However, this will break the application if you use the class with Zend MVC (in Zend_Request_Controller_Http). Maybe you could make the RAW body...

Hello @Sebb767, I am in @auredeco 's team. We use redis as cache backend: ``` CACHE_DRIVER=redis ``` ```php /** @var ClientOptions $options */ $options->withCache( (new CacheItemPoolFactory())->getCacheItemPool( env('CONTENTFUL_USE_PREVIEW') ? Client::API_DELIVERY :...

We investigated this issue a bit further today. The problem occurs when having multiple (unused) locales. In that case, the cache key for the language is set right - but...

Hello @Sebb767, Yes, the solutions provided above is workable for us at the moment.

Thanks for the PR @petrisorciprian-vitals So if I understand this option correctly, there are 3 ways to use these options? * no option : no report * `--xml`: Stores the...

Hello, It depends which tool you want to make leading I suppose. I don't know the tool lint-staged, but there might be 2 options: * the `run` command takes a...