mirror of
https://github.com/yiisoft/yii2.git
synced 2025-10-30 01:56:35 +08:00
Fix optional parameter declared before required parameter implicitly (#20139)
This commit is contained in:
@ -17,7 +17,7 @@ class FakePhp7Controller extends Controller
|
||||
{
|
||||
public $enableCsrfValidation = false;
|
||||
|
||||
public function actionAksi1(int $foo, ?float $bar = null, bool $true, bool $false)
|
||||
public function actionAksi1(int $foo, ?float $bar, bool $true, bool $false)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user