Compare commits
No commits in common. "c6d7e572e443799967865b58d4b38742bef91622" and "5a351c107a569f0cbecf859764ffb3edfa4caad9" have entirely different histories.
c6d7e572e4
...
5a351c107a
@ -6,7 +6,8 @@ use App\Entities\CommonEntity;
|
|||||||
|
|
||||||
abstract class CustomerEntity extends CommonEntity
|
abstract class CustomerEntity extends CommonEntity
|
||||||
{
|
{
|
||||||
protected function __construct(array|null $data = null)
|
private ?ClientEntity $_clientEntity = null;
|
||||||
|
public function __construct(array|null $data = null)
|
||||||
{
|
{
|
||||||
parent::__construct($data);
|
parent::__construct($data);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -7,7 +7,7 @@ use App\Entities\Equipment\EquipmentEntity;
|
|||||||
|
|
||||||
abstract class PartEntity extends EquipmentEntity
|
abstract class PartEntity extends EquipmentEntity
|
||||||
{
|
{
|
||||||
protected function __construct(array|null $data = null)
|
public function __construct(array|null $data = null)
|
||||||
{
|
{
|
||||||
parent::__construct($data);
|
parent::__construct($data);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -6,7 +6,7 @@ use App\Helpers\CommonHelper;
|
|||||||
|
|
||||||
abstract class CustomerHelper extends CommonHelper
|
abstract class CustomerHelper extends CommonHelper
|
||||||
{
|
{
|
||||||
protected function __construct()
|
public function __construct()
|
||||||
{
|
{
|
||||||
parent::__construct();
|
parent::__construct();
|
||||||
}
|
}
|
||||||
|
|||||||
@ -6,7 +6,7 @@ use App\Helpers\Equipment\EquipmentHelper;
|
|||||||
|
|
||||||
abstract class PartHelper extends EquipmentHelper
|
abstract class PartHelper extends EquipmentHelper
|
||||||
{
|
{
|
||||||
protected function __construct()
|
public function __construct()
|
||||||
{
|
{
|
||||||
parent::__construct();
|
parent::__construct();
|
||||||
}
|
}
|
||||||
|
|||||||
@ -23,7 +23,7 @@ abstract class CustomerService extends CommonService
|
|||||||
private ?UserService $_userService = null;
|
private ?UserService $_userService = null;
|
||||||
private ?ClientService $_clientService = null;
|
private ?ClientService $_clientService = null;
|
||||||
private $_equipmentService = [];
|
private $_equipmentService = [];
|
||||||
protected function __construct()
|
public function __construct()
|
||||||
{
|
{
|
||||||
parent::__construct();
|
parent::__construct();
|
||||||
$this->addClassName('Customer');
|
$this->addClassName('Customer');
|
||||||
|
|||||||
@ -6,7 +6,7 @@ use App\Services\Equipment\EquipmentService;
|
|||||||
|
|
||||||
abstract class PartService extends EquipmentService
|
abstract class PartService extends EquipmentService
|
||||||
{
|
{
|
||||||
protected function __construct()
|
public function __construct()
|
||||||
{
|
{
|
||||||
parent::__construct();
|
parent::__construct();
|
||||||
$this->addClassName('Part');
|
$this->addClassName('Part');
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user