yii2-netdisk/controllers/CollectionUploadedController.php
Chenx221 413d60f3f4
整理代码&清洁工作
移除了一些来自模板的代码
2024-03-17 15:37:13 +08:00

49 lines
1.2 KiB
PHP

<?php
namespace app\controllers;
use app\models\CollectionUploaded;
use yii\web\Controller;
use yii\web\NotFoundHttpException;
use yii\filters\VerbFilter;
/**
* CollectionUploadedController implements the CRUD actions for CollectionUploaded model.
*/
class CollectionUploadedController extends Controller
{
/**
* @inheritDoc
*/
public function behaviors(): array
{
return array_merge(
parent::behaviors(),
[
'verbs' => [
'class' => VerbFilter::class,
'actions' => [
],
],
]
);
}
/**
* Finds the CollectionUploaded model based on its primary key value.
* If the model is not found, a 404 HTTP exception will be thrown.
* @param int $id ID
* @return CollectionUploaded the loaded model
* @throws NotFoundHttpException if the model cannot be found
*/
protected function findModel(int $id): CollectionUploaded
{
if (($model = CollectionUploaded::findOne(['id' => $id])) !== null) {
return $model;
}
throw new NotFoundHttpException('The requested page does not exist.');
}
}