CircularReference
March 21, 2020 ยท View on GitHub
Emitted when a class references itself as one of its parents
<?php
class A extends B {}
class B extends A {}
Why this is bad
The code above will not compile
March 21, 2020 ยท View on GitHub
Emitted when a class references itself as one of its parents
<?php
class A extends B {}
class B extends A {}
The code above will not compile