vendor/store.shopware.com/acrissuggestedproductscs/src/Components/TabOrderStruct.php line 7

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. namespace Acris\SuggestedProducts\Components;
  3. use Shopware\Core\Framework\Struct\Struct;
  4. class TabOrderStruct extends Struct
  5. {
  6.     public const EXTENSION_KEY 'acris_suggested_products_tab_order_struct';
  7.     private array $tabs;
  8.     public function __construct(array $tabs)
  9.     {
  10.         $this->tabs $tabs;
  11.     }
  12.     /**
  13.      * @return array
  14.      */
  15.     public function getTabs(): array
  16.     {
  17.         return $this->tabs;
  18.     }
  19.     /**
  20.      * @param array $tabs
  21.      */
  22.     public function setTabs(array $tabs): void
  23.     {
  24.         $this->tabs $tabs;
  25.     }
  26. }