for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Mezon\Service\Tests;
use Mezon\Service\ServiceLogic;
class TestingServiceLogicForRestTransport extends ServiceLogic
{
/**
* Constructor
*/
public function __construct()
// nop
}
public function ok(): string
return "ok";
public function privateMethod(): void
public function publicMethod(): void
public function methodException(): void
throw (new \Exception('Msg'));
public function methodRestException(): void
throw (new \Mezon\Rest\Exception('Msg', 0, 1, '1'));