Spec
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 3
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
dl 0
loc 3
c 0
b 0
f 0
wmc 0
lcom 0
cbo 1
1
<?php
2
3
namespace PHPKitchen\Platform\Specs\Base;
4
5
use PHPKitchen\CodeSpecs\Base\Specification;
6
7
/**
8
 * Represents base class for all of the test cases.
9
 *
10
 * @author Dmitry Kolodko <[email protected]>
11
 */
12
abstract class Spec extends Specification {
0 ignored issues
show
Coding Style introduced by
Spec 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...
13
    protected const FIXTURES_DIR = __DIR__ . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . 'Fixtures' . DIRECTORY_SEPARATOR;
14
}