We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b475545 commit 1046743Copy full SHA for 1046743
src/DataMapper.php
@@ -18,11 +18,6 @@
18
*/
19
abstract class DataMapper extends ModelAbstract
20
{
21
- /**
22
- * @var string
23
- */
24
- protected $order = '';
25
-
26
/**
27
* DataMapper constructor
28
src/ModelAbstract.php
@@ -72,6 +72,12 @@ abstract class ModelAbstract extends ModelContract
72
73
protected $hashKey = '_id';
74
75
+ /**
76
+ * Used to determine the order of reads
77
+ * @var string
78
+ */
79
+ protected $order = '';
80
+
81
82
* Fields to persist the creation object
83
* @var array
0 commit comments