for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace example\controllers;
use Tebe\Pvc\Controller\BaseController;
class ApiController extends BaseController
{
public function indexAction()
return [
'a' => 123,
'b' => 456,
'c' => 789
];
}