Updated RpcLiteralRequestMessageBinderTest
This commit is contained in:
15
Tests/fixtures/ServiceBinding/Foo.php
vendored
Normal file
15
Tests/fixtures/ServiceBinding/Foo.php
vendored
Normal 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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user