Files
webservice/tests/Webservice/MockWebserviceSubclass.php
Guillermo Dev 63e48b53ac BSR -> Bsr
2018-10-14 00:42:07 +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
);
}
}