Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 155 Bytes

ReferenceConstraintViolation.md

File metadata and controls

11 lines (8 loc) · 155 Bytes

ReferenceConstraintViolation

Emitted when changing the type of a pass-by-reference variable

<?php

function foo(string &$a) {
    $a = 5;
}