flank.md 512 B


layout: default title: Flank

permalink: /terminal-objects/flank/

Flank

The flank method allows you to bring a little more attention to a line:

$climate->flank('Look at me. Now.');
// ### Look at me. Now. ###

You can specify the flanking characters:

$climate->flank('Look at me. Now.', '!');
// !!! Look at me. Now. !!!

And how many flanking characters there should be:

$climate->flank('Look at me. Now.', '!', 5);
// !!!!! Look at me. Now. !!!!!