1) Создать класс в папке controllers с action возвращающим обнуляемое значение
/**
* Class DefaultController
* @package rest\modules\city\controllers
*/
class DefaultController extends yii\rest\Controller
{
/**
* `GET city/index` - Список городов
* @return CityList[]|null Возвращает список городов
*/
public function actionIndex(): ?array
2) Запустить генерацию vendor/bin/apidoc api rest rest/docs/api/
What's expected?
Файл rest\docs\api\rest-modules-city-controllers-defaultcontroller.html с описанием контроллера
What steps will reproduce the problem?
1) Создать класс в папке
controllers
сaction
возвращающим обнуляемое значение2) Запустить генерацию
vendor/bin/apidoc api rest rest/docs/api/
What's expected?
Файл
rest\docs\api\rest-modules-city-controllers-defaultcontroller.html
с описанием контроллераWhat do you get instead?
Файл не создается
Additional info