You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
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
|
|
);
|
|
}
|
|
}
|