41 lines
666 B
PHP
41 lines
666 B
PHP
<?php
|
|
|
|
|
|
namespace Snowflake;
|
|
|
|
|
|
use Console\Command;
|
|
use Snowflake\Abstracts\Input;
|
|
|
|
|
|
/**
|
|
* Class Runtime
|
|
* @package Snowflake
|
|
*/
|
|
class Runtime extends Command
|
|
{
|
|
|
|
|
|
public string $command = 'runtime:builder';
|
|
|
|
public string $description = 'create app file cache';
|
|
|
|
|
|
/**
|
|
* @param Input $dtl
|
|
* @throws \Exception
|
|
*/
|
|
public function onHandler(Input $dtl)
|
|
{
|
|
// TODO: Implement onHandler() method.
|
|
|
|
$annotation = Snowflake::app()->getAnnotation();
|
|
$annotation->read(directory('app'), 'App');
|
|
|
|
$runtime = storage('runtime.php');
|
|
|
|
Snowflake::writeFile($runtime, serialize($annotation->getLoader()));
|
|
}
|
|
|
|
}
|