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

Commit

Permalink
Merge pull request zendframework/zendframework#4352 from neeckeloo/do…
Browse files Browse the repository at this point in the history
…c-blocks-consistency

Fix doc blocks consistency and coding standards PSR2

Conflicts:
	library/Zend/Barcode/Renderer/Pdf.php
	library/Zend/Mvc/Router/Http/Regex.php
	library/Zend/View/Helper/Navigation/Listener/AclListener.php
  • Loading branch information
weierophinney committed Apr 29, 2013
154 parents 9a50fc3 + 8993ba7 + d089acd + 6fcf214 + bcbd2dd + 91375d9 + da20dbf + 8cb31b9 + 34aaa76 + a941379 + 5ec4274 + 1a8b800 + 045212a + c918e2c + 1d51877 + 073ffb1 + 6cc70c4 + cca448e + 5f78560 + 1c0be41 + 02f7335 + 88a04db + b1c3dd1 + f3d5365 + 88de986 + fb38487 + 7bfe758 + 2e55342 + 6a04f31 + 57ecc1a + b78abaa + 30a9569 + f96aa9d + 23f86e7 + d43d656 + 4de219f + 3c20bba + a0d3747 + 456d331 + e503406 + 95c2a28 + 1fc5b65 + bc3880f + 2989a80 + e8f73d2 + fcc59de + ad50dbb + a46cbd4 + 6192f93 + bb42677 + 02419fd + cf6df36 + 92345be + 737b39e + fde18af + 43ca092 + e3acc17 + b5bc61a + 30d69f9 + 7dbd12c + 9f45cc7 + 473bfa3 + 916cd80 + 5aac7b0 + 6f66646 + 12c90a3 + 435c161 + 9bb6b33 + 6c32cce + f3c637f + c54876c + e1d13eb + daa8e6c + 5570955 + 388a6c0 + ac33840 + 00e233b + 532572e + 1e1f8d2 + b636e56 + 18878ed + 79ce391 + 9db7d70 + 0c2ce53 + 8dbc4b8 + b8b5d22 + 3dac49c + c87ef97 + 1ffe869 + fbe0570 + 802848d + 9fd0967 + 537b471 + 8cc3c9d + 7f51755 + 71ea52c + f2338ea + 226aada + 6f2818d + fafc8ae + 06d397d + 42a5665 + 9b6e2d1 + 96a0498 + 8cc5c74 + e3d1211 + ec85470 + a6f2c9c + fd7b83c + 6d8b4af + b29c8c0 + 64f42ce + 1a82cad + becf6c6 + 2ef3150 + 298e4df + 829ed04 + 4f30658 + ca02442 + 93fe9e8 + 28004c9 + ee4145b + 5e1f577 + 783b983 + 7b0d8d0 + 93db32e + 2b88f8e + fddfc5a + 7bc42fb + 0fe8dfb + 5ee657c + 5f406b6 + c948fa3 + 960d3da + c281e33 + 62224a4 + 6f2357e + 20aefa2 + 31e6b5a + 8a77c3a + 4982e89 + 1386ed7 + 67368ff + 95214da + 6434c7e + 659bce0 + e6b0ec4 + 5fcb527 + 19f72a6 + b8734d1 + e0c31db + 3a7c753 + c36df00 + 9cc16d3 commit 19b2306
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -954,7 +954,7 @@ public function _doRequest(Client\Common $client, $request, $location, $action,
{
// Perform request as is
if ($oneWay === null) {
return call_user_func(array($client,'SoapClient::__doRequest'), $request, $location, $action, $version);
return call_user_func(array($client, 'SoapClient::__doRequest'), $request, $location, $action, $version);
}
return call_user_func(array($client, 'SoapClient::__doRequest'), $request, $location, $action, $version, $oneWay);
}
Expand Down
4 changes: 2 additions & 2 deletions src/Client/DotNet.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ public function __construct($wsdl = null, $options = null)
* @param string $request The request body.
* @param string $location The SOAP URI.
* @param string $action The SOAP action to call.
* @param integer $version The SOAP version to use.
* @param integer $one_way (Optional) The number 1 if a response is not expected.
* @param int $version The SOAP version to use.
* @param int $one_way (Optional) The number 1 if a response is not expected.
* @return string The XML SOAP response.
*/
public function _doRequest(CommonClient $client, $request, $location, $action, $version, $one_way = null)
Expand Down
2 changes: 1 addition & 1 deletion src/Wsdl/ComplexTypeStrategy/ArrayOfTypeComplex.php
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ protected function _getSingularPhpType($type)
* Return the array nesting level based on the type name
*
* @param string $type
* @return integer
* @return int
*/
protected function _getNestedCount($type)
{
Expand Down
2 changes: 1 addition & 1 deletion src/Wsdl/ComplexTypeStrategy/ArrayOfTypeSequence.php
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ protected function _getSingularType($type)
* Return the array nesting level based on the type name
*
* @param string $type
* @return integer
* @return int
*/
protected function _getNestedCount($type)
{
Expand Down
6 changes: 3 additions & 3 deletions src/Wsdl/ComplexTypeStrategy/Composite.php
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public function getDefaultStrategy()
if (is_string($strategy) && class_exists($strategy)) {
$strategy = new $strategy;
}
if ( !($strategy instanceof ComplexTypeStrategy) ) {
if (!($strategy instanceof ComplexTypeStrategy)) {
throw new Exception\InvalidArgumentException(
'Default Strategy for Complex Types is not a valid strategy object.'
);
Expand All @@ -107,7 +107,7 @@ public function getStrategyOfType($type)
$strategy = new $strategy();
}

if ( !($strategy instanceof ComplexTypeStrategy) ) {
if (!($strategy instanceof ComplexTypeStrategy)) {
throw new Exception\InvalidArgumentException(sprintf(
'Strategy for Complex Type "%s" is not a valid strategy object.',
$type
Expand Down Expand Up @@ -141,7 +141,7 @@ public function setContext(Wsdl $context)
*/
public function addComplexType($type)
{
if (!($this->context instanceof Wsdl) ) {
if (!($this->context instanceof Wsdl)) {
throw new Exception\InvalidArgumentException(sprintf(
'Cannot add complex type "%s", no context is set for this composite strategy.',
$type
Expand Down

0 comments on commit 19b2306

Please sign in to comment.