Open
Description
When implementing an interface on a class, it is possible to use {@inheritdoc}
to bring the documentation for a particular interface method to the class. This works perfectly well when manually running phpdoc
- however this same documentation inheritance is not maintained in the PHP intellisense popups.
Expected
Actual
Relevant Code
Class
<?php
use Psr\Cache\CacheItemPoolInterface;
use Psr\Cache\CacheItemInterface;
class Cache implements CacheItemPoolInterface
{
/**
* {@inheritdoc}
*/
public function getItem($key)
{
return true;
}
}
Interface
https://github.com/php-fig/cache/blob/master/src/CacheItemPoolInterface.php#L16-L32