Cannot access parent:: when no class scope is active

Description

parent refers to the parent class of the one. As such, parent can only be used inside a class or a trait.

Example

<?php

static::x;

?>

Solutions

  • Move the code inside a method, in a trait or a class.

  • Use the full name of the class that should be used.