PHP Classes

File: bin/console

Recommend this page to a friend!
  Classes of Chun-Sheng, Li   UUIDifier   bin/console   Download  
File: bin/console
Role: Example script
Content type: text/plain
Description: Example script
Class: UUIDifier
Encode and decode UUIDs with a prefix and a number
Author: By
Last change:
Date: 8 days ago
Size: 232 bytes
 

Contents

Class file image Download
<?php

use Symfony\Component\Console\Application;
use
Teamleader\Uuidifier\Command\Encode;

require_once
__DIR__ . '/../vendor/autoload.php';

$application = new Application();
$application->add(new Encode());

$application->run();