Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
DataObject.php
Go to the documentation of this file.
1 <?php
8 
11 
13 {
17  protected $booleanUtils;
18 
23  {
24  $this->booleanUtils = $booleanUtils;
25  }
26 
35  public function evaluate(array $data)
36  {
37  $result = ['instance' => $data['value']];
38  if (isset($data['shared'])) {
39  $result['shared'] = $this->booleanUtils->toBoolean($data['shared']);
40  }
41  return $result;
42  }
43 }