for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace app\controllers\api\v1;
use yrc\rest\Controller;
use yii\web\HttpException;
use Yii;
class ServerController extends Controller
{
/**
* Map actions to the appropriate action class
* @return array
*/
public function actions()
return [
'otk' => 'yrc\api\actions\OneTimeKeyAction',
];
}