static  DRY

use App\Http\Controllers\UseController;

 

static

Controller::Index();

staticの時はrouteで呼び出せない

static function の中は$thisを呼べない

self::メソッドでok

 

 

 

staticでないとき

$UseController = new UseController;

$UseController->index();

 

__construct

__destruct