@@ -13,7 +13,7 @@ |
||
13 | 13 | class Application |
14 | 14 | { |
15 | 15 | public $capsuleDb = []; |
16 | - public $cache , $session; |
|
16 | + public $cache, $session; |
|
17 | 17 | private static $instance; |
18 | 18 | |
19 | 19 | public function __construct() |
@@ -7,7 +7,7 @@ |
||
7 | 7 | |
8 | 8 | class Migration extends MigrationDatabase |
9 | 9 | { |
10 | - public $schema , $application; |
|
10 | + public $schema, $application; |
|
11 | 11 | |
12 | 12 | public function __construct() |
13 | 13 | { |
@@ -13,7 +13,7 @@ |
||
13 | 13 | { |
14 | 14 | protected $blade; |
15 | 15 | |
16 | - public $framework , $request , $response , $params; |
|
16 | + public $framework, $request, $response, $params; |
|
17 | 17 | |
18 | 18 | /** |
19 | 19 | * Controller constructor. |
@@ -6,7 +6,7 @@ |
||
6 | 6 | |
7 | 7 | class Paginate extends Controller |
8 | 8 | { |
9 | - public $perPage, $currentPage, $total , $maxPage , $items , $skip; |
|
9 | + public $perPage, $currentPage, $total, $maxPage, $items, $skip; |
|
10 | 10 | |
11 | 11 | /** |
12 | 12 | * Paginate constructor. |
@@ -24,7 +24,7 @@ |
||
24 | 24 | { |
25 | 25 | DB::schema()->dropIfExists($this->tableName); |
26 | 26 | |
27 | - return DB::schema()->create($this->tableName, function ($table) { |
|
27 | + return DB::schema()->create($this->tableName, function($table) { |
|
28 | 28 | $table->increments('id'); |
29 | 29 | $table->enum('priority', ['user', 'admin'])->default('user'); |
30 | 30 | $table->string('first_name'); |
@@ -1,4 +1,4 @@ |
||
1 | 1 | </div> |
2 | 2 | <div class="content"> |
3 | - © <?php echo date('Y');?>. {{$framework->title}}- by <a href="http://adrielov.com.br" class="navbar-link" target="_blank">Adriel Oliveira</a> |
|
3 | + © <?php echo date('Y'); ?>. {{$framework->title}}- by <a href="http://adrielov.com.br" class="navbar-link" target="_blank">Adriel Oliveira</a> |
|
4 | 4 | </div> |