moved some files
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
namespace App;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
namespace App;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
@@ -8,10 +8,11 @@ use Illuminate\Http\Request;
|
||||
use Socialite;
|
||||
use Auth;
|
||||
use DB;
|
||||
|
||||
use App\User;
|
||||
use App\Models\EsiScope;
|
||||
use App\Models\EsiToken;
|
||||
use App\Models\UserRole;
|
||||
use App\EsiScope;
|
||||
use App\EsiToken;
|
||||
use App\UserRole;
|
||||
|
||||
use Seat\Eseye\Cache\NullCache;
|
||||
use Seat\Eseye\Configuration;
|
||||
|
||||
43
app/Library/Fleet.php
Normal file
43
app/Library/Fleet.php
Normal file
@@ -0,0 +1,43 @@
|
||||
<?php
|
||||
|
||||
namespace App\Library;
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
use App\Http\Controllers\Controller;
|
||||
use Session;
|
||||
use DB;
|
||||
use GuzzleHttp\Exception\GuzzleException;
|
||||
|
||||
class Fleet {
|
||||
/**
|
||||
* Create a standing fleet from a registered fleet.
|
||||
*/
|
||||
public function createStandingFleet() {
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Join the standing fleet
|
||||
*/
|
||||
public function joinStandingFleet($fleet) {
|
||||
|
||||
}
|
||||
|
||||
public function leaveStandingFleet() {
|
||||
|
||||
}
|
||||
|
||||
public function createNewWing() {
|
||||
|
||||
}
|
||||
|
||||
public function createNewSquad() {
|
||||
|
||||
}
|
||||
|
||||
public function modifyMOTD() {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
namespace App;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
0
resources/views/fleets/registerstanding.blade.php
Normal file
0
resources/views/fleets/registerstanding.blade.php
Normal file
Reference in New Issue
Block a user