rector/tests/NodeVisitor/DependencyInjection/InjectAnnotationToConstructorRector/wrong/wrong.php.inc
2017-08-08 01:59:37 +02:00

17 lines
223 B
PHP

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