Added fixtures files
This commit is contained in:
13
Tests/fixtures/ServiceBinding/BarRecursive.php
vendored
Normal file
13
Tests/fixtures/ServiceBinding/BarRecursive.php
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
namespace BeSimple\SoapBundle\Tests\fixtures\ServiceBinding;
|
||||
|
||||
class BarRecursive
|
||||
{
|
||||
private $foo;
|
||||
|
||||
public function __construct(FooRecursive $foo)
|
||||
{
|
||||
$this->foo = $foo;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user