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

Commit

Permalink
Merge branch 'hotfix/zendframework/zendframework#5863-method-signatur…
Browse files Browse the repository at this point in the history
  • Loading branch information
Ocramius committed Mar 17, 2014
2 parents 0361731 + b61ada6 commit 4e9baee
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions src/Adapter/DbTable/AbstractAdapter.php
Expand Up @@ -105,7 +105,7 @@ public function __construct(
* setTableName() - set the table name to be used in the select query
*
* @param string $tableName
* @return DbTable Provides a fluent interface
* @return self Provides a fluent interface
*/
public function setTableName($tableName)
{
Expand All @@ -117,7 +117,7 @@ public function setTableName($tableName)
* setIdentityColumn() - set the column name to be used as the identity column
*
* @param string $identityColumn
* @return DbTable Provides a fluent interface
* @return self Provides a fluent interface
*/
public function setIdentityColumn($identityColumn)
{
Expand All @@ -129,7 +129,7 @@ public function setIdentityColumn($identityColumn)
* setCredentialColumn() - set the column name to be used as the credential column
*
* @param string $credentialColumn
* @return DbTable Provides a fluent interface
* @return self Provides a fluent interface
*/
public function setCredentialColumn($credentialColumn)
{
Expand All @@ -143,7 +143,7 @@ public function setCredentialColumn($credentialColumn)
* false) parameters. Default is false.
*
* @param int|bool $flag
* @return DbTable Provides a fluent interface
* @return self Provides a fluent interface
*/
public function setAmbiguityIdentity($flag)
{
Expand Down
2 changes: 1 addition & 1 deletion src/Adapter/DbTable/CallbackCheckAdapter.php
Expand Up @@ -56,7 +56,7 @@ public function __construct(
* credential.
*
* @param callable $validationCallback
* @return DbTable
* @return self
* @throws Exception\InvalidArgumentException
*/
public function setCredentialValidationCallback($validationCallback)
Expand Down
2 changes: 1 addition & 1 deletion src/Adapter/DbTable/CredentialTreatmentAdapter.php
Expand Up @@ -62,7 +62,7 @@ public function __construct(
* 'MD5(?)'
*
* @param string $treatment
* @return DbTable Provides a fluent interface
* @return self Provides a fluent interface
*/
public function setCredentialTreatment($treatment)
{
Expand Down
2 changes: 1 addition & 1 deletion src/Adapter/Http/ApacheResolver.php
Expand Up @@ -50,7 +50,7 @@ public function __construct($path = '')
* Set the path to the credentials file
*
* @param string $path
* @return FileResolver Provides a fluent interface
* @return self Provides a fluent interface
* @throws Exception\InvalidArgumentException if path is not readable
*/
public function setFile($path)
Expand Down

0 comments on commit 4e9baee

Please sign in to comment.