Skip to content

TypeDoesNotContainNull

nullを含まない型に対してnullチェックを行っている場合に発生します。

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

ユーザーノート