for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace RestTemplate\Rest;
class SampleProtected extends ServiceAbstractBase
{
public function getPing()
$data = $this->decodePreviousToken();
$this->getResponse()->write([
'result' => 'pong',
'metadata' => $data
]);
}