![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/laminas/laminas-text/src/Table/Decorator/ |
<?php namespace Laminas\Text\Table\Decorator; use Laminas\Text\Table\Decorator\DecoratorInterface as Decorator; /** * ASCII Decorator for Laminas\Text\Table */ class Blank implements Decorator { /** * Defined by Laminas\Text\Table\Decorator\DecoratorInterface * * @return string */ public function getTopLeft() { return ''; } /** * Defined by Laminas\Text\Table\Decorator\DecoratorInterface * * @return string */ public function getTopRight() { return ''; } /** * Defined by Laminas\Text\Table\Decorator\DecoratorInterface * * @return string */ public function getBottomLeft() { return ''; } /** * Defined by Laminas\Text\Table\Decorator\DecoratorInterface * * @return string */ public function getBottomRight() { return ''; } /** * Defined by Laminas\Text\Table\Decorator\DecoratorInterface * * @return string */ public function getVertical() { return ''; } /** * Defined by Laminas\Text\Table\Decorator\DecoratorInterface * * @return string */ public function getHorizontal() { return ''; } /** * Defined by Laminas\Text\Table\Decorator\DecoratorInterface * * @return string */ public function getCross() { return ''; } /** * Defined by Laminas\Text\Table\Decorator\DecoratorInterface * * @return string */ public function getVerticalRight() { return ''; } /** * Defined by Laminas\Text\Table\Decorator\DecoratorInterface * * @return string */ public function getVerticalLeft() { return ''; } /** * Defined by Laminas\Text\Table\Decorator\DecoratorInterface * * @return string */ public function getHorizontalDown() { return ''; } /** * Defined by Laminas\Text\Table\Decorator\DecoratorInterface * * @return string */ public function getHorizontalUp() { return ''; } }