BeSimpleSoap/Tests/fixtures/ServiceBinding/BarRecursive.php

13 lines
200 B
PHP

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