diff --git a/Mage/Command/AbstractCommand.php b/Mage/Command/AbstractCommand.php index 18d045a..0d45d5f 100644 --- a/Mage/Command/AbstractCommand.php +++ b/Mage/Command/AbstractCommand.php @@ -116,7 +116,7 @@ abstract class AbstractCommand */ public function addUsageExample($snippet, $description = '') { - array_push($this->usageExamples, [$snippet, $description]); + array_push($this->usageExamples, array($snippet, $description)); return $this; }