Skip to content

Latest commit

 

History

History
13 lines (7 loc) · 532 Bytes

PHPCompatibility.Classes.RemovedOrphanedParent.md

File metadata and controls

13 lines (7 loc) · 532 Bytes

Pattern: Use of parent inside a class without parent

Issue: -

Description

Using parent inside a class without parent is deprecated since PHP 7.4. This will throw a compile-time error in the future. Currently an error will only be generated if/when the parent is accessed at run-time.

PHP version 7.4

Further Reading