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

ProjectController   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 10
c 0
b 0
f 0
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 5 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