Changeset 4114
- Timestamp:
- 03/24/08 20:10:40 (2 years ago)
- Location:
- branches/0.10/lib/Doctrine
- Files:
-
- 3 added
- 1 removed
- 3 modified
-
Connection.php (modified) (1 diff)
-
Connection/Db2.php (modified) (1 diff)
-
Parser/Spyc (added)
-
Parser/Spyc.php (added)
-
Parser/spyc.php (deleted)
-
Parser/Spyc/YamlNode.php (added)
-
Parser/Yml.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/0.10/lib/Doctrine/Connection.php
r4061 r4114 1505 1505 public function modifyLimitQuery($query, $limit = false, $offset = false, $isManip = false) 1506 1506 { 1507 return $query;1507 return $query; 1508 1508 } 1509 1509 -
branches/0.10/lib/Doctrine/Connection/Db2.php
r3884 r4114 41 41 * @return string the modified query 42 42 */ 43 public function modifyLimitQuery($query, $limit , $offset)43 public function modifyLimitQuery($query, $limit = false, $offset = false, $isManip = false) 44 44 { 45 45 if ($limit <= 0) -
branches/0.10/lib/Doctrine/Parser/Yml.php
r3884 r4114 1 1 <?php 2 require_once('spyc.php');3 4 2 /* 5 3 * $Id: Yml.php 1080 2007-02-10 18:17:08Z jwage $ … … 47 45 public function dumpData($array, $path = null) 48 46 { 49 $spyc = new Doctrine_ Spyc();47 $spyc = new Doctrine_Parser_Spyc(); 50 48 51 49 $data = $spyc->dump($array, false, false); … … 66 64 $contents = $this->doLoad($path); 67 65 68 $spyc = new Doctrine_ Spyc();66 $spyc = new Doctrine_Parser_Spyc(); 69 67 70 68 $array = $spyc->load($contents);