ReferenceDataWriter
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 3
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1
Metric Value
wmc 0
lcom 0
cbo 1
dl 0
loc 3
1
<?php
2
3
namespace Pim\Bundle\CustomEntityBundle\MassEditConnector\Writer;
4
5
use Pim\Bundle\BaseConnectorBundle\Writer\File\CsvWriter;
6
7
/**
8
 * @author Romain Monceau <[email protected]>
9
 */
10
class ReferenceDataWriter extends CsvWriter
0 ignored issues
show
Deprecated Code introduced by
The class Pim\Bundle\BaseConnector...e\Writer\File\CsvWriter has been deprecated with message: will be removed in 1.6, please use Pim\Component\Connector\Writer\File\CsvWriter

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...
11
{
12
}
13