| 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 |
+} |