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 ab9212b commit d7aaad8Copy full SHA for d7aaad8
src/Doctrine/Orm/Route.php
@@ -22,6 +22,10 @@
22
class Route extends RouteModel
23
{
24
protected $name;
25
+
26
+ /**
27
+ * @var int sort order of this route when it is returned by the route provider
28
+ */
29
protected $position = 0;
30
31
/**
@@ -49,7 +53,7 @@ public function getName()
49
53
}
50
54
51
55
52
- * Sets the position.
56
+ * Set the sort order of this route.
57
*
58
* @param int $position
59
@@ -63,7 +67,7 @@ public function setPosition($position)
63
67
64
68
65
69
66
- * Gets the position.
70
+ * Get the sort order of this route.
71
72
* @return int
73
*/
0 commit comments