remove parameter label

This commit is contained in:
Jimmy McDermott 2018-08-22 08:00:12 -05:00
parent 57e8cf28f6
commit 56916fec70
1 changed files with 1 additions and 1 deletions

View File

@ -404,7 +404,7 @@ extension MySQLUserRepository {
static let serviceSupports: [Any.Type] = [UserRepository.self]
static func makeService(for worker: Container) throws -> Self {
return .init(db: worker.connectionPool(to: .mysql))
return .init(worker.connectionPool(to: .mysql))
}
}
```