change test bncodes with the one already given

This commit is contained in:
David Remer 2020-07-16 09:33:14 +03:00
parent 68866f8ef2
commit 3a24c28192

View file

@ -339,17 +339,16 @@ class SmartButton implements SmartButtonInterface
/**
* BN Codes
*
* @ToDo Replace with the real codes once given.
* @return array
*/
private function bnCodes(): array
{
return [
'checkout' => 'Woo_PPCP_checkout',
'cart' => 'Woo_PPCP_cart',
'mini-cart' => 'Woo_PPCP_mini-cart',
'product' => 'Woo_PPCP_product',
'checkout' => 'Woo_PPCP',
'cart' => 'Woo_PPCP',
'mini-cart' => 'Woo_PPCP',
'product' => 'Woo_PPCP',
];
}