Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
ExtensibleSample.php
Go to the documentation of this file.
1 <?php
8 
10 
14 class ExtensibleSample extends AbstractExtensibleModel implements
16 {
20  public function getItems()
21  {
22  $this->getData('items');
23  }
24 
28  public function getName()
29  {
30  $this->getData('name');
31  }
32 
36  public function getCount()
37  {
38  $this->getData('count');
39  }
40 
44  public function getCreatedAt()
45  {
46  $this->getData('created_at');
47  }
48 }