The task is simple, I want to add type hinting in Netbeans so I can get code assist in view files. How to do it the right way? The example below does not work:
/**
* @var \Zend\Paginator\Paginator $this->paginator
*/
$pageOffset = ($this->paginator->getCurrentPageNumber() - 1) * $this->paginator->getItemCountPerPage();
This is done in phtml
file not php class file.