Revision: 249
http://sourceforge.net/p/beeframework/code/249
Author: m_plomer
Date: 2014-10-08 23:47:21 +0000 (Wed, 08 Oct 2014)
Log Message:
-----------
- omissions from previous namespace refactoring
Modified Paths:
--------------
trunk/framework/Bee/Context/Support/ParseState.php
Modified: trunk/framework/Bee/Context/Support/ParseState.php
===================================================================
--- trunk/framework/Bee/Context/Support/ParseState.php 2014-10-08 23:41:59 UTC (rev 248)
+++ trunk/framework/Bee/Context/Support/ParseState.php 2014-10-08 23:47:21 UTC (rev 249)
@@ -36,10 +36,10 @@
/**
* Add a new {@link Bee_Context_Support_ParseStateEntry} to the stack
- * @param Bee_Context_Support_ParseStateEntry $entry
+ * @param ParseState_Entry $entry
* @return void
*/
- public function push(Bee_Context_Support_ParseStateEntry $entry) {
+ public function push(ParseState_Entry $entry) {
array_push($this->state, $entry);
}
@@ -64,7 +64,6 @@
/**
* Marker interface for entries into the {@link ParseState}.
*/
-interface Bee_Context_Support_ParseStateEntry {
+interface ParseState_Entry {
-}
-?>
\ No newline at end of file
+}
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|