Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ./vendor/fzaninotto/faker/CHANGELOG.md:* Added uuid provider (goatherd)
- ./vendor/fzaninotto/faker/readme.md: - [Uuid](#fakerprovideruuid)
- ./vendor/fzaninotto/faker/readme.md:### `Faker\Provider\Uuid`
- ./vendor/fzaninotto/faker/readme.md: uuid // '7e57d004-2b97-0e7a-b45f-5387367791cd'
- ./vendor/fzaninotto/faker/src/Faker/Factory.php: protected static $defaultProviders = array('Address', 'Barcode', 'Biased', 'Color', 'Company', 'DateTime', 'File', 'HtmlLorem', 'Image', 'Internet', 'Lorem', 'Miscellaneous', 'Payment', 'Person', 'PhoneNumber', 'Text', 'UserAgent', 'Uuid');
- ./vendor/fzaninotto/faker/src/Faker/Generator.php: * @property string $uuid
- ./vendor/fzaninotto/faker/src/Faker/ORM/CakePHP/ColumnTypeGuesser.php: case 'uuid':
- ./vendor/fzaninotto/faker/src/Faker/ORM/CakePHP/ColumnTypeGuesser.php: return $generator->uuid();
- ./vendor/fzaninotto/faker/src/Faker/Provider/File.php: $destinationFile = Uuid::uuid() . '.' . pathinfo($sourceFullPath, PATHINFO_EXTENSION);
- ./vendor/fzaninotto/faker/src/Faker/Provider/Uuid.php:class Uuid extends Base
- ./vendor/fzaninotto/faker/src/Faker/Provider/Uuid.php: * Generate name based md5 UUID (version 3).
- ./vendor/fzaninotto/faker/src/Faker/Provider/Uuid.php: public static function uuid()
- ./vendor/fzaninotto/faker/src/Faker/Provider/Uuid.php: $uuid = sprintf(
- ./vendor/fzaninotto/faker/src/Faker/Provider/Uuid.php: return $uuid;
- ./vendor/fzaninotto/faker/test/Faker/Provider/ProviderOverrideTest.php: public function testUuid($locale = null)
- ./vendor/fzaninotto/faker/test/Faker/Provider/ProviderOverrideTest.php: $this->assertRegExp(static::TEST_STRING_REGEX, $faker->uuid);
- ./vendor/fzaninotto/faker/test/Faker/Provider/UuidTest.php:use Faker\Provider\Uuid as BaseProvider;
- ./vendor/fzaninotto/faker/test/Faker/Provider/UuidTest.php:class UuidTest extends \PHPUnit_Framework_TestCase
- ./vendor/fzaninotto/faker/test/Faker/Provider/UuidTest.php: public function testUuidReturnsUuid()
- ./vendor/fzaninotto/faker/test/Faker/Provider/UuidTest.php: $uuid = BaseProvider::uuid();
- ./vendor/fzaninotto/faker/test/Faker/Provider/UuidTest.php: $this->assertTrue($this->isUuid($uuid));
- ./vendor/fzaninotto/faker/test/Faker/Provider/UuidTest.php: public function testUuidExpectedSeed()
- ./vendor/fzaninotto/faker/test/Faker/Provider/UuidTest.php: $this->assertEquals("8e2e0c84-50dd-367c-9e66-f3ab455c78d6", BaseProvider::uuid());
- ./vendor/fzaninotto/faker/test/Faker/Provider/UuidTest.php: $this->assertEquals("073eb60a-902c-30ab-93d0-a94db371f6c8", BaseProvider::uuid());
- ./vendor/fzaninotto/faker/test/Faker/Provider/UuidTest.php: protected function isUuid($uuid)
- ./vendor/fzaninotto/faker/test/Faker/Provider/UuidTest.php: return is_string($uuid) && (bool) preg_match('/^[a-f0-9]{8,8}-(?:[a-f0-9]{4,4}-){3,3}[a-f0-9]{12,12}$/i', $uuid);
Advertisement
Add Comment
Please, Sign In to add comment