Skip to content

Commit

Permalink
As per Olle Jonsson's suggestions: "object" is a valid PHP type, but …
Browse files Browse the repository at this point in the history
…HTTP_Request2 is much more specific.
  • Loading branch information
hm2k committed Jan 20, 2012
1 parent 9f90d6b commit a0ea20d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Services/Mailman.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,9 @@ class Mailman
*/
protected $adminPW;
/**
* Instance of {@link HTTP_Request2}
* A HTTP request instance
*
* @var object $request Instance of {@link HTTP_Request2}
* @var HTTP_Request2 $request
*/
protected $request = null;
/**
Expand All @@ -85,7 +85,7 @@ class Mailman
* @param string $adminURL Set the URL to the Mailman "Admin Links" page
* @param string $list Set the name of the list
* @param string $adminPW Set admin password of the list
* @param object $request Provide your {@link HTTP_Request2} instance
* @param HTTP_Request2 $request Provide your HTTP request instance
*
* @return Services_Mailman
*/
Expand Down Expand Up @@ -167,7 +167,7 @@ public function setadminPW($string)
/**
* Sets the request object
*
* @param object $object A HTTP_Request2 object (otherwise one will be created)
* @param HTTP_Request2 $object A HTTP request instance (otherwise one will be created)
*
* @return boolean Returns whether it was set or not
*/
Expand Down

0 comments on commit a0ea20d

Please sign in to comment.