getCornerBLChar() public méthode

Returns the character used to draw a corner on the bottom left.
public getCornerBLChar ( ) : string
Résultat string The corner character.
Exemple #1
0
 /**
  * Draws a bottom border.
  *
  * Crossings are drawn between each pair of columns if more than one column
  * length is passed.
  *
  * @param IO          $io            The I/O.
  * @param BorderStyle $style         The border style.
  * @param int[]       $columnLengths An array of column lengths.
  * @param int         $indentation   The number of spaces to indent.
  */
 public static function drawBottomBorder(IO $io, BorderStyle $style, array $columnLengths, $indentation = 0)
 {
     self::drawBorder($io, $columnLengths, $indentation, $style->getLineHBChar(), $style->getCornerBLChar(), $style->getCrossingBChar(), $style->getCornerBRChar(), $style->getStyle());
 }