Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
SourceCarrierLink.php
Go to the documentation of this file.
1 <?php
6 declare(strict_types=1);
7 
9 
11 
17 {
21  const TABLE_NAME_SOURCE_CARRIER_LINK = 'inventory_source_carrier_link';
22  const ID_FIELD_NAME = 'link_id';
28  protected function _construct()
29  {
30  $this->_init(self::TABLE_NAME_SOURCE_CARRIER_LINK, self::ID_FIELD_NAME);
31  }
32 }