rector/tests/NodeVisitor/DependencyInjection/InjectAnnotationToConstructorReconstructor/wrong/wrong.php.inc

17 lines
223 B
PHP

<?php declare (strict_types=1);
class ClassWithInjects
{
/**
* @var stdClass
* @inject
*/
public $property;
/**
* @var DateTimeInterface
* @inject
*/
public $otherProperty;
}