Skip to content

Commit

Permalink
System: remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
esyede committed Jul 8, 2023
1 parent 174c4ba commit 31112a1
Show file tree
Hide file tree
Showing 22 changed files with 0 additions and 81 deletions.
2 changes: 0 additions & 2 deletions application/commands/inspire.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

defined('DS') or exit('No direct script access.');

use System\Console\Commands\Command;

class Inspire_Command extends Command
{
/**
Expand Down
2 changes: 0 additions & 2 deletions application/composers.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

defined('DS') or exit('No direct script access.');

use System\View;

/*
|--------------------------------------------------------------------------
| View Composer
Expand Down
3 changes: 0 additions & 3 deletions application/controllers/home.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@

defined('DS') or exit('No direct script access.');

use System\Routing\Controller;
use System\View;

class Home_Controller extends Controller
{
/**
Expand Down
3 changes: 0 additions & 3 deletions application/events.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@

defined('DS') or exit('No direct script access.');

use System\Event;
use System\Response;

/*
|--------------------------------------------------------------------------
| Events
Expand Down
6 changes: 0 additions & 6 deletions application/middlewares.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,6 @@

defined('DS') or exit('No direct script access.');

use System\Routing\Route;
use System\Request;
use System\Response;
use System\Auth;
use System\Routing\Throttle;

/*
|--------------------------------------------------------------------------
| Middleware
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

defined('DS') or exit('No direct script access.');

use System\Database\Schema;

class Create_Users_Table
{
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

defined('DS') or exit('No direct script access.');

use System\Database\Schema;

class Create_Password_Resets_Table
{
/**
Expand Down
2 changes: 0 additions & 2 deletions application/models/user.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

defined('DS') or exit('No direct script access.');

use System\Database\Facile\Model as Facile;

class User extends Facile
{
/**
Expand Down
2 changes: 0 additions & 2 deletions application/routes.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

defined('DS') or exit('No direct script access.');

use System\Routing\Route;

/*
|--------------------------------------------------------------------------
| Route
Expand Down
4 changes: 0 additions & 4 deletions packages/docs/controllers/home.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,6 @@

defined('DS') or exit('No direct script access.');

use System\Routing\Controller;
use System\Request;
use System\View;
use System\Response;
use Docs\Libraries\Docs;

class Docs_Home_Controller extends Controller
Expand Down
3 changes: 0 additions & 3 deletions system/console/commands/stubs/auth/controllers/dashboard.stub
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@

defined('DS') or exit('No direct script access.');

use System\Routing\Controller;
use System\View;

class Dashboard_Controller extends Controller
{
/**
Expand Down
7 changes: 0 additions & 7 deletions system/console/commands/stubs/auth/controllers/login.stub
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,6 @@

defined('DS') or exit('No direct script access.');

use System\Routing\Controller;
use System\View;
use System\Validator;
use System\Redirect;
use System\Input;
use System\Auth;

class Auth_Login_Controller extends Controller
{
/**
Expand Down
14 changes: 0 additions & 14 deletions system/console/commands/stubs/auth/controllers/password.stub
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,6 @@

defined('DS') or exit('No direct script access.');

use System\Routing\Controller;
use System\View;
use System\Validator;
use System\Redirect;
use System\Input;
use System\Auth;
use System\Database as DB;
use System\Email;
use System\URI;
use System\Response;
use System\Hash;
use System\Date;
use System\Str;

class Auth_Password_Controller extends Controller
{
/**
Expand Down
10 changes: 0 additions & 10 deletions system/console/commands/stubs/auth/controllers/register.stub
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,6 @@

defined('DS') or exit('No direct script access.');

use System\Routing\Controller;
use System\View;
use System\Validator;
use System\Redirect;
use System\Database as DB;
use System\Input;
use System\Auth;
use System\Hash;
use System\Date;

class Auth_Register_Controller extends Controller
{
/**
Expand Down
2 changes: 0 additions & 2 deletions system/console/commands/stubs/command.stub
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

defined('DS') or exit('No direct script access.');

use System\Console\Commands\Command;

class stub_class extends Command
{
/**
Expand Down
2 changes: 0 additions & 2 deletions system/console/commands/stubs/controller.stub
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

defined('DS') or exit('No direct script access.');

use System\Routing\Controller;

class stub_class_Controller extends Controller
{
/**
Expand Down
3 changes: 0 additions & 3 deletions system/console/commands/stubs/failed_jobs.stub
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@

defined('DS') or exit('No direct script access.');

use System\Config;
use System\Database\Schema;

class Create_Failed_Jobs_Table
{
/**
Expand Down
3 changes: 0 additions & 3 deletions system/console/commands/stubs/jobs.stub
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@

defined('DS') or exit('No direct script access.');

use System\Config;
use System\Database\Schema;

class Create_Jobs_Table
{
/**
Expand Down
2 changes: 0 additions & 2 deletions system/console/commands/stubs/migrate.stub
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

defined('DS') or exit('No direct script access.');

use System\Database\Schema;

class stub_class
{
/**
Expand Down
2 changes: 0 additions & 2 deletions system/console/commands/stubs/model.stub
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

defined('DS') or exit('No direct script access.');

use System\Database\Facile\Model as Facile;

class stub_class extends Facile
{
// ..
Expand Down
2 changes: 0 additions & 2 deletions system/console/commands/stubs/resource.stub
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

defined('DS') or exit('No direct script access.');

use System\Routing\Controller;

class stub_class_Controller extends Controller
{
public $restful = true;
Expand Down
3 changes: 0 additions & 3 deletions system/console/commands/stubs/session.stub
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@

defined('DS') or exit('No direct script access.');

use System\Config;
use System\Database\Schema;

class Create_Session_Table
{
/**
Expand Down

0 comments on commit 31112a1

Please sign in to comment.