Created
February 5, 2020 06:32
-
-
Save mustafo/4276f7e222868df9318c18d3f0518b2e to your computer and use it in GitHub Desktop.
uuid_example.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$clientId = UUID::generate(); // 82dfc5ba-ec9a-40c8-8cfb-561dbbc09abe | |
$client = Client::create(['id' => $clientId, 'name' => 'Gulugulu']); | |
$application = Application::create(['client_id' => $clientId, 'number' => '1']); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment