PHP code example of switon / id
1. Go to this page and download the library: Download switon/id library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
switon / id example snippets
use Switon\Id\IdGeneratorInterface;
use Switon\Core\Attribute\Autowired;
class OrderService
{
#[Autowired] protected IdGeneratorInterface $uuid7;
public function createOrder(array $data): string
{
return $this->uuid7->next();
}
}