Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
ArrayResult.php
Go to the documentation of this file.
1 <?php
7 
9 
16 class ArrayResult implements ResultInterface
17 {
21  private $array;
22 
26  public function __construct(array $array = [])
27  {
28  $this->array = $array;
29  }
30 
36  public function get()
37  {
38  return $this->array;
39  }
40 }