refinery29/test-util

View on GitHub
src/DataProvider/InvalidUuid.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

/*
 * Copyright (c) 2016 Refinery29, Inc.
 *
 * For the full copyright and license information, please view
 * the LICENSE file that was distributed with this source code.
 */

namespace Refinery29\Test\Util\DataProvider;

class InvalidUuid extends InvalidString
{
    public function values()
    {
        $faker = $this->getFaker();

        return \array_merge(parent::values(), [
            'md5' => $faker->md5,
            'sha1' => $faker->sha1,
            'sha256' => $faker->sha256,
            'string' => $faker->word,
        ]);
    }
}