Major Refactoring

This commit is contained in:
Netkas 2023-02-14 17:35:16 -05:00
parent 3de87df2d9
commit 54a8a59ee8
83 changed files with 892 additions and 918 deletions

View file

@ -96,10 +96,10 @@
{
$object = new self();
$object->point = $data['point'];
$object->x_shift = $data['x_shift'];
$object->y_shift = $data['y_shift'];
$object->scale = $data['scale'];
$object->point = $data['point'] ?? null;
$object->x_shift = $data['x_shift'] ?? null;
$object->y_shift = $data['y_shift'] ?? null;
$object->scale = $data['scale'] ?? null;
return $object;
}