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

Commit

Permalink
Merge branch 'feature/phpdoc-mismatch' of https://github.com/micheh/zf2
Browse files Browse the repository at this point in the history
… into hotfix/phpdoc
  • Loading branch information
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/Adapter/DbTable.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

namespace Zend\Authentication\Adapter;

use stdClass;
use Zend\Authentication\Result as AuthenticationResult;
use Zend\Db\Adapter\Adapter as DbAdapter;
use Zend\Db\ResultSet\ResultSet;
Expand Down Expand Up @@ -272,7 +273,7 @@ public function getResultRowObject($returnColumns = null, $omitColumns = null)
return false;
}

$returnObject = new \stdClass();
$returnObject = new stdClass();

if (null !== $returnColumns) {

Expand Down
2 changes: 1 addition & 1 deletion src/Adapter/Http/FileResolver.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public function __construct($path = '')
*
* @param string $path
* @return FileResolver Provides a fluent interface
* @throws Exception\ExceptionInterface
* @throws Exception\InvalidArgumentException if path is not readable
*/
public function setFile($path)
{
Expand Down
3 changes: 2 additions & 1 deletion src/Adapter/Ldap.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

namespace Zend\Authentication\Adapter;

use stdClass;
use Zend\Authentication\Result as AuthenticationResult;
use Zend\Ldap as ZendLdap;
use Zend\Ldap\Exception\LdapException;
Expand Down Expand Up @@ -459,7 +460,7 @@ public function getAccountObject(array $returnAttribs = array(), array $omitAttr
return false;
}

$returnObject = new \stdClass();
$returnObject = new stdClass();

$omitAttribs = array_map('strtolower', $omitAttribs);

Expand Down

0 comments on commit c9693ea

Please sign in to comment.