29 lines
406 B
PHP
29 lines
406 B
PHP
<?php
|
|
|
|
namespace BeSimple\SoapBundle\Tests\ServiceBinding\fixtures;
|
|
|
|
class Setters
|
|
{
|
|
private $foo;
|
|
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;
|
|
}
|
|
} |