PHP Classes

File: bin/stub.php

Recommend this page to a friend!
  Classes of jawira   PHP MySQL Draw   bin/stub.php   Download  
File: bin/stub.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP MySQL Draw
MySQL diagram generator PHP tool
Author: By
Last change:
Date: 1 year ago
Size: 319 bytes
 

Contents

Class file image Download
#!/usr/bin/env php
<?php declare(strict_types=1);

use
Jawira\MysqlDraw\Cli;

try {
 
set_time_limit(0);
 
Phar::mapPhar('mysql-draw');
  require
'phar://mysql-draw/vendor/autoload.php';
 
Cli::main();
} catch (
Throwable $throwable) {
  echo
$throwable->getMessage() . PHP_EOL;
  exit(
1);
}
exit(
0);
__HALT_COMPILER();