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

Commit

Permalink
Fix phpDoc.
Browse files Browse the repository at this point in the history
  • Loading branch information
Metalaka committed Jul 15, 2015
1 parent 0ec7df5 commit bc43fdc
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
18 changes: 9 additions & 9 deletions Dal.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
/**
* Class \Hoa\Database\Dal.
*
* The heigher class of the Database Abstract Layer. It wrappes all DAL.
* The higher class of the Database Abstract Layer. It wrappes all DAL.
*
* @copyright Copyright © 2007-2015 Hoa community
* @license New BSD License
Expand Down Expand Up @@ -117,11 +117,11 @@ class Dal implements Core\Parameter\Parameterizable, Core\Event\Source
* Create a DAL instance, representing a connection to a database.
* The constructor is private to make a multiton.
*
* @param string $dalName The database abstract layer name.
* @param string $dsn The DSN of database.
* @param string $username The username to connect to database.
* @param string $password The password to connect to database.
* @param array $driverOptions The driver options.
* @param string $dalName The database abstract layer name.
* @param string $dsn The DSN of database.
* @param string $username The username to connect to database.
* @param string $password The password to connect to database.
* @param array $driverOptions The driver options.
* @return void
* @throws \Hoa\Database\Exception
*/
Expand Down Expand Up @@ -165,7 +165,7 @@ private function __construct(
/**
* Initialize parameters.
*
* @param array $parameters Parameters.
* @param array $parameters Parameters.
* @return void
*/
public static function initializeParameters(Array $parameters = [])
Expand Down Expand Up @@ -477,7 +477,7 @@ public function errorInfo()
* Return an array of available drivers.
*
* @return array
* @throws \Hoa\Datatase\Exception
* @throws \Hoa\Database\Exception
*/
public function getAvailableDrivers()
{
Expand All @@ -487,7 +487,7 @@ public function getAvailableDrivers()
/**
* Set attributes.
*
* @param array $attributes Attributes values.
* @param array $attributes Attributes values.
* @return array
* @throws \Hoa\Database\Exception
*/
Expand Down
2 changes: 1 addition & 1 deletion DalStatement.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
/**
* Class \Hoa\Database\DalStatement.
*
* The heigher class that represents a DAL statement.
* The higher class that represents a DAL statement.
*
* @copyright Copyright © 2007-2015 Hoa community
* @license New BSD License
Expand Down
2 changes: 1 addition & 1 deletion Layer/Pdo/Pdo.php
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ protected function setConnection(\PDO $connection)
* Get the connection instance.
*
* @return PDO
* @throws \Hoa\Database\Dal\Exception
* @throws \Hoa\Database\Exception
*/
protected function getConnection()
{
Expand Down

0 comments on commit bc43fdc

Please sign in to comment.