mirror of
https://github.com/yiisoft/yii2.git
synced 2025-08-14 14:28:27 +08:00
24 lines
451 B
PHP
24 lines
451 B
PHP
<?php
|
|
/**
|
|
* @link https://www.yiiframework.com/
|
|
* @copyright Copyright (c) 2008 Yii Software LLC
|
|
* @license https://www.yiiframework.com/license/
|
|
*/
|
|
|
|
namespace yiiunit\framework\web;
|
|
|
|
use yii\web\Controller;
|
|
|
|
/**
|
|
* @author Misbahul D Munir <misbahuldmunir@gmail.com>
|
|
* @since 2.0
|
|
*/
|
|
class FakeController extends Controller
|
|
{
|
|
public $enableCsrfValidation = false;
|
|
|
|
public function actionAksi1($fromGet, $other = 'default')
|
|
{
|
|
}
|
|
}
|