make sure doc is skipped

This commit is contained in:
TomasVotruba 2021-01-22 20:14:10 +01:00
parent 7badb6347e
commit 442f617031

View File

@ -0,0 +1,16 @@
<?php
namespace Rector\Php80\Tests\Rector\Property\TypedPropertyFromStrictConstructorRector\Fixture;
class SkipDoc
{
private $name;
/**
* @param string $name
*/
public function __construct($name)
{
$this->name = $name;
}
}