for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Created for IG Monitoring.
* User: jakim <[email protected]>
* Date: 06.05.2018
*/
namespace app\modules\api\v1\components;
use yii\filters\auth\HttpBearerAuth;
use yii\helpers\ArrayHelper;
class ActiveController extends \yii\rest\ActiveController
{
public function behaviors()
return ArrayHelper::merge(parent::behaviors(), [
'auth' => HttpBearerAuth::class,
]);
}