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\Core\Attribute\Autowired;
use Switon\Id\IdGeneratorInterface;
class OrderService
{
#[Autowired] protected IdGeneratorInterface $idGenerator;
public function createOrder(): string
{
return (string) $this->idGenerator->next();
}
}