Finalisation du module PurgeFakeCustomer

This commit is contained in:
2021-01-13 17:11:31 +01:00
parent 4845682d59
commit b704cbdaf6
5 changed files with 1406 additions and 18121 deletions

View File

@@ -20,6 +20,9 @@ class FakeCustomerEvent extends ActionEvent
/** @var int */
protected $deletedCount = 0;
/** @var string */
protected $deletedList = '';
/**
* FakeCustomerEvent constructor.
*/
@@ -80,4 +83,22 @@ class FakeCustomerEvent extends ActionEvent
$this->deletedCount = $deletedCount;
return $this;
}
/**
* @return string
*/
public function getDeletedList()
{
return $this->deletedList;
}
/**
* @param string $deletedList
* @return $this
*/
public function setDeletedList($deletedList)
{
$this->deletedList = $deletedList;
return $this;
}
}