From fd108610657ca149cfb59106cb3643d9e3cd3419 Mon Sep 17 00:00:00 2001 From: Alex Bilbie Date: Wed, 8 May 2013 14:10:15 -0700 Subject: [PATCH] Added missing docblock --- src/League/OAuth2/Server/Storage/PDO/Db.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/League/OAuth2/Server/Storage/PDO/Db.php b/src/League/OAuth2/Server/Storage/PDO/Db.php index a2b59664..5922df19 100644 --- a/src/League/OAuth2/Server/Storage/PDO/Db.php +++ b/src/League/OAuth2/Server/Storage/PDO/Db.php @@ -4,6 +4,11 @@ namespace League\OAuth2\Server\Storage\PDO; class Db { + /** + * Db constructor + * @param array|string $dsn Connection DSN string or array of parameters + * @return void + */ public function __construct($dsn = '') { $db = \ezcDbFactory::create($dsn);