Skip to content
This repository has been archived by the owner on Jan 29, 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
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/Adapter/AbstractAdapter.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public function getIdentity()
* Sets the identity for binding
*
* @param mixed $identity
* @return AbstractAdpter
* @return AbstractAdapter
*/
public function setIdentity($identity)
{
Expand Down
4 changes: 2 additions & 2 deletions src/Adapter/DbTable.php
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ protected function _authenticateSetup()
* _authenticateCreateSelect() - This method creates a Zend\Db\Sql\Select object that
* is completely configured to be queried against the database.
*
* @return DbSelect
* @return Sql\Select
*/
protected function _authenticateCreateSelect()
{
Expand Down Expand Up @@ -358,7 +358,7 @@ protected function _authenticateCreateSelect()
* _authenticateQuerySelect() - This method accepts a Zend\Db\Sql\Select object and
* performs a query against the database with that object.
*
* @param DbSelect $dbSelect
* @param Sql\Select $dbSelect
* @throws Exception\RuntimeException when an invalid select object is encountered
* @return array
*/
Expand Down
12 changes: 6 additions & 6 deletions src/Validator/Authentication.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class Authentication extends AbstractValidator

/**
* Authentication Adapter
* @var Zend\Authentication\Adapter\Adapter
* @var ValidatableAdapterInterface
*/
protected $adapter;

Expand All @@ -64,7 +64,7 @@ class Authentication extends AbstractValidator

/**
* Authentication Service
* @var Zend\Authentication\AuthenticationService
* @var AuthenticationService
*/
protected $service;

Expand Down Expand Up @@ -99,7 +99,7 @@ public function __construct($options = null)
/**
* Get Adapter
*
* @return Zend\Authentication\Adapter\ValidatableAdapterInterface
* @return ValidatableAdapterInterface
*/
public function getAdapter()
{
Expand All @@ -109,7 +109,7 @@ public function getAdapter()
/**
* Set Adapter
*
* @param Zend\Authentication\Adapter\ValidatableAdapterInterface $adapter
* @param ValidatableAdapterInterface $adapter
* @return Authentication
*/
public function setAdapter(ValidatableAdapterInterface $adapter)
Expand Down Expand Up @@ -168,7 +168,7 @@ public function setCredential($credential)
/**
* Get Service
*
* @return Zend\Authentication\AuthenticationService
* @return AuthenticationService
*/
public function getService()
{
Expand All @@ -178,7 +178,7 @@ public function getService()
/**
* Set Service
*
* @param Zend\Authentication\AuthenticationService $service
* @param AuthenticationService $service
* @return Authentication
*/
public function setService(AuthenticationService $service)
Expand Down

0 comments on commit 782d34b

Please sign in to comment.