mirror of
https://github.com/ulfgebhardt/system.git
synced 2025-12-13 09:35:49 +00:00
15 lines
467 B
PHP
15 lines
467 B
PHP
<?php
|
|
|
|
namespace SYSTEM\LOG;
|
|
|
|
class AbstractResult {
|
|
//Returns the result as a string
|
|
public static function toString($json_array, $status , $start_time){
|
|
throw new RuntimeException("Unimplemented");}
|
|
//Return Exception as string
|
|
public static function error(\Exception $e){
|
|
throw new RuntimeException("Unimplemented");}
|
|
//Returns OK status
|
|
public static function ok(){
|
|
throw new RuntimeException("Unimplemented");}
|
|
} |