mirror of
https://github.com/yiisoft/yii2.git
synced 2025-08-14 22:30:27 +08:00
15 lines
330 B
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.");
|
|
}
|
|
} |