php build/stubGenerator.php
then open: stubs.php
class japplicationsite extends \Joomla\CMS\Application\SiteApplication {}
class jhelperusergroups extends \Joomla\CMS\Helper\UserGroupsHelper {}
class jversion extends \Joomla\CMS\Version {}
No errors
Class may not inherit from final class.
cc @mbabker
Labels |
Added:
?
|
Status | New | ⇒ | Closed |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2017-12-22 16:13:10 |
Closed_By | ⇒ | mbabker |
#19138 adds the final keywords for those classes.
FWIW, that IDE error is going to always exist in the stubs file because we have to extend the final classes to make the alias mapping work. No real way around it except excluding final classes from the stubs, which kind of defeats the point of having it to begin with.