Файл: concrete5.7.5.6/concrete/src/Backup/ContentImporter/ValueInspector/Item/AbstractItem.php
Строк: 30
<?php
namespace ConcreteCoreBackupContentImporterValueInspectorItem;
use ConcreteCoreBackupContentImporterValueInspectorItemItemInterface;
abstract class AbstractItem implements ItemInterface
{
protected $reference;
public function getReference()
{
return $this->reference;
}
public function getContentValue()
{
return $this->getFieldValue();
}
public function __construct($reference)
{
$this->reference = $reference;
}
}