first commit

This commit is contained in:
Daan Meijer
2025-08-20 11:36:43 +02:00
commit 91ad91473c
17 changed files with 1182 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
<?php
namespace CampingCareWidget\Models;
class Model
{
public function __construct(array $data){
foreach ($data as $key => $value) {
$this->$key = $value;
}
}
}