Skip to content

Commit

Permalink
Step 3.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
CNanninga committed Aug 12, 2022
1 parent 7bbd0aa commit 09c85f3
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/example-orderexport/Model/ResourceModel/OrderExportDetails.php
@@ -0,0 +1,18 @@
<?php
declare(strict_types=1);
/**
* @by SwiftOtter, Inc.
* @website https://swiftotter.com
**/

namespace SwiftOtter\OrderExport\Model\ResourceModel;

use Magento\Framework\Model\ResourceModel\Db\AbstractDb;

class OrderExportDetails extends AbstractDb
{
protected function _construct()
{
$this->_init('sales_order_export', 'id');
}
}

0 comments on commit 09c85f3

Please sign in to comment.