| Subject |
Details |
| Rector version |
dev-master@b6aea6e |
Current Behaviour
After run rector with phpunit80 set I started getting errors:
[ERROR] Could not process
"/var/www/module/Application/src/AbstractUuidInMemoryRepository.php"
file, due to:
"Implement "PHPStan\PhpDocParser\Ast\PhpDoc\TemplateTagValueNode" to
"Rector\BetterPhpDocParser\Attributes\Ast\AttributeAwareNodeFactory::cr
eateFromPhpDocValueNode"".
For class:
<?php
declare(strict_types=1);
namespace Application;
/**
* @template T of object
*/
abstract class AbstractUuidInMemoryRepository
{
/** @var UuidRepositoryStorage<T> */
private $storage;
/**
* @param UuidRepositoryStorage<T> $storage
*/
final public function __construct(UuidRepositoryStorage $storage)
{
$this->storage = $storage;
}
/**
* @return UuidRepositoryStorage<T>
*/
final protected function getStorage(): UuidRepositoryStorage
{
return $this->storage;
}
}
Current Behaviour
After run rector with phpunit80 set I started getting errors:
For class: