Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 132 Bytes

TypeDoesNotContainNull.md

File metadata and controls

10 lines (7 loc) · 132 Bytes

TypeDoesNotContainNull

Emitted when checking a non-nullable type for null

<?php

$a = "hello";
if ($a === null) {}