Skip to content

Commit

Permalink
Fix PHP 5.3 compat.
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom Kaczocha committed Dec 16, 2014
1 parent 816e43f commit a998ee3
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions tests/resources/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
[
'from_email' => 'no-reply@rawphp.org',
'from_name' => 'RawPHP',
'smtp' =>
[
'auth' => TRUE,
'host' => 'smtp.gmail.com',
'username' => 'username',
'password' => 'password',
'security' => 'ssl',
'port' => 465,
]
'smtp' => array(

'auth' => TRUE,
'host' => 'smtp.gmail.com',
'username' => 'username',
'password' => 'password',
'security' => 'ssl',
'port' => 465,
)

];

0 comments on commit a998ee3

Please sign in to comment.