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

api/controllers/BaseController.php (1 issue)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

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
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