inotloh

Results 1 issues of inotloh

```php class Parent extends ActiveRecord { $test = '123'; public function text() { echo $this->test; } } class Child extends ActiveRecord implements ActiveRecordInheritanceInterface { use ActiveRecordInheritanceTrait; $test = '456'; public...