Changeset 7182
- Timestamp:
- 01/25/08 13:32:16 (10 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1.1/lib/plugins/sfPropelPlugin/lib/task/sfPropelBaseTask.class.php
r6807 r7182 198 198 $args[] = 'phing.listener.AnsiColorLogger'; 199 199 } 200 200 201 201 $args[] = $taskName; 202 202 … … 224 224 return 'sfPhing'; 225 225 } 226 227 public static function shutdown($exitcode = 0) 228 { 229 self::getTimer()->stop(); 230 231 throw new Exception(sprintf('Problem executing Phing task (%s).', $exitcode)); 232 } 226 233 }