rector/tests/NodeVisitor/DependencyInjection/NamedServicesToConstructorRector/wrong/wrong.php.inc
TomasVotruba 70bb18f099 renaming
2017-08-08 02:30:29 +02:00

10 lines
169 B
PHP

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