Skip to content
This repository was archived by the owner on Jan 29, 2020. It is now read-only.

Commit 87f0083

Browse files
committed
Adds trailing commas to final array entries
1 parent a28a7ef commit 87f0083

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

test/UserRepository/PdoDatabaseTest.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public function testAuthenticate()
2727
'table' => 'user',
2828
'field' => [
2929
'username' => 'username',
30-
'password' => 'password'
30+
'password' => 'password',
3131
]
3232
]);
3333

@@ -43,7 +43,7 @@ public function testAuthenticateInvalidUserPassword()
4343
'table' => 'user',
4444
'field' => [
4545
'username' => 'username',
46-
'password' => 'password'
46+
'password' => 'password',
4747
]
4848
]);
4949

@@ -58,7 +58,7 @@ public function testAuthenticateInvalidUsername()
5858
'table' => 'user',
5959
'field' => [
6060
'username' => 'username',
61-
'password' => 'password'
61+
'password' => 'password',
6262
]
6363
]);
6464

@@ -73,7 +73,7 @@ public function testAuthenticateWithRole()
7373
'table' => 'user',
7474
'field' => [
7575
'username' => 'username',
76-
'password' => 'password'
76+
'password' => 'password',
7777
],
7878
'sql_get_roles' => 'SELECT role FROM user WHERE username = :username'
7979
]);
@@ -91,7 +91,7 @@ public function testAuthenticateWithRoles()
9191
'table' => 'user',
9292
'field' => [
9393
'username' => 'username',
94-
'password' => 'password'
94+
'password' => 'password',
9595
],
9696
'sql_get_roles' => 'SELECT role FROM user_role WHERE username = :username'
9797
]);

0 commit comments

Comments
 (0)