Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Ascii.php
Go to the documentation of this file.
1 <?php
25 #require_once 'Zend/Text/Table/Decorator/Interface.php';
26 
37 {
43  public function getTopLeft()
44  {
45  return '+';
46  }
47 
53  public function getTopRight()
54  {
55  return '+';
56  }
57 
63  public function getBottomLeft()
64  {
65  return '+';
66  }
67 
73  public function getBottomRight()
74  {
75  return '+';
76  }
77 
83  public function getVertical()
84  {
85  return '|';
86  }
87 
93  public function getHorizontal()
94  {
95  return '-';
96  }
97 
103  public function getCross()
104  {
105  return '+';
106  }
107 
113  public function getVerticalRight()
114  {
115  return '+';
116  }
117 
123  public function getVerticalLeft()
124  {
125  return '+';
126  }
127 
133  public function getHorizontalDown()
134  {
135  return '+';
136  }
137 
143  public function getHorizontalUp()
144  {
145  return '+';
146  }
147 }