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

Commit e61771b

Browse files
committed
Adds trailing commas
1 parent 03db83b commit e61771b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/ConfigProvider.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
/**
33
* @see https://github.com/zendframework/zend-expressive-authentication for the canonical source repository
4-
* @copyright Copyright (c) 2017 Zend Technologies USA Inc. (https://www.zend.com)
4+
* @copyright Copyright (c) 2017-2018 Zend Technologies USA Inc. (https://www.zend.com)
55
* @license https://github.com/zendframework/zend-expressive-authentication/blob/master/LICENSE.md New BSD License
66
*/
77

@@ -42,7 +42,7 @@ public function getAuthenticationConfig() : array
4242
* 'password' => 'password field name',
4343
* ],
4444
* 'sql_get_roles' => 'SQL to retrieve user roles by :identity',
45-
* 'sql_get_details' => 'SQL to retrieve user details by :identity'
45+
* 'sql_get_details' => 'SQL to retrieve user details by :identity',
4646
* ],
4747
* ]
4848
*/
@@ -65,8 +65,8 @@ public function getDependencies() : array
6565
AuthenticationMiddleware::class => AuthenticationMiddlewareFactory::class,
6666
UserRepository\Htpasswd::class => UserRepository\HtpasswdFactory::class,
6767
UserRepository\PdoDatabase::class => UserRepository\PdoDatabaseFactory::class,
68-
UserInterface::class => DefaultUserFactory::class
69-
]
68+
UserInterface::class => DefaultUserFactory::class,
69+
],
7070
];
7171
}
7272
}

0 commit comments

Comments
 (0)