Skip to content

Commit 82d702d

Browse files
committed
addressed php coding standard issues
1 parent 57f3499 commit 82d702d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/code/Meta/Catalog/Setup/MetaCatalogAttributes.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public function execute(): array
2222
'type' => 'varchar',
2323
'label' => 'Google Product Category',
2424
'input' => 'select',
25-
'source' => Meta\Catalog\Model\Config\Source\Product\GoogleProductCategory::class,
25+
'source' => \Meta\Catalog\Model\Config\Source\Product\GoogleProductCategory::class,
2626
'required' => false,
2727
'sort_order' => 10,
2828
'global' => ScopedAttributeInterface::SCOPE_GLOBAL,
@@ -37,7 +37,7 @@ public function execute(): array
3737
'type' => 'int',
3838
'label' => 'Sync to Facebook Catalog',
3939
'input' => 'boolean',
40-
'source' => Magento\Eav\Model\Entity\Attribute\Source\Boolean::class,
40+
'source' => \Magento\Eav\Model\Entity\Attribute\Source\Boolean::class,
4141
'visible' => true,
4242
'default' => "1",
4343
'required' => false,

0 commit comments

Comments
 (0)