AIParking_Intops_Server/vendor/codeception/base/tests/data/FailDependenciesInChain.php
2020-02-01 16:47:12 +07:00

13 lines
189 B
PHP

<?php
namespace FailDependenciesInChain;
class IncorrectDependenciesClass
{
public function _inject(AnotherClass $a) {}
}
class AnotherClass
{
private function __construct() {}
}