Failed Conditions
Pull Request — master (#122)
by Rafael
02:24
created

BaseController

Complexity

Total Complexity 0

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 0
lcom 0
cbo 1
dl 0
loc 4
c 0
b 0
f 0
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Gewaer\Api\Controllers;
6
7
use Canvas\Api\Controllers\BaseController as CanvasBaseController;
8
9
/**
10
 * Class BaseController
11
 *
12
 * @package Gewaer\Api\Controllers
13
 *
14
 */
15
abstract class BaseController extends CanvasBaseController
1 ignored issue
show
Coding Style introduced by
BaseController does not seem to conform to the naming convention (^Abstract|Factory$).

This check examines a number of code elements and verifies that they conform to the given naming conventions.

You can set conventions for local variables, abstract classes, utility classes, constant, properties, methods, parameters, interfaces, classes, exceptions and special methods.

Loading history...
16
{
17
   
18
}
19