In my Joomla component i add a style sheet according to phpstorm is $document->addStyleSheet deprecated.
This is the code i use:
$uri = JUri::base();
$document = JFactory::getDocument();
$document->addStyleSheet(JUri::base() . "components/com_exampe/views/stats/tmpl/style.css");
I also tryed this code:
JHtml::stylesheet('com_hccxmlkadernet/views/statistiek/tmpl/style.css', array(), true);
But thats also deprecated
Can some one tell what te correct way is to do this ?