Tweaks and fixes.

This commit is contained in:
Andrés Montañez
2014-06-12 16:17:31 -03:00
parent a97d172a6d
commit 4e01cc3517
5 changed files with 18 additions and 12 deletions
+3 -2
View File
@@ -28,10 +28,11 @@ class Factory
* Gets an instance of a Task.
*
* @param string|array $taskData
* @param Mage\Config $taskConfig
* @param \Mage\Config $taskConfig
* @param boolean $inRollback
* @param string $stage
* @return \Mage\Task\AbstractTask
* @throws \Exception|\Mage\Task\ErrorWithMessageException
*/
public static function get($taskData, Config $taskConfig, $inRollback = false, $stage = null)
{
@@ -44,7 +45,7 @@ class Factory
}
$instance = null;
$taskName = ucwords(str_replace('-', ' ', $taskName));
$taskName = ucwords(str_replace('-', ' ', $taskName));
$taskName = str_replace(' ', '', $taskName);
if (strpos($taskName, '/') === false) {