Skip to content

Commit

Permalink
Fixing & Improvement
Browse files Browse the repository at this point in the history
  • Loading branch information
Ferry Ariawan committed May 9, 2021
1 parent 84cd46b commit 3e84d57
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 8 deletions.
20 changes: 20 additions & 0 deletions app/Modules/Main/Configs/Command.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<?php


namespace App\Modules\Main\Configs;


use SuperFrameworkEngine\Commands\OutputMessage;

class Command
{
use OutputMessage;

/**
* @description Test Command
* @command test
*/
public function run() {
$this->info("Yes it works!");
}
}
4 changes: 4 additions & 0 deletions bootstrap/cache.php
Original file line number Diff line number Diff line change
Expand Up @@ -70,5 +70,9 @@
'path' => 'vendor\\fherryfherry\\super-framework-engine\\src\\App\\UtilModel\\Configs\\Command',
'class' => 'SuperFrameworkEngine\\App\\UtilModel\\Configs\\Command',
],
[
'path' => 'App\\Modules\\Main\\Configs\\Command',
'class' => 'App\\Modules\\Main\\Configs\\Command',
],
],
];
17 changes: 9 additions & 8 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 3e84d57

Please sign in to comment.