mirror of
https://github.com/opensupports/opensupports.git
synced 2025-07-31 01:35:15 +02:00
12 lines
269 B
PHP
Executable File
12 lines
269 B
PHP
Executable File
<?php
|
|
|
|
class Response extends \Mock {
|
|
public static $functionList = array();
|
|
|
|
public static function initStubs() {
|
|
parent::setStatics(array(
|
|
'respondSuccess' => parent::stub(),
|
|
'respondError' => parent::stub()
|
|
));
|
|
}
|
|
} |