/home/sharedstore/public_html/prestashop.sharedstore.ma/src/Core/Group/Provider
NameSizeModeActions
DefaultGroup.php17240644editdlrm
DefaultGroups.php25940644editdlrm
DefaultGroupsProviderInterface.php13340644editdlrm
Edit: /home/sharedstore/public_html/prestashop.sharedstore.ma/src/Core/Group/Provider/DefaultGroup.php (1724B)
* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ namespace PrestaShop\PrestaShop\Core\Group\Provider; /** * Stores information for default group */ class DefaultGroup { /** * @var int */ private $groupId; /** * @var string */ private $name; /** * @param int $groupId * @param string $name */ public function __construct($groupId, $name) { $this->groupId = $groupId; $this->name = $name; } /** * @return int */ public function getId() { return $this->groupId; } /** * @return string */ public function getName() { return $this->name; } }