Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Product.php
Go to the documentation of this file.
1 <?php
7 
9 
14 abstract class Product extends \Magento\Backend\App\Action
15 {
21  const ADMIN_RESOURCE = 'Magento_Catalog::products';
22 
26  protected $productBuilder;
27 
32  public function __construct(
33  \Magento\Backend\App\Action\Context $context,
34  Product\Builder $productBuilder
35  ) {
36  $this->productBuilder = $productBuilder;
37  parent::__construct($context);
38  }
39 }
__construct(\Magento\Backend\App\Action\Context $context, Product\Builder $productBuilder)
Definition: Product.php:32