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

10 lines
169 B
PHP

<?php declare (strict_types=1);
class ClassWithNamedService extends Controller
{
public function render()
{
$this->get('some.class')->render();
}
}