2011-08-27 22:12:38 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace BeSimple\SoapBundle\Tests\fixtures\ServiceBinding;
|
|
|
|
|
|
|
|
class Bar
|
|
|
|
{
|
|
|
|
private $foo;
|
2013-02-20 16:16:47 +01:00
|
|
|
|
2011-08-27 22:12:38 +02:00
|
|
|
private $bar;
|
|
|
|
|
|
|
|
public function __construct($foo, $bar)
|
|
|
|
{
|
|
|
|
$this->foo = $foo;
|
|
|
|
$this->bar = $bar;
|
|
|
|
}
|
2013-02-20 16:16:47 +01:00
|
|
|
}
|