Added tests on RpcLiteralRequestMessageBinder
This commit is contained in:
29
Tests/ServiceBinding/fixtures/Setters.php
Normal file
29
Tests/ServiceBinding/fixtures/Setters.php
Normal file
@ -0,0 +1,29 @@
|
||||
<?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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user