Skip to content

Commit

Permalink
fix docblocks
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze committed Jan 4, 2016
1 parent b8c60e4 commit d947cba
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 10 deletions.
12 changes: 6 additions & 6 deletions src/BackupHandlers/Database/Databases/MySQLDatabase.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ class MySQLDatabase implements DatabaseInterface

/**
* @param Console $console
* @param $database
* @param $user
* @param $password
* @param $host
* @param $port
* @param $socket
* @param string $database
* @param string $user
* @param string $password
* @param string $host
* @param int $port
* @param string $socket
*/
public function __construct(Console $console, $database, $user, $password, $host, $port, $socket)
{
Expand Down
7 changes: 3 additions & 4 deletions src/BackupHandlers/Database/Databases/PgSQLDatabase.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,10 @@ class PgSQLDatabase implements DatabaseInterface
* @param Console $console
* @param $database
* @param string $schema
* @param $username
* @param string $username
* @param $password
* @param string $host
* @param int $port
* @param string $socket
* @param string string $host
* @param int $port
*/
public function __construct(Console $console, $database, $schema, $username, $password, $host, $port)
{
Expand Down

0 comments on commit d947cba

Please sign in to comment.