BeSimpleSoap/Tests/fixtures/ServiceBinding/BarRecursive.php

14 lines
201 B
PHP
Raw Normal View History

2011-09-13 21:34:39 +02:00
<?php
namespace BeSimple\SoapBundle\Tests\fixtures\ServiceBinding;
class BarRecursive
{
private $foo;
public function __construct(FooRecursive $foo)
{
$this->foo = $foo;
}
}