LoggableGenerator
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
wmc 0
lcom 0
cbo 1
dl 0
loc 3
c 0
b 0
f 0
1
<?php
2
3
namespace Knp\Bundle\SnappyBundle\Snappy;
4
5
use Knp\Bundle\SnappyBundle\Snappy\Generator\LoggableGenerator as BaseGenerator;
6
7
/**
8
 * This class was unfortunately moved in v1.5.0, thus creating a BC break.
9
 *
10
 * @deprecated
11
 */
12
class LoggableGenerator extends BaseGenerator
0 ignored issues
show
Deprecated Code introduced by
The class Knp\Bundle\SnappyBundle\...rator\LoggableGenerator has been deprecated with message: Logging capability is now directly integrated in Snappy. You should use it rather than this Decorator.

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...
13
{
14
}
15