Skip to content

Instantly share code, notes, and snippets.

@jlnarvaez
Last active July 15, 2022 07:24
Show Gist options
  • Save jlnarvaez/a23a277b3b61dd5cfc0766cdab13baee to your computer and use it in GitHub Desktop.
Save jlnarvaez/a23a277b3b61dd5cfc0766cdab13baee to your computer and use it in GitHub Desktop.
Magento 2 Snippets Object Manager
<?php
$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
// PRODUCT
$product = $objectManager->create('\Magento\Catalog\Model\ProductRepository')->get(/* SKU Product */);
// ORDER
$order = $objectManager->create('\Magento\Sales\Model\OrderRepository')->get(/*ID Order*/);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment