summaryrefslogtreecommitdiff
path: root/framework/Collections
diff options
context:
space:
mode:
authorjavalizard <>2010-04-12 00:37:54 +0000
committerjavalizard <>2010-04-12 00:37:54 +0000
commit4eaf5403f98a7c9cb01bfb53e020326db0ca9fc2 (patch)
treefd5b039aa6b6c47ee9c16d92e96b7169226e9ab6 /framework/Collections
parentd4f75d39c722e695679fa9fa10bfa96237d45745 (diff)
added @versions to the TList and TPriorityList
Diffstat (limited to 'framework/Collections')
-rw-r--r--framework/Collections/TList.php2
-rw-r--r--framework/Collections/TPriorityList.php2
2 files changed, 3 insertions, 1 deletions
diff --git a/framework/Collections/TList.php b/framework/Collections/TList.php
index 6ce20290..bef39648 100644
--- a/framework/Collections/TList.php
+++ b/framework/Collections/TList.php
@@ -248,6 +248,7 @@ class TList extends TComponent implements IteratorAggregate,ArrayAccess,Countabl
* @param mixed the base item which will be pushed back by the second parameter
* @param mixed the item
* @return object $this. null if the $baseitem is not found
+ * @since 3.2a
*/
public function insertBefore($baseitem, $item)
{
@@ -263,6 +264,7 @@ class TList extends TComponent implements IteratorAggregate,ArrayAccess,Countabl
* @param mixed the base item which comes before the second parameter when added to the list
* @param mixed the item
* @return object $this. null if the $baseitem is not found
+ * @since 3.2a
*/
public function insertAfter($baseitem, $item)
{
diff --git a/framework/Collections/TPriorityList.php b/framework/Collections/TPriorityList.php
index 57e27bb0..e924d8ef 100644
--- a/framework/Collections/TPriorityList.php
+++ b/framework/Collections/TPriorityList.php
@@ -34,7 +34,7 @@
* @author Brad Anderson <javalizard@gmail.com>
* @version $Id: TPriorityList.php 2541 2008-10-21 15:05:13Z javalizard $
* @package System.Collections
- * @since 3.0
+ * @since 3.2a
*/
class TPriorityList extends TList
{