Passed
Push — master ( 578dae...ac041a )
by Gianluca
05:58
created

AdminNewProductController   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
eloc 2
c 1
b 0
f 0
dl 0
loc 4
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A page() 0 2 1
1
<?php
2
3
4
namespace Mongi\Mongicommerce\Http\Controllers\admin;
5
6
7
use Mongi\Mongicommerce\Http\Controllers\Controller;
8
9
class AdminNewProductController extends Controller
10
{
11
    public function page(){
12
        return view('mongicommerce::admin.pages.products.new_product');
13
    }
14
}
15