SQL::exec(' {$create} '); } public static function validate(\$data){ return Check::valid([ {$valids} ], \$data); } } EOC; $models[$table] = $model; } $force = CLI::input('force', false); foreach ($models as $table => $model) { $file = dirname(__DIR__) . "/models/{$model->name}.php"; if (!$force && file_exists($file)) { CLI::writeln("<red>Already founded a model named <b>{$model->name}</b>, skipping...</red>"); } else { CLI::writeln("<green>Compiling</green> model : <b>{$model->name}</b>"); file_put_contents($file, $model->code); } } break; default: echo "Model utilities.", PHP_EOL; echo "- Available actions: generate --force", PHP_EOL; break; }
<?php /** * Server utilities */ CLI::on('server :action', function ($action) { switch ($action) { case 'run': $host = CLI::input("host", '0.0.0.0'); $port = CLI::input("port", 8888); CLI::write("[<white>APP</white>] <purple>Starting</purple> webserver on <cyan>{$host}</cyan>:<green>{$port}</green>"); CLI::writeln(""); exec("(which open && open http://{$host}:{$port}/); php -S {$host}:{$port} -t " . dirname(__DIR__) . "/public"); break; default: echo "Server utilities.", PHP_EOL; echo "- Available actions: run", PHP_EOL; break; } });