custom/plugins/KplngiProductOrder/src/Position/DisplayInStorefront.php line 7

Open in your IDE?
  1. <?php
  2. namespace Kplngi\ProductOrder\Position;
  3. use Shopware\Core\Framework\Struct\Struct;
  4. class DisplayInStorefront extends Struct
  5. {
  6.     /**
  7.      * @var bool
  8.      */
  9.     protected $displaySorting;
  10.     public function getDisplaySorting(): bool
  11.     {
  12.         return $this->displaySorting;
  13.     }
  14. }