BeSimpleSoap/Tests/ServiceBinding/fixtures/Foo.php
2011-07-24 21:30:45 +02:00

13 lines
184 B
PHP

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