You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Try to refactor the name of the constant in Status class from DRAFT to something else.
The reference to DRAFT constants won't be changed.
For example if I go to my App\\Model\\Status.php and refactor name from public const DRAFT = 'draft'; to public const DRAFT_NEW = 'draft'; IDE should change it also in YAML to initial_marking: !php/const App\Model\Status::DRAFT_NEW
Is it possible to tell IDE about connection between constants used in YAML during refactoring?
The text was updated successfully, but these errors were encountered:
adamwojs
added a commit
to adamwojs/idea-php-symfony2-plugin
that referenced
this issue
Aug 1, 2021
Status
class from DRAFT to something else.The reference to DRAFT constants won't be changed.
For example if I go to my
App\\Model\\Status.php
and refactor name frompublic const DRAFT = 'draft';
topublic const DRAFT_NEW = 'draft';
IDE should change it also in YAML toinitial_marking: !php/const App\Model\Status::DRAFT_NEW
Is it possible to tell IDE about connection between constants used in YAML during refactoring?
The text was updated successfully, but these errors were encountered: