BeSimpleSoap/Tests/fixtures/ServiceBinding/FooBar.php

15 lines
244 B
PHP
Raw Normal View History

<?php
namespace BeSimple\SoapBundle\Tests\fixtures\ServiceBinding;
class FooBar
{
protected $foo;
protected $bar;
public function __construct(Foo $foo, Bar $bar)
{
$this->foo = $foo;
$this->bar = $bar;
}
}