Michel Hunziker

Results 12 comments of Michel Hunziker

@ondrejmirtes Hmm, but if I use `array` I get the same error. If I use `array|null`, the error disappears. But this is not correct in my opinion. The doctrine type...

@ondrejmirtes Is it possible that you revisit this? I still think this is a false positive, as Doctrine makes sure that the PHP value is never null, even if the...

I have the same problem (version 2.1.0). With the complied version (either from the node_modules directory or from unpkg.com) is works, but with webpack it throws this error during scanning....

@ondrejmirtes I'm not sure it the implementation in commit 6aaff1196c4f808769774b49a94a60e5fdf18de7 is complete. `assertArrayHasKey` accepts an `ArrayObject` as well and PHPUnit will use `offsetExists` if an object is provided, but in...

I think at least that it stems from the current implementation. Unit Test: ```php public function testArrayHasKey(): void { $object = new ArrayObject(['test' => 'hello']); self::assertArrayHasKey('test', $object); $object2 = new...

Hello @vishnu-narayanan, here is a screenshot: ![image](https://github.com/chatwoot/chatwoot/assets/1307920/658baba6-2002-454c-ad02-886ae6c2a1f9) I tested it with German (de), but could replicate the issue in other languages like French (fr), Italian (it) and Spanish (es). Almost...

This is a known missing feature, see https://github.com/chatwoot/chatwoot/issues/4732 Currently the only option is to use a webhook url that is not guessable, e.g. by using a random string in the...

That is a good catch, thank you. Will GitLab report multiple issues if a code block is used multiple times in a file and has an issue?

According to the [documentation](https://docs.github.com/en/rest/search/search?apiVersion=2022-11-28#search-issues-and-pull-requests), it is required to either add `is:issue` or `is:pull-request` to the `?q=` parameter when using the new fine grained access token. This seems to be a...