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

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

src/Adapter/AbstractAdapter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public function getIdentity()
6161
* Sets the identity for binding
6262
*
6363
* @param mixed $identity
64-
* @return AbstractAdpter
64+
* @return AbstractAdapter
6565
*/
6666
public function setIdentity($identity)
6767
{

src/Adapter/DbTable.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ protected function _authenticateSetup()
330330
* _authenticateCreateSelect() - This method creates a Zend\Db\Sql\Select object that
331331
* is completely configured to be queried against the database.
332332
*
333-
* @return DbSelect
333+
* @return Sql\Select
334334
*/
335335
protected function _authenticateCreateSelect()
336336
{
@@ -358,7 +358,7 @@ protected function _authenticateCreateSelect()
358358
* _authenticateQuerySelect() - This method accepts a Zend\Db\Sql\Select object and
359359
* performs a query against the database with that object.
360360
*
361-
* @param DbSelect $dbSelect
361+
* @param Sql\Select $dbSelect
362362
* @throws Exception\RuntimeException when an invalid select object is encountered
363363
* @return array
364364
*/

src/Validator/Authentication.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ class Authentication extends AbstractValidator
4646

4747
/**
4848
* Authentication Adapter
49-
* @var Zend\Authentication\Adapter\Adapter
49+
* @var ValidatableAdapterInterface
5050
*/
5151
protected $adapter;
5252

@@ -64,7 +64,7 @@ class Authentication extends AbstractValidator
6464

6565
/**
6666
* Authentication Service
67-
* @var Zend\Authentication\AuthenticationService
67+
* @var AuthenticationService
6868
*/
6969
protected $service;
7070

@@ -99,7 +99,7 @@ public function __construct($options = null)
9999
/**
100100
* Get Adapter
101101
*
102-
* @return Zend\Authentication\Adapter\ValidatableAdapterInterface
102+
* @return ValidatableAdapterInterface
103103
*/
104104
public function getAdapter()
105105
{
@@ -109,7 +109,7 @@ public function getAdapter()
109109
/**
110110
* Set Adapter
111111
*
112-
* @param Zend\Authentication\Adapter\ValidatableAdapterInterface $adapter
112+
* @param ValidatableAdapterInterface $adapter
113113
* @return Authentication
114114
*/
115115
public function setAdapter(ValidatableAdapterInterface $adapter)
@@ -168,7 +168,7 @@ public function setCredential($credential)
168168
/**
169169
* Get Service
170170
*
171-
* @return Zend\Authentication\AuthenticationService
171+
* @return AuthenticationService
172172
*/
173173
public function getService()
174174
{
@@ -178,7 +178,7 @@ public function getService()
178178
/**
179179
* Set Service
180180
*
181-
* @param Zend\Authentication\AuthenticationService $service
181+
* @param AuthenticationService $service
182182
* @return Authentication
183183
*/
184184
public function setService(AuthenticationService $service)

0 commit comments

Comments
 (0)