Skip to content
This repository has been archived by the owner on Jan 31, 2020. It is now read-only.

Commit

Permalink
Resolve undefined classes in phpDoc
Browse files Browse the repository at this point in the history
  • Loading branch information
micheh authored and Ralph Schindler committed Feb 19, 2013
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/SaveHandler/MongoDBOptions.php
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ class MongoDBOptions extends AbstractOptions
*
* @param string $database
* @return MongoDBOptions
* @throws Zend\Session\Exception\InvalidArgumentException
* @throws InvalidArgumentException
*/
public function setDatabase($database)
{
Expand All @@ -100,7 +100,7 @@ public function getDatabase()
*
* @param string $collection
* @return MongoDBOptions
* @throws Zend\Session\Exception\InvalidArgumentException
* @throws InvalidArgumentException
*/
public function setCollection($collection)
{
Expand Down Expand Up @@ -150,7 +150,7 @@ public function getSaveOptions()
*
* @param string $nameField
* @return MongoDBOptions
* @throws Zend\Session\Exception\InvalidArgumentException
* @throws InvalidArgumentException
*/
public function setNameField($nameField)
{
Expand All @@ -177,7 +177,7 @@ public function getNameField()
*
* @param string $dataField
* @return MongoDBOptions
* @throws Zend\Session\Exception\InvalidArgumentException
* @throws InvalidArgumentException
*/
public function setDataField($dataField)
{
Expand All @@ -204,7 +204,7 @@ public function getDataField()
*
* @param string $lifetimeField
* @return MongoDBOptions
* @throws Zend\Session\Exception\InvalidArgumentException
* @throws InvalidArgumentException
*/
public function setLifetimeField($lifetimeField)
{
Expand All @@ -231,7 +231,7 @@ public function getLifetimeField()
*
* @param string $modifiedField
* @return MongoDBOptions
* @throws Zend\Session\Exception\InvalidArgumentException
* @throws InvalidArgumentException
*/
public function setModifiedField($modifiedField)
{
Expand Down

0 comments on commit 8a9cfe7

Please sign in to comment.