Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
PatchApplierFactory.php
Go to the documentation of this file.
1 <?php
8 
10 
15 {
19  private $objectManager;
20 
24  public function __construct(ObjectManagerInterface $objectManager)
25  {
26  $this->objectManager = $objectManager;
27  }
28 
35  public function create($arguments = [])
36  {
37  return $this->objectManager->create(\Magento\Framework\Setup\Patch\PatchApplier::class, $arguments);
38  }
39 }
$objectManager
Definition: bootstrap.php:17
__construct(ObjectManagerInterface $objectManager)
$arguments