Test Setup Failed
Pull Request — master (#122)
by Rafael
01:41
created

BaseCustomFieldsController

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
8
use Canvas\Api\Controllers\BaseCustomFieldsController as CanvasBaseCustomFieldsController;
9
10
/**
11
 * Class BaseController
12
 *
13
 * @package Gewaer\Api\Controllers
14
 * @property Users $userData
15
 *
16
 */
17
abstract class BaseCustomFieldsController extends CanvasBaseCustomFieldsController
1 ignored issue
show
Coding Style introduced by
BaseCustomFieldsController 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...
18
{
19
  
20
}
21