Skip to content

Commit

Permalink
no message
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitrii-fediuk committed Dec 13, 2017
1 parent 6feba96 commit 821e9a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ConfigProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ final class ConfigProvider extends \Df\StripeClone\ConfigProvider {
*/
protected function config() {$m = $this->m(); $s = $this->s(); return [
'boleto' => [
'enable' => $s->v('boleto/enable') && $s->applicableForQuote('boleto')
'enable' => $s->b('boleto/enable') && $s->applicableForQuote('boleto')
,'title' => $m->optionTitle('boleto')
]
,'card' => [
'calendar' => df_asset_create('Magento_Theme::calendar.png')->getUrl()
,'cards' => parent::cards()
,'enable' => $s->v('card/enable') && $s->applicableForQuote('card')
,'enable' => $s->b('card/enable') && $s->applicableForQuote('card')
,'installments' => $s->installments()
,'prefill' => $s->prefill()
// 2017-07-22
Expand Down

0 comments on commit 821e9a7

Please sign in to comment.