Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
BoolResult.php
Go to the documentation of this file.
1 <?php
7 
9 
16 class BoolResult implements ResultInterface
17 {
21  private $result;
22 
28  public function __construct($result = true)
29  {
30  $this->result = $result;
31  }
32 
38  public function get()
39  {
40  return (bool) $this->result;
41  }
42 }