14 lines
201 B
PHP
14 lines
201 B
PHP
<?php
|
|
|
|
namespace BeSimple\SoapBundle\Tests\fixtures\ServiceBinding;
|
|
|
|
class BarRecursive
|
|
{
|
|
private $foo;
|
|
|
|
public function __construct(FooRecursive $foo)
|
|
{
|
|
$this->foo = $foo;
|
|
}
|
|
}
|