20 lines
416 B
PHP
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
|
|
);
|
|
}
|
|
}
|