Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Log.php
Go to the documentation of this file.
1 <?php
7 
9 
13 class Log extends DataObject
14 {
20  public function getId()
21  {
22  return $this->getData('id');
23  }
24 
30  public function getViewerId()
31  {
32  return $this->getData('viewer_id');
33  }
34 
40  public function getLastViewVersion()
41  {
42  return $this->getData('last_view_version');
43  }
44 }
getData($key='', $index=null)
Definition: DataObject.php:119