![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-reports/Model/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Model; /** * Report Flag Model * * @author Magento Core Team <[email protected]> * @api * @since 100.0.2 */ class Flag extends \Magento\Framework\Flag { const REPORT_ORDER_FLAG_CODE = 'report_order_aggregated'; const REPORT_TAX_FLAG_CODE = 'report_tax_aggregated'; const REPORT_SHIPPING_FLAG_CODE = 'report_shipping_aggregated'; const REPORT_INVOICE_FLAG_CODE = 'report_invoiced_aggregated'; const REPORT_REFUNDED_FLAG_CODE = 'report_refunded_aggregated'; const REPORT_COUPONS_FLAG_CODE = 'report_coupons_aggregated'; const REPORT_BESTSELLERS_FLAG_CODE = 'report_bestsellers_aggregated'; const REPORT_PRODUCT_VIEWED_FLAG_CODE = 'report_product_viewed_aggregated'; /** * Setter for flag code * @codeCoverageIgnore * * @param string $code * @return $this */ public function setReportFlagCode($code) { $this->_flagCode = $code; return $this; } }