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

Commit

Permalink
Merge branch 'feature/di' of github.com:ralphschindler/zf2 into featu…
Browse files Browse the repository at this point in the history
…re/rackspace
  • Loading branch information
ezimuel committed May 31, 2011
13 parents b5bc61a + 30d69f9 + 7dbd12c + 9f45cc7 + 473bfa3 + 916cd80 + 5aac7b0 + 6f66646 + 12c90a3 + 435c161 + 9bb6b33 + e3acc17 + 6c32cce commit f3c637f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/Exception.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,11 @@
namespace Zend\Soap;

/**
* @uses \Zend\Exception
* @category Zend
* @package Zend_Soap
* @subpackage AutoDiscover
* @copyright Copyright (c) 2005-2011 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
interface Exception
{
Expand Down
2 changes: 1 addition & 1 deletion src/Wsdl.php
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ public function addMessage($name, $parts)

$message->setAttribute('name', $name);

if (sizeof($parts) > 0) {
if (count($parts) > 0) {
foreach ($parts as $name => $type) {
$part = $this->_dom->createElement('part');
$part->setAttribute('name', $name);
Expand Down

0 comments on commit f3c637f

Please sign in to comment.