2011-07-27 00:13:24 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace BeSimple\SoapBundle\Tests\ServiceBinding\fixtures;
|
|
|
|
|
|
|
|
class Setters
|
|
|
|
{
|
|
|
|
private $foo;
|
2013-02-20 16:16:47 +01:00
|
|
|
|
2011-07-27 00:13:24 +02:00
|
|
|
private $bar;
|
|
|
|
|
|
|
|
public function getFoo()
|
|
|
|
{
|
|
|
|
return $this->foo;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setFoo($foo)
|
|
|
|
{
|
|
|
|
$this->foo = $foo;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getBar()
|
|
|
|
{
|
|
|
|
return $this->bar;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setBar($bar)
|
|
|
|
{
|
|
|
|
$this->bar = $bar;
|
|
|
|
}
|
2013-02-20 16:16:47 +01:00
|
|
|
}
|