Skip to content
This repository has been archived by the owner on Mar 25, 2023. It is now read-only.

Commit

Permalink
Fixed PHPDoc comment of Database and MessageQueue helper
Browse files Browse the repository at this point in the history
  • Loading branch information
andygrunwald committed Nov 30, 2013
1 parent 077806e commit f2b5e0e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions src/TYPO3Analysis/Helper/Database.php
Expand Up @@ -34,12 +34,12 @@ class Database {
/**
* Constructor to initialize the database connection
*
* @param string $host
* @param integer $port
* @param string $username
* @param string $password
* @param string $database
* @return void
* @param string $host
* @param integer $port
* @param string $username
* @param string $password
* @param string $database
* @return \TYPO3Analysis\Helper\Database
*/
public function __construct($host, $port, $username, $password, $database) {
$this->connect($host, $port, $username, $password, $database);
Expand Down
12 changes: 6 additions & 6 deletions src/TYPO3Analysis/Helper/MessageQueue.php
Expand Up @@ -36,12 +36,12 @@ class MessageQueue {
/**
* Constructor to set up a connection to the RabbitMQ server
*
* @param string $host
* @param integer $port
* @param string $username
* @param string $password
* @param string $vHost
* @return void
* @param string $host
* @param integer $port
* @param string $username
* @param string $password
* @param string $vHost
* @return \TYPO3Analysis\Helper\MessageQueue
*/
public function __construct($host, $port, $username, $password, $vHost) {
$this->handle = new AMQPConnection($host, $port, $username, $password, $vHost);
Expand Down

0 comments on commit f2b5e0e

Please sign in to comment.