Sanka
Sanka
What about such inliners? in array (from: yii3-app/config/routes.php): ``` return [ Route::get('/')->action([SiteController::class, 'index'])->name('home'), ]; ``` as variable (yii3-app/tests/Unit/HelloCest.php): `$params = $this->getConfig()->get('params');` as return (yii3-app/tests/Support/_generated/UnitTesterActions.php): `return $this->getScenario()->runStep(new \Codeception\Step\Action('assertEmpty', func_get_args()));` It will...
Is this correct? ``` return [ Route::get('/') ->action([SiteController::class, 'index']) ->name('home'), ]; ``` ``` $params = $this ->getConfig() ->get('params'); ``` ``` return $this ->getScenario() ->runStep(new \Codeception\Step\Action('assertEmpty', func_get_args())); ```
More examples (I had during code review), are they correct? one argument (single method) with concatenation: ``` $this->assertGreaterThan($customerQuery->count() . " " . print_r($orders, true)); ``` one argument (chain calls): ```...
In case somebody is searching for those issues and try to fix by themself, below is regex, what worked about 95% of situations (eg, will not match closure function in...
Well, if somebody will make a plugin I will be happy. At least until now, no changes were made and as @arogachev was pointed out: "Already checked and seems it...
What is the error? The same?