. * * For more information, contact Colosa Inc, 2566 Le Jeune Rd., * Coral Gables, FL, 33134, USA, or email info@colosa.com. * */ /** * Phing Class Wrapper * @author Erik Amaru Ortiz */ include_once 'phing/Phing.php'; set_include_path(PATH_THIRDPARTY . 'propel-generator/classes/' . PATH_SEPARATOR . get_include_path()); if (!class_exists('Phing')) { throw new Exception('Fatal Error: Phing is not loaded!'); } class pmPhing extends Phing { function getPhingVersion() { return 'pmPhing Ver 1.0'; } }