ManagerRegistryEndpoint
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

Changes 0
Metric Value
wmc 0
lcom 0
cbo 2
dl 0
loc 4
c 0
b 0
f 0
1
<?php
2
namespace LunixRESTBasics\Endpoint;
3
4
use LunixREST\Server\Router\Endpoint\LoggingEndpoint;
5
6
/**
7
 * Class ManagerRegistryEndpoint
8
 * @package LunixRESTBasics\Endpoint
9
 * @deprecated in favor of just using the trait directly.
10
 */
11
abstract class ManagerRegistryEndpoint extends LoggingEndpoint
0 ignored issues
show
Deprecated Code introduced by
The class LunixREST\Server\Router\Endpoint\LoggingEndpoint has been deprecated with message: in favor of just directly using the LoggerAwareTrait.

This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the type will be removed from the class and what other constant to use instead.

Loading history...
12
{
13
    use ManagerRegistryAwareTrait;
14
}
15