for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Oliverde8\Component\PhpEtl\Item;
/**
* Class DataItem
*
* @author de Cramer Oliver<[email protected]>
* @copyright 2018 Oliverde8
* @package Oliverde8\Component\PhpEtl\Item
*/
class DataItem implements DataItemInterface
{
* @var mixed
protected $data;
* DataItem constructor.
* @param mixed $data
public function __construct($data)
$this->data = $data;
}
public function getData()
return $this->data;