public function assertNull()

in src/Assert.hack [188:199]


  public function assertNull(mixed $actual, string $message = ''): void {
    if ($actual === null) {
      return;
    }
    throw new ExpectationFailedException(
      Str\format(
        "%s\nFailed asserting that %s is null",
        $message,
        \var_export($actual, true),
      ),
    );
  }