for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @license LGPLv3, http://opensource.org/licenses/LGPL-3.0
* @copyright Aimeos (aimeos.org), 2018-2020
* @package Controller
* @subpackage Common
*/
namespace Aimeos\Controller\Common\Supplier\Import\Csv\Cache;
* Attribute cache for CSV imports
*
class Base
{
private $context;
* Initializes the object
* @param \Aimeos\MShop\Context\Item\Iface $context Context object
public function __construct( \Aimeos\MShop\Context\Item\Iface $context )
$this->context = $context;
}
* Returns the context object
* @return \Aimeos\MShop\Context\Item\Iface Context object
protected function getContext(): \Aimeos\MShop\Context\Item\Iface
return $this->context;