Added unit tests on RpcLiteralRequestMessageBinder

This commit is contained in:
Francis Besset
2011-07-24 21:30:45 +02:00
parent 7d4e88c941
commit 444107b89a
2 changed files with 149 additions and 0 deletions

View File

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