Completed
Push — master ( b57ec8...24a4dc )
by Ricardo
03:57
created

ProjectController::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 5
c 0
b 0
f 0
rs 10
cc 1
nc 1
nop 1
1
<?php
2
3
namespace Fabrica\Http\Controllers\Painel;
4
5
use Fabrica\Models\Code\Project;
6
use Fabrica\Services\FabricaService;
7
use Illuminate\Support\Facades\Schema;
8
use Pedreiro\CrudController;
9
10
class ProjectController extends Controller
11
{
12
    use CrudController;
13
14
    public function __construct(Project $model)
15
    {
16
        $this->model = $model;
17
        parent::__construct();
18
    }
19
}
20