Aselsan

Results 15 comments of Aselsan

Temporary solution: Create your own Autoloader.php place to your path. example: path/to/PHPWord/src/PhpWord/Autoloader.php and paste this code: ```php

> > I submit a magicLink request using the incognito browser, then the magicLink sends an email to my my gmail in main browser. when opened it will cause a...

**Step to Reproduce** make sure field `employee_id` set data type to `INT` or `TINYINT` ```php $fields = [ 'employee_id' => ['type' => 'TINYINT', 'default' => 1], ]; ``` Login first!...

Using long options names i think would take extra time to write it. it's better if we keep it simple. Or we can create additional options as aliases for each...

Can you guys run the workflow again. It seems everything is fine now.

it looks like the `close()` function also doesn't work when using the PostgresSQL driver:   this when using MySQL: ### Steps to Reproduce ```php $db = db_connect(); d($db); // d($db->connect());...

and both connections cannot be closed if before closing we run `connect()` as follows: ```php $db = db_connect(); d($db); d($db->connect()); d($db->close()); // d($db->reconnect()); d($db->getPlatform()); d($db->getVersion()); dd(); ```

> For MySQL driver, it explicitly closes then reinitializes the connection. Clearly a difference in behaviors. I'm not sure if the way used to produce the error above is correct....

That helps! thanks for explaining.