Browse code

Updates

Benjamin Roth authored on01/06/2023 23:39:31
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,55 @@
1
+<?php
2
+
3
+declare(strict_types=1);
4
+
5
+/*
6
+ * This file is part of dacore bundle for Contao.
7
+ *
8
+ * (c) Benjamin Roth
9
+ *
10
+ * @license commercial
11
+ */
12
+
13
+namespace vossmedien\DacoreBundle\Model;
14
+
15
+use Contao\Model;
16
+use Contao\Model\Collection;
17
+
18
+/**
19
+ * Reads and writes image sizes
20
+ *
21
+ * @property string|integer      $id
22
+ * @property string|integer      $tstamp
23
+ * @property string              $title
24
+ * @property string              $modal_title
25
+ * @property string|integer      $delay
26
+ * @property string|boolean      $show_once
27
+ * @property string|integer      $start
28
+ * @property string|integer      $stop
29
+ *
30
+ * @method static VrApiUserCounterModel|null findById($id, array $opt=array())
31
+ * @method static VrApiUserCounterModel|null findByPk($id, array $opt=array())
32
+ * @method static VrApiUserCounterModel|null findOneBy($col, $val, array $opt=array())
33
+ * @method static VrApiUserCounterModel|null findOneByTstamp($val, array $opt=array())
34
+ * @method static VrApiUserCounterModel|null findOneByCreated($val, array $opt=array())
35
+ *
36
+ * @method static Collection|VrApiUserCounterModel[]|VrApiUserCounterModel|null findByTstamp($val, array $opt=array())
37
+ * @method static Collection|VrApiUserCounterModel[]|VrApiUserCounterModel|null findByCreated($val, array $opt=array())
38
+ * @method static Collection|VrApiUserCounterModel[]|VrApiUserCounterModel|null findMultipleByIds($val, array $opt=array())
39
+ * @method static Collection|VrApiUserCounterModel[]|VrApiUserCounterModel|null findBy($col, $val, array $opt=array())
40
+ * @method static Collection|VrApiUserCounterModel[]|VrApiUserCounterModel|null findAll(array $opt=array())
41
+ *
42
+ * @method static integer countById($id, array $opt=array())
43
+ * @method static integer countByTstamp($val, array $opt=array())
44
+ * @method static integer countByCreated($val, array $opt=array())
45
+ */
46
+class VrApiUserCounterModel extends Model
47
+{
48
+	/**
49
+	 * Table name
50
+	 * @var string
51
+	 */
52
+	protected static $strTable = 'tl_vr_api_user_counter';
53
+}
54
+
55
+class_alias(VrApiUserCounterModel::class, 'VrApiUserCounterModel');