Browse code

Progress

Benjamin Roth authored on21/02/2023 19:42:19
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,18 @@
1
+<?php
2
+
3
+declare(strict_types=1);
4
+
5
+namespace App\Model;
6
+
7
+use Contao\Model;
8
+
9
+/**
10
+ * add properties for IDE support
11
+ *
12
+ * @property string $hash
13
+ */
14
+class IsoProductMonthModel extends Model
15
+{
16
+    protected static $strTable = 'tl_iso_product_month';
17
+
18
+}