Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
product_associated_rollback.php
Go to the documentation of this file.
1 <?php
7 
10 
11 $registry->unregister('isSecureArea');
12 $registry->register('isSecureArea', true);
13 
15  \Magento\Catalog\Model\ProductRepository::class
16 );
17 try {
18  $product = $repository->get('simple', false, null, true);
19  $product->delete();
20 } catch (NoSuchEntityException $e) {
21  //Entity already deleted
22 }
23 
24 $registry->unregister('isSecureArea');
25 $registry->register('isSecureArea', false);