FIX: Searched how laravel commands work

This commit is contained in:
Nikurasu 2021-12-16 15:34:28 +01:00
parent cf2f28ba27
commit 48ad677a12
3 changed files with 9 additions and 1 deletions

6
package-lock.json generated Normal file
View file

@ -0,0 +1,6 @@
{
"name": "socialtree",
"lockfileVersion": 2,
"requires": true,
"packages": {}
}

View file

@ -50,3 +50,4 @@ PUSHER_APP_CLUSTER=mt1
MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"
JSON_FILE_PATH=""

View file

@ -3,6 +3,7 @@
namespace App\Console\Commands;
use Illuminate\Console\Command;
use League\Flysystem\Config;
class loadAll extends Command
{
@ -37,7 +38,7 @@ class loadAll extends Command
*/
public function handle()
{
printf(env('JSON_FILE_PATH'));
return Command::SUCCESS;
}
}