Skip to content
This repository was archived by the owner on Sep 20, 2021. It is now read-only.

Commit bc43fdc

Browse files
committed
Fix phpDoc.
1 parent 0ec7df5 commit bc43fdc

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

Dal.php

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
/**
4242
* Class \Hoa\Database\Dal.
4343
*
44-
* The heigher class of the Database Abstract Layer. It wrappes all DAL.
44+
* The higher class of the Database Abstract Layer. It wrappes all DAL.
4545
*
4646
* @copyright Copyright © 2007-2015 Hoa community
4747
* @license New BSD License
@@ -117,11 +117,11 @@ class Dal implements Core\Parameter\Parameterizable, Core\Event\Source
117117
* Create a DAL instance, representing a connection to a database.
118118
* The constructor is private to make a multiton.
119119
*
120-
* @param string $dalName The database abstract layer name.
121-
* @param string $dsn The DSN of database.
122-
* @param string $username The username to connect to database.
123-
* @param string $password The password to connect to database.
124-
* @param array $driverOptions The driver options.
120+
* @param string $dalName The database abstract layer name.
121+
* @param string $dsn The DSN of database.
122+
* @param string $username The username to connect to database.
123+
* @param string $password The password to connect to database.
124+
* @param array $driverOptions The driver options.
125125
* @return void
126126
* @throws \Hoa\Database\Exception
127127
*/
@@ -165,7 +165,7 @@ private function __construct(
165165
/**
166166
* Initialize parameters.
167167
*
168-
* @param array $parameters Parameters.
168+
* @param array $parameters Parameters.
169169
* @return void
170170
*/
171171
public static function initializeParameters(Array $parameters = [])
@@ -477,7 +477,7 @@ public function errorInfo()
477477
* Return an array of available drivers.
478478
*
479479
* @return array
480-
* @throws \Hoa\Datatase\Exception
480+
* @throws \Hoa\Database\Exception
481481
*/
482482
public function getAvailableDrivers()
483483
{
@@ -487,7 +487,7 @@ public function getAvailableDrivers()
487487
/**
488488
* Set attributes.
489489
*
490-
* @param array $attributes Attributes values.
490+
* @param array $attributes Attributes values.
491491
* @return array
492492
* @throws \Hoa\Database\Exception
493493
*/

DalStatement.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
/**
4040
* Class \Hoa\Database\DalStatement.
4141
*
42-
* The heigher class that represents a DAL statement.
42+
* The higher class that represents a DAL statement.
4343
*
4444
* @copyright Copyright © 2007-2015 Hoa community
4545
* @license New BSD License

Layer/Pdo/Pdo.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ protected function setConnection(\PDO $connection)
117117
* Get the connection instance.
118118
*
119119
* @return PDO
120-
* @throws \Hoa\Database\Dal\Exception
120+
* @throws \Hoa\Database\Exception
121121
*/
122122
protected function getConnection()
123123
{

0 commit comments

Comments
 (0)