Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
report_shipping.php
Go to the documentation of this file.
1 <?php
7 // refresh report statistics
10  \Magento\Sales\Model\ResourceModel\Report\Shipping::class
11 );
12 $reportResource->beginTransaction();
13 // prevent table truncation by incrementing the transaction nesting level counter
14 try {
15  $reportResource->aggregate();
16  $reportResource->commit();
17 } catch (\Exception $e) {
18  $reportResource->rollBack();
19  throw $e;
20 }
$reportResource