1
0
mirror of synced 2025-03-04 14:53:13 +03:00

21 lines
327 B
PHP
Raw Normal View History

<?php
IncludeModuleLangFile(__FILE__);
interface RetailcrmBuilderInterface
{
/**
* Set data array customerHistory
*
* @param array $dataCrm
*
* @return RetailcrmBuilderInterface
*/
public function setDataCrm($dataCrm);
/**
* Build result
*/
public function build();
}