Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 184 Bytes

ConstantDeclarationInTrait.md

File metadata and controls

15 lines (10 loc) · 184 Bytes

ConstantDeclarationInTrait

Emitted when a trait declares a constant in PHP <8.2.0

<?php

trait A {
    const B = 0;
}

Why this is bad

A fatal error will be thrown.