The League of Extraordinary Packages

Our Packages:

Presented by The League of Extraordinary Packages

Getting Started

Styling

Arguments

Terminal Objects

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. !!!!!