File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ This config file must return an array with the minimum structure below:
4141
4242``` php
4343return [
44- 'pdo' => [ // An array with a minimum of 1 item and a maximum of 4 items
44+ 'pdo' => [ // An array with a minimum of 1 item and a maximum of 4 items or an instance of the PDO class
4545 'sqlite::memory:', // 1st compulsory item is a dsn string to be passed as 1st arg to the PDO consructor
4646 'username', // 2nd optional item is a username string to be passed as 2nd arg to the PDO consructor
4747 'password', // 3rd optional item is a password string to be passed as 3rd arg to the PDO consructor
Original file line number Diff line number Diff line change 11<?php
22return [
3- 'pdo ' => [ // An array with a minimum of 1 item and a maximum of 4 items
3+ 'pdo ' => [ // An array with a minimum of 1 item and a maximum of 4 items or an instance of a PDO object
44 'sqlite::memory: ' , // 1st compulsory item is a dsn string to be passed as 1st arg to the PDO consructor
55 'username ' , // 2nd optional item is a username string to be passed as 2nd arg to the PDO consructor
66 'password ' , // 3rd optional item is a password string to be passed as 3rd arg to the PDO consructor
You can’t perform that action at this time.
0 commit comments