Files
yii2/tests/framework/web/stubs/ModelBindingStub.php

15 lines
330 B
PHP

<?php
namespace yiiunit\framework\web\stubs;
use yii\db\ActiveRecord;
use yii\web\NotFoundHttpException;
class ModelBindingStub extends ActiveRecord {
/**
* @return self;
* @throw NotFoundHttpException
*/
public static function build() {
throw new NotFoundHttpException("Not Found Item.");
}
}