Fixed bug if a complex type contains a collection

This commit is contained in:
Francis Besset
2012-01-12 11:45:15 +01:00
parent f0031e8923
commit cfe949b781
4 changed files with 72 additions and 5 deletions

View File

@ -0,0 +1,28 @@
<?php
namespace BeSimple\SoapBundle\Tests\fixtures\ServiceBinding;
class SimpleArrays
{
public $array1;
private $array2;
private $array3;
public function __construct($array1, $array2, $array3)
{
$this->array1 = $array1;
$this->array2 = $array2;
$this->array3 = $array3;
}
public function getArray2()
{
return $this->array2;
}
public function getArray3()
{
return $this->array3;
}
}