pestle icon indicating copy to clipboard operation
pestle copied to clipboard

Can't Resolve Const

Open astorm opened this issue 5 years ago • 0 comments

when I use generate:ui:form in Namespace/Module/Controller/Adminhtml/Thing/Save.php line 60 ;

           $data['is_active'] = Namespace\Module\Model\Thing::STATUS_ENABLED;

This line can't resolve the Const, (missing the first \ before namespace) it should be :

           $data['is_active'] = \Namespace\Module\Model\Thing::STATUS_ENABLED;

And even then, we don't have STATUS_ENABLED defined.

astorm avatar Sep 03 '19 15:09 astorm