Alexandre Quercia

Results 141 comments of Alexandre Quercia

@thePanz same concern as of https://github.com/FriendsOfSymfony1/doctrine1/pull/89#issuecomment-1328320885

Hello @j3j5 It depends on how you started dns-gen. My hypothesis - The environment variable `GATEWAY` is empty. - It explains the complaint of `sed`. - look at the [Manual...

On PHP 7.4 a fatal error occured ``` Fatal error: Uncaught TypeError: Argument 1 passed to Doctrine_Export_Sqlite::getIndexFieldDeclarationList() must be of the type array, string given, called in /app/lib/Doctrine/Export/Sqlite.php on line...

@thePanz After the fix of `MYSQL_DSN` on https://github.com/FriendsOfSymfony1/doctrine1/pull/103/commits/4a6c6038a8754e92d19f7e4d07ebdfa7b85ae529 Tests passes.

Rebased onto master to fix conflicts with refacto #138

Hello @Phennim Nice catch. I added failing test for this issue, see https://github.com/FriendsOfSymfony1/doctrine1/pull/135#issuecomment-2057573400 ### Rules are * Array hydration must always have * the primary key as array index on...

Hello @saracubillas, Welcome and thank for your contribution. It looks indeed fix a wrong value type. I am curious about the case where the issue you want to solve appears....

```yaml # schema.yml Product: columns: id: type: integer primary: true autoincrement: true product_id: type: integer customer_id: type: integer indexes: # change break this single_field_index: fields: product_id multi_field_index: fields: - product_id...

> single_field_index: fields: product_id the above index is provoking the warnings, I have tried to fix with my pull. Is this your question? Yes, you answered to my question.

I added test for your use case. They failed, without surprise. See #133 Do you have this following PHP warning? > PHP Warning: Only the first byte will be assigned...