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

Commit

Permalink
Merge branch 'hotfix/3808'
Browse files Browse the repository at this point in the history
Close #3808
  • Loading branch information
weierophinney committed Feb 19, 2013
2 parents 79706ce + ce71857 commit 7ddf78d
Show file tree
Hide file tree
Showing 10 changed files with 19 additions and 6 deletions.
2 changes: 2 additions & 0 deletions library/Zend/Code/NameInformation.php
Expand Up @@ -63,6 +63,7 @@ public function hasNamespace()

/**
* @param array $uses
* @return NameInformation
*/
public function setUses(array $uses)
{
Expand All @@ -74,6 +75,7 @@ public function setUses(array $uses)

/**
* @param array $uses
* @return NameInformation
*/
public function addUses(array $uses)
{
Expand Down
1 change: 1 addition & 0 deletions library/Zend/Crypt/Password/Bcrypt.php
Expand Up @@ -178,6 +178,7 @@ public function getSalt()
* Set the backward compatibility $2a$ instead of $2y$ for PHP 5.3.7+
*
* @param boolean $value
* @return Bcrypt
*/
public function setBackwardCompatibility($value)
{
Expand Down
2 changes: 2 additions & 0 deletions library/Zend/Db/Adapter/Driver/Oci8/Oci8.php
Expand Up @@ -103,6 +103,7 @@ public function registerConnection(Connection $connection)
* Register statement prototype
*
* @param Statement $statementPrototype
* @return Oci8
*/
public function registerStatementPrototype(Statement $statementPrototype)
{
Expand All @@ -123,6 +124,7 @@ public function getStatementPrototype()
* Register result prototype
*
* @param Result $resultPrototype
* @return Oci8
*/
public function registerResultPrototype(Result $resultPrototype)
{
Expand Down
2 changes: 2 additions & 0 deletions library/Zend/Db/Adapter/Driver/Oci8/Statement.php
Expand Up @@ -119,6 +119,7 @@ public function setSql($sql)
* Set Parameter container
*
* @param ParameterContainer $parameterContainer
* @return Statement
*/
public function setParameterContainer(ParameterContainer $parameterContainer)
{
Expand Down Expand Up @@ -184,6 +185,7 @@ public function isPrepared()

/**
* @param string $sql
* @return Statement
*/
public function prepare($sql = null)
{
Expand Down
1 change: 1 addition & 0 deletions library/Zend/Filter/PregReplace.php
Expand Up @@ -143,6 +143,7 @@ public function filter($value)
* Validate a pattern and ensure it does not contain the "e" modifier
*
* @param string $pattern
* @return bool
* @throws Exception\InvalidArgumentException
*/
protected function validatePattern($pattern)
Expand Down
5 changes: 3 additions & 2 deletions library/Zend/Permissions/Rbac/Rbac.php
Expand Up @@ -123,8 +123,9 @@ public function getRole($objectOrName)
/**
* Determines if access is granted by checking the role and child roles for permission.
*
* @param string $permission
* @param \Zend\Permissions\Rbac\AssertionInterface|Callable|null $assert
* @param string $permission
* @param \Zend\Permissions\Rbac\AssertionInterface|Callable|null $assert
* @return bool
*/
public function isGranted($role, $permission, $assert = null)
{
Expand Down
Expand Up @@ -32,6 +32,7 @@ public function __construct($numberOfParameters = 0)

/**
* @param string $property the name of the property
* @return bool
* @throws InvalidArgumentException
*/
public function filter($property)
Expand Down
5 changes: 3 additions & 2 deletions library/Zend/Stdlib/StringWrapper/AbstractStringWrapper.php
Expand Up @@ -30,8 +30,9 @@ abstract class AbstractStringWrapper implements StringWrapperInterface
* Check if the given character encoding is supported by this wrapper
* and the character encoding to convert to is also supported.
*
* @param string $encoding
* @param string|null $convertEncoding
* @param string $encoding
* @param string|null $convertEncoding
* @return bool
*/
public static function isSupported($encoding, $convertEncoding = null)
{
Expand Down
5 changes: 3 additions & 2 deletions library/Zend/Stdlib/StringWrapper/Native.php
Expand Up @@ -26,8 +26,9 @@ class Native extends AbstractStringWrapper
* Check if the given character encoding is supported by this wrapper
* and the character encoding to convert to is also supported.
*
* @param string $encoding
* @param string|null $convertEncoding
* @param string $encoding
* @param string|null $convertEncoding
* @return bool
*/
public static function isSupported($encoding, $convertEncoding = null)
{
Expand Down
Expand Up @@ -105,6 +105,7 @@ public function getApplicationConfig()
/**
* Set the application config
* @param array $applicationConfig
* @return AbstractControllerTestCase
* @throws LogicException
*/
public function setApplicationConfig($applicationConfig)
Expand Down

0 comments on commit 7ddf78d

Please sign in to comment.