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

Commit 3df7c28

Browse files
committed
Typo in \Zend\Expressive\Authentication\UserRepositoryPdoDatabaseFactory
1 parent 6545ec1 commit 3df7c28

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,28 @@
22

33
All notable changes to this project will be documented in this file, in reverse chronological order by release.
44

5+
## 1.0.2 - TBD
6+
7+
### Added
8+
9+
- Nothing.
10+
11+
### Changed
12+
13+
- Nothing.
14+
15+
### Deprecated
16+
17+
- Nothing.
18+
19+
### Removed
20+
21+
- Nothing.
22+
23+
### Fixed
24+
25+
- [#40](https://github.com/zendframework/zend-expressive-authentication/issues/40) typo in \Zend\Expressive\Authentication\UserRepositoryPdoDatabaseFactory
26+
527
## 1.0.1 - TBD
628

729
### Added

src/UserRepository/PdoDatabaseFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public function __invoke(ContainerInterface $container) : PdoDatabase
2424
$pdo = $container->get('config')['authentication']['pdo'] ?? null;
2525
if (null === $pdo) {
2626
throw new Exception\InvalidConfigException(
27-
'PDO values are missing in user_register config'
27+
'PDO values are missing in authentication config'
2828
);
2929
}
3030
if (! isset($pdo['dsn'])) {

0 commit comments

Comments
 (0)