Added namespace backslash

This commit is contained in:
Rich Morgan 2015-01-05 15:59:08 -05:00
parent ff4ab044d5
commit 4f1f20dde2
1 changed files with 2 additions and 2 deletions

View File

@ -18,8 +18,8 @@ class Bitpay_Core_Model_Network
public function toOptionArray()
{
return array(
array('value' => self::NETWORK_LIVENET, 'label' => Mage::helper('bitpay')->__(ucwords(self::NETWORK_LIVENET))),
array('value' => self::NETWORK_TESTNET, 'label' => Mage::helper('bitpay')->__(ucwords(self::NETWORK_TESTNET))),
array('value' => self::NETWORK_LIVENET, 'label' => \Mage::helper('bitpay')->__(ucwords(self::NETWORK_LIVENET))),
array('value' => self::NETWORK_TESTNET, 'label' => \Mage::helper('bitpay')->__(ucwords(self::NETWORK_TESTNET))),
);
}
}