![]() 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 declare(strict_types=1); namespace Laminas\Text\Table\Decorator; /** * Interface for Laminas\Text\Table decorators */ interface DecoratorInterface { /** * Get a single character for the top left corner * * @return string */ public function getTopLeft(); /** * Get a single character for the top right corner * * @return string */ public function getTopRight(); /** * Get a single character for the bottom left corner * * @return string */ public function getBottomLeft(); /** * Get a single character for the bottom right corner * * @return string */ public function getBottomRight(); /** * Get a single character for a vertical line * * @return string */ public function getVertical(); /** * Get a single character for a horizontal line * * @return string */ public function getHorizontal(); /** * Get a single character for a crossing line * * @return string */ public function getCross(); /** * Get a single character for a vertical divider right * * @return string */ public function getVerticalRight(); /** * Get a single character for a vertical divider left * * @return string */ public function getVerticalLeft(); /** * Get a single character for a horizontal divider down * * @return string */ public function getHorizontalDown(); /** * Get a single character for a horizontal divider up * * @return string */ public function getHorizontalUp(); }