Files
webservice/tests/Webservice/MockWebserviceSubclass.php
2018-10-13 18:37:30 +02:00

20 lines
416 B
PHP

<?php
namespace BSR\Webservice;
class MockWebserviceSubclass extends Webservice
{
public function someMockFunction($one, $two, $threeOpt = null)
{
return 'Some Mock Function Return';
}
public function someOtherMockFunction($one, $two, $threeOpt = null)
{
return array(
'one' => $one,
'two' => $two,
'threeOpt' => $threeOpt
);
}
}