* @copyright 2021 DIGITAL RETAIL TECHNOLOGIES SL * @license https://opensource.org/licenses/MIT The MIT License * * Don't forget to prefix your containers with your own identifier * to avoid any conflicts with others containers. */ interface RetailcrmBuilderInterface { /** * Get result build * * @return mixed */ public function getData(); /** * Set data array customerHistory * * @param array $dataCrm * * @return RetailcrmBuilderInterface */ public function setDataCrm($dataCrm); /** * Build result * * @return \RetailcrmBuilderInterface */ public function build(); /** * Create new object * * @return mixed */ public function reset(); }