Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
FieldInterface.php
Go to the documentation of this file.
1 <?php
8 
15 interface FieldInterface
16 {
17  const TYPE_FLAT = 1;
18  const TYPE_FULLTEXT = 2;
19 
25  public function getType();
26 
32  public function getAttributeId();
33 
39  public function getColumn();
40 }