Revision: 213
http://sourceforge.net/p/beeframework/code/213
Author: m_plomer
Date: 2014-09-11 01:39:50 +0000 (Thu, 11 Sep 2014)
Log Message:
-----------
- D2 EnumType: fixed compatibility with early 5.3 version (which exhibit quirks in reflected access to late statically bound methods)
Modified Paths:
--------------
trunk/framework/Bee/Persistence/IOrderAndLimitHolder.php
trunk/framework/Bee/Persistence/IRestrictionHolder.php
Modified: trunk/framework/Bee/Persistence/IOrderAndLimitHolder.php
===================================================================
--- trunk/framework/Bee/Persistence/IOrderAndLimitHolder.php 2014-09-10 21:32:02 UTC (rev 212)
+++ trunk/framework/Bee/Persistence/IOrderAndLimitHolder.php 2014-09-11 01:39:50 UTC (rev 213)
@@ -1,4 +1,5 @@
<?php
+namespace Bee\Persistence;
/*
* Copyright 2008-2014 the original author or authors.
*
@@ -15,7 +16,11 @@
* limitations under the License.
*/
-interface Bee_Persistence_IOrderAndLimitHolder {
+/**
+ * Interface IOrderAndLimitHolder
+ * @package Bee\Persistence
+ */
+interface IOrderAndLimitHolder {
/**
* @return array
Modified: trunk/framework/Bee/Persistence/IRestrictionHolder.php
===================================================================
--- trunk/framework/Bee/Persistence/IRestrictionHolder.php 2014-09-10 21:32:02 UTC (rev 212)
+++ trunk/framework/Bee/Persistence/IRestrictionHolder.php 2014-09-11 01:39:50 UTC (rev 213)
@@ -1,4 +1,5 @@
<?php
+namespace Bee\Persistence;
/*
* Copyright 2008-2014 the original author or authors.
*
@@ -15,7 +16,11 @@
* limitations under the License.
*/
-interface Bee_Persistence_IRestrictionHolder {
+/**
+ * Interface IRestrictionHolder
+ * @package Bee\Persistence
+ */
+interface IRestrictionHolder {
/**
* @return array
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|