composer package updates
[openemr.git] / vendor / zendframework / zend-text / src / Table / Decorator / Ascii.php
blobd4c30b60ce5d0e878a521e7240d6f653488456ae
1 <?php
2 /**
3 * @see https://github.com/zendframework/zend-text for the canonical source repository
4 * @copyright Copyright (c) 2005-2018 Zend Technologies USA Inc. (https://www.zend.com)
5 * @license https://github.com/zendframework/zend-text/blob/master/LICENSE.md New BSD License
6 */
8 namespace Zend\Text\Table\Decorator;
10 use Zend\Text\Table\Decorator\DecoratorInterface as Decorator;
12 /**
13 * ASCII Decorator for Zend\Text\Table
15 class Ascii implements Decorator
17 /**
18 * Defined by Zend\Text\Table\Decorator\DecoratorInterface
20 * @return string
22 public function getTopLeft()
24 return '+';
27 /**
28 * Defined by Zend\Text\Table\Decorator\DecoratorInterface
30 * @return string
32 public function getTopRight()
34 return '+';
37 /**
38 * Defined by Zend\Text\Table\Decorator\DecoratorInterface
40 * @return string
42 public function getBottomLeft()
44 return '+';
47 /**
48 * Defined by Zend\Text\Table\Decorator\DecoratorInterface
50 * @return string
52 public function getBottomRight()
54 return '+';
57 /**
58 * Defined by Zend\Text\Table\Decorator\DecoratorInterface
60 * @return string
62 public function getVertical()
64 return '|';
67 /**
68 * Defined by Zend\Text\Table\Decorator\DecoratorInterface
70 * @return string
72 public function getHorizontal()
74 return '-';
77 /**
78 * Defined by Zend\Text\Table\Decorator\DecoratorInterface
80 * @return string
82 public function getCross()
84 return '+';
87 /**
88 * Defined by Zend\Text\Table\Decorator\DecoratorInterface
90 * @return string
92 public function getVerticalRight()
94 return '+';
97 /**
98 * Defined by Zend\Text\Table\Decorator\DecoratorInterface
100 * @return string
102 public function getVerticalLeft()
104 return '+';
108 * Defined by Zend\Text\Table\Decorator\DecoratorInterface
110 * @return string
112 public function getHorizontalDown()
114 return '+';
118 * Defined by Zend\Text\Table\Decorator\DecoratorInterface
120 * @return string
122 public function getHorizontalUp()
124 return '+';