We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0fd3790 commit ffc5a0dCopy full SHA for ffc5a0d
1 file changed
src/Kernel/OrmInterface.php
@@ -16,6 +16,12 @@
16
17
interface OrmInterface
18
{
19
+ /**
20
+ * @param array $data
21
+ * @return void
22
+ */
23
+ function __construct($data = []);
24
+
25
/**
26
* @param string $name
27
* @param string $value
@@ -28,14 +34,6 @@ function __set($name, $value);
28
34
*/
29
35
function __get($name);
30
36
31
- /**
32
- * Init database object
33
- *
- * @param array $data
- * @return void
- */
37
- function init($data = []);
38
-
39
40
* @param OrmQueryInterface $data
41
* @return mixed
0 commit comments