mirror of
https://github.com/yiisoft/yii2.git
synced 2025-08-14 22:30:27 +08:00
28 lines
542 B
PHP
28 lines
542 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 Brandon Kelly <branodn@craftcms.com>
|
|
* @since 2.0.31
|
|
*/
|
|
class FakePhp7Controller extends Controller
|
|
{
|
|
public $enableCsrfValidation = false;
|
|
|
|
public function actionAksi1(int $foo, float $bar = null, bool $true, bool $false)
|
|
{
|
|
}
|
|
|
|
public function actionStringy(string $foo = null)
|
|
{
|
|
}
|
|
}
|