Revision: 505
http://gemstracker.svn.sourceforge.net/gemstracker/?rev=505&view=rev
Author: michieltcs
Date: 2012-02-21 15:08:06 +0000 (Tue, 21 Feb 2012)
Log Message:
-----------
Fix fatal error: Can't inherit abstract function Gems_Task_TaskInterface::execute() (see http://goo.gl/lriCn for details)
Modified Paths:
--------------
trunk/library/classes/Gems/Task/TaskAbstract.php
Modified: trunk/library/classes/Gems/Task/TaskAbstract.php
===================================================================
--- trunk/library/classes/Gems/Task/TaskAbstract.php 2012-02-21 15:06:33 UTC (rev 504)
+++ trunk/library/classes/Gems/Task/TaskAbstract.php 2012-02-21 15:08:06 UTC (rev 505)
@@ -72,5 +72,8 @@
* The parameters should be optional and failing to provide them should be handled by
* the task
*/
- abstract public function execute();
+ public function execute()
+ {
+
+ }
}
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|