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), 2015-2025
* @package Controller
* @subpackage Common
*/
namespace Aimeos\Controller\Jobs\Common\Product\Import\Csv\Cache;
* Attribute cache for CSV imports
*
class Base
{
private \Aimeos\MShop\ContextIface $context;
* Initializes the object
* @param \Aimeos\MShop\ContextIface $context Context object
public function __construct( \Aimeos\MShop\ContextIface $context )
$this->context = $context;
}
* Returns the context object
* @return \Aimeos\MShop\ContextIface Context object
protected function context() : \Aimeos\MShop\ContextIface
return $this->context;