Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
SelectBuilderFactory.php
Go to the documentation of this file.
1 <?php
7 
9 
14 {
20  private $objectManager;
21 
27  public function __construct(
28  ObjectManagerInterface $objectManager
29  ) {
30  $this->objectManager = $objectManager;
31  }
32 
39  public function create(array $data = [])
40  {
41  return $this->objectManager->create(SelectBuilder::class, $data);
42  }
43 }
$objectManager
Definition: bootstrap.php:17
__construct(ObjectManagerInterface $objectManager)