Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 170 Bytes

ParentNotFound.md

File metadata and controls

13 lines (10 loc) · 170 Bytes

ParentNotFound

Emitted when using parent:: in a class without a parent class.

<?php

class A {
  public function foo() : void {
    parent::foo();
  }
}