Updated RpcLiteralRequestMessageBinderTest
This commit is contained in:
15
Tests/fixtures/ServiceBinding/FooBar.php
vendored
Normal file
15
Tests/fixtures/ServiceBinding/FooBar.php
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
namespace BeSimple\SoapBundle\Tests\fixtures\ServiceBinding;
|
||||
|
||||
class FooBar
|
||||
{
|
||||
protected $foo;
|
||||
protected $bar;
|
||||
|
||||
public function __construct(Foo $foo, Bar $bar)
|
||||
{
|
||||
$this->foo = $foo;
|
||||
$this->bar = $bar;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user