Replace the Application loader to facilitate moving the public/ dir to the root

This commit is contained in:
Nabeel Shahzad
2017-12-16 22:02:45 -06:00
parent d768589cb1
commit 7d414ce017
2 changed files with 76 additions and 51 deletions

View File

@@ -0,0 +1,22 @@
<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
class Test extends Command
{
protected $signature = 'phpvms:test';
protected $description = '';
public function __construct()
{
parent::__construct();
}
public function handle()
{
print resource_path();
}
}