⭐️ Michael

Results 15 comments of ⭐️ Michael

Same issue here. Possible related issue: are gql code highlighted on your setup with following example ? ```javascript const typeDefs = gql` type Query { test: String } `; ```...

@Kharhamel How are we supposed to read a csv using Safe ? Because original fgetcsv return false on purpose at the end of the file, according to [documentation example](https://www.php.net/manual/en/function.fgetcsv.php#refsect1-function.fgetcsv-examples) :...

Also resolution proposed in #325 is absolutely nonsensical to me. What would be the point of using a Safe function if the ONLY way to use it, is about muting...

> A blank line in a CSV file will be returned as an array comprising a single null field, and will not be treated as an error. This only concerns...

> Do you think there are other functions that might have the same issue? fgets is a similar case. Btw php.net [example](https://www.php.net/manual/en/function.fgets.php#refsect1-function.fgets-examples) for fgets confirms reading foef after getting false...

Since pdepend release 2.11, phpmd works with PHP 8.1 and enums. You just have to force pdepend minimal version as following : ``` composer require --dev pdepend/pdepend:^2.11 ```

ping @bddq relates to #65

You might consider merging https://github.com/Adyen/adyen-php-api-library/pull/443 instead of this one

I am using for while now the following "DefaultResolver": ```php

This PR becomes a bit old. But for what it worth, here is what I use in my project : ```graphql scalar Void @scalar(class: "App\\GraphQL\\Scalars\\VoidType") ``` With following dummy implementation...