This commit is contained in:
2023-10-02 23:10:49 +03:00
commit c6cb488379
255 changed files with 18731 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
<?php
namespace Lucent\Record;
use Lucent\ArrayContainer;
class RecordData extends ArrayContainer
{
public function merge(RecordData $data): RecordData
{
$this->data = array_merge($this->data, $data->toArray());
return $this;
}
public function toArray(): array
{
return $this->data;
}
}