/** * Initializes the customer item object * * @param \Aimeos\MShop\Common\Item\Address\Iface $address Payment address item object * @param array $values List of attributes that belong to the customer item * @param \Aimeos\MShop\Common\Lists\Item\Iface[] $listItems List of list items * @param \Aimeos\MShop\Common\Item\Iface[] $refItems List of referenced items * @param string $salt Password salt (optional) * @param \Aimeos\MShop\Common\Item\Helper\Password\Iface|null $helper Password encryption helper object */ public function __construct(\Aimeos\MShop\Common\Item\Address\Iface $address, array $values = array(), array $listItems = array(), array $refItems = array(), $salt = '', \Aimeos\MShop\Common\Item\Helper\Password\Iface $helper = null) { parent::__construct($address, $values, $listItems, $refItems, $salt, $helper); $this->values = $values; }
/** * Default constructor used to initialize the stated class instance with its factory. */ public function __construct() { parent::__construct(); //Call the startup factory to initialize this proxy $this->initializeObjectWithFactory(); }
/** * Initializes the object * * @param \Illuminate\Filesystem\FilesystemManager $fsm Laravel file system manager object * @param \Aimeos\MW\Config\Iface $config Configuration object * @param string $tempdir Directory for storing temporary files */ public function __construct(\Illuminate\Filesystem\FilesystemManager $fsm, \Aimeos\MW\Config\Iface $config, $tempdir) { parent::__construct($config); $this->fsm = $fsm; $this->tempdir = $tempdir; }