for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Tests\Helpers\Stubs;
use App\Lib\Slime\Exceptions\SlimeException;
use App\Lib\Slime\RestAction\Action;
class ActionStub extends Action
{
protected function init()
// TODO: Implement init() method.
}
protected function performChecks()
// TODO: Implement performChecks() method.
protected function performAction()
// TODO: Implement performAction() method.
protected function performCallBack()
// TODO: Implement performCallBack() method.
protected function formatResponse()
// TODO: Implement formatResponse() method.
protected function manageSlimeException(SlimeException $slimeException)
// TODO: Implement manageSlimeException() method.
protected function manageBaseException(\Exception $baseException)
// TODO: Implement manageBaseException() method.