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