Closed chrkv closed 6 years ago
Confirming this error. For me happened when upgraded from PHPstorm 2018.1.1 to 2018.1.2 EAP, after restart. Plugin version is 0.8.42.6. But this error doesn't seem to interfere with plugin's activity, it works for me.
Confirming this error for PhpStorm 2018.1.3 to 2018.1.4 EAP. Plugin version is 0.8.42.6.
Same error in PhpStorm 2018.2 EAP. Plugin version 0.9.50 Little more information - it's look like error while parsing textInput name attribute in view:
<?= Html::textInput('timesheets[{{counter}}][timesheet.duration]', '{{inTimeFormat timesheet.duration}}',
[
'class' => 'form-control input-small-padding text-center day',
'data-duration' => '{{#if timesheet.duration}}{{timesheet.duration}}{{else}}0{{/if}}',
'data-day' => '{{day}}'
]); ?>
when change to
<?= Html::textInput('timesheets[{{counter}}][Timesheet][duration]', '{{inTimeFormat timesheet.duration}}',
[
'class' => 'form-control input-small-padding text-center day',
'data-duration' => '{{#if timesheet.duration}}{{timesheet.duration}}{{else}}0{{/if}}',
'data-day' => '{{day}}'
]); ?>
got this error.
Additional info