diff --git a/workflow/engine/classes/class.pmPhing.php b/workflow/engine/classes/class.pmPhing.php index 5d75ba22f..4f482e27a 100755 --- a/workflow/engine/classes/class.pmPhing.php +++ b/workflow/engine/classes/class.pmPhing.php @@ -1,7 +1,8 @@ . + * along with this program. If not, see . * * For more information, contact Colosa Inc, 2566 Le Jeune Rd., * Coral Gables, FL, 33134, USA, or email info@colosa.com. @@ -26,20 +27,23 @@ /** * 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()); +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!'); +if (! class_exists( 'Phing' )) { + throw new Exception( 'Fatal Error: Phing is not loaded!' ); } class pmPhing extends Phing { - function getPhingVersion() - { - return 'pmPhing Ver 1.0'; - } -} \ No newline at end of file + + public function getPhingVersion () + { + return 'pmPhing Ver 1.0'; + } +} +