<?php

namespace PHPUnit\Framework;

abstract class Assert
{
    /**
     * @phpstan-assert list $array
     *
     * @throws ExpectationFailedException
     */
    final public static function assertIsList(mixed $array, string $message = ''): void {}
}
