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;
|
||||
}
|
||||
}
|
8
Tests/fixtures/ServiceBinding/FooRecursive.php
vendored
Normal file
8
Tests/fixtures/ServiceBinding/FooRecursive.php
vendored
Normal file
@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
namespace BeSimple\SoapBundle\Tests\fixtures\ServiceBinding;
|
||||
|
||||
class FooRecursive
|
||||
{
|
||||
public $bar;
|
||||
}
|
Reference in New Issue
Block a user