Open
Description
Versions:
- ide-helper Version: 2.10.0
- Lumen Version: 8
- PHP Version: 7.4
Description:
this
/**
* @param class-string<T> $className
* @param null|string $driver
* @return T
* @noinspection all
*/
public function instance( $className, $driver = null ){
turns into:
* @param \SteveMoretz\Tools\Utils\MultiDrivers\Managers\class-string<T> $className
* @param null|string $driver
* @return \SteveMoretz\Tools\Utils\MultiDrivers\Managers\T
* @noinspection all
* @static
*/
(In case you are not familiar T is for generic, so it must not be namespaced)
how can I stop this from happening?