Updated RpcLiteralRequestMessageBinderTest

This commit is contained in:
Francis Besset
2011-08-27 22:12:38 +02:00
parent 3141adcfad
commit d4662ffe20
4 changed files with 131 additions and 154 deletions

15
Tests/fixtures/ServiceBinding/Foo.php vendored Normal file
View File

@ -0,0 +1,15 @@
<?php
namespace BeSimple\SoapBundle\Tests\fixtures\ServiceBinding;
class Foo
{
public $foo;
public $bar;
public function __construct($foo, $bar)
{
$this->foo = $foo;
$this->bar = $bar;
}
}