Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Nullable.php
Go to the documentation of this file.
1 <?php
8 
12 
19 {
24  public function toDefinition(ElementInterface $column)
25  {
26  if ($column instanceof ColumnNullableAwareInterface) {
27  return $column->isNullable() ? 'NULL' : 'NOT NULL';
28  }
29 
30  return '';
31  }
32 
36  public function fromDefinition(array $data)
37  {
38  return $data;
39  }
40 }