Author: romanb
Date: 2008-09-12 12:00:26 +0100 (Fri, 12 Sep 2008)
New Revision: 4934
Added:
trunk/lib/Doctrine/Common/Configurable.php
Removed:
trunk/lib/Doctrine/Configurable.php
Modified:
trunk/lib/Doctrine/ClassMetadata.php
trunk/lib/Doctrine/Manager.php
Log:
Modified: trunk/lib/Doctrine/ClassMetadata.php
===================================================================
--- trunk/lib/Doctrine/ClassMetadata.php 2008-09-12 10:58:33 UTC (rev
4933)
+++ trunk/lib/Doctrine/ClassMetadata.php 2008-09-12 11:00:26 UTC (rev
4934)
@@ -32,7 +32,7 @@
* @since 2.0
* @todo Rename to ClassDescriptor.
*/
-class Doctrine_ClassMetadata implements Doctrine_Configurable, Serializable
+class Doctrine_ClassMetadata implements Doctrine_Common_Configurable,
Serializable
{
/* The inheritance mapping types */
/**
Added: trunk/lib/Doctrine/Common/Configurable.php
===================================================================
--- trunk/lib/Doctrine/Common/Configurable.php (rev 0)
+++ trunk/lib/Doctrine/Common/Configurable.php 2008-09-12 11:00:26 UTC (rev
4934)
@@ -0,0 +1,39 @@
+<?php
+/*
+ * $Id: Configurable.php 4523 2008-06-15 15:56:28Z romanb $
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+ * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * This software consists of voluntary contributions made by many individuals
+ * and is licensed under the LGPL. For more information, see
+ * <http://www.phpdoctrine.org>.
+ */
+
+#namespace Doctrine::Common;
+
+/**
+ * Doctrine_Configurable
+ *
+ * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
+ * @link www.phpdoctrine.org
+ * @since 2.0
+ * @version $Revision: 4523 $
+ * @author Konsta Vesterinen <[EMAIL PROTECTED]>
+ * @author Roman Borschel <[EMAIL PROTECTED]>
+ */
+interface Doctrine_Common_Configurable
+{
+ public function getAttribute($name);
+ public function setAttribute($name, $value);
+ public function hasAttribute($name);
+}
\ No newline at end of file
Deleted: trunk/lib/Doctrine/Configurable.php
===================================================================
--- trunk/lib/Doctrine/Configurable.php 2008-09-12 10:58:33 UTC (rev 4933)
+++ trunk/lib/Doctrine/Configurable.php 2008-09-12 11:00:26 UTC (rev 4934)
@@ -1,39 +0,0 @@
-<?php
-/*
- * $Id$
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- * This software consists of voluntary contributions made by many individuals
- * and is licensed under the LGPL. For more information, see
- * <http://www.phpdoctrine.org>.
- */
-
-#namespace Doctrine::Common;
-
-/**
- * Doctrine_Configurable
- *
- * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
- * @link www.phpdoctrine.org
- * @since 2.0
- * @version $Revision$
- * @author Konsta Vesterinen <[EMAIL PROTECTED]>
- * @author Roman Borschel <[EMAIL PROTECTED]>
- */
-interface Doctrine_Configurable
-{
- public function getAttribute($name);
- public function setAttribute($name, $value);
- public function hasAttribute($name);
-}
\ No newline at end of file
Modified: trunk/lib/Doctrine/Manager.php
===================================================================
--- trunk/lib/Doctrine/Manager.php 2008-09-12 10:58:33 UTC (rev 4933)
+++ trunk/lib/Doctrine/Manager.php 2008-09-12 11:00:26 UTC (rev 4934)
@@ -33,7 +33,7 @@
* @author Konsta Vesterinen <[EMAIL PROTECTED]>
* @todo Remove.
*/
-class Doctrine_Manager implements Doctrine_Configurable, Countable,
IteratorAggregate
+class Doctrine_Manager implements Doctrine_Common_Configurable, Countable,
IteratorAggregate
{
/**
* @var array $connections an array containing all the opened
connections
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"doctrine-svn" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.co.uk/group/doctrine-svn?hl=en-GB
-~----------~----~----~----~------~----~------~--~---