Coduo\PHPMatcher\Tests\Matcher\UuidMatcherTest::negativeMatchDescription PHP Метод

negativeMatchDescription() публичный статический Метод

public static negativeMatchDescription ( )
    public static function negativeMatchDescription()
    {
        return array(array(new \stdClass(), "@uuid@", "object \"\\stdClass\" is not a valid UUID: not a string."), array(1.1, "@uuid@", "double \"1.1\" is not a valid UUID: not a string."), array(false, "@uuid@", "boolean \"false\" is not a valid UUID: not a string."), array(1, "@uuid@", "integer \"1\" is not a valid UUID: not a string."), array("lorem ipsum", "@uuid@", "string \"lorem ipsum\" is not a valid UUID: invalid format."), array("9f4db639-0e87-4367-9beb-d64e3f42ae1z", "@uuid@", "string \"9f4db639-0e87-4367-9beb-d64e3f42ae1z\" is not a valid UUID: invalid format."));
    }