console\Request setParams()

setParams() public method Sets the command line arguments. public void setParams ( $params )$params array The command line arguments

console\Request resolve()

resolve() public method Resolves the current request into a route and the associated parameters. public array resolve ( )return array The first element is the route, and the second is the associated parameters.

console\Markdown renderParagraph()

renderParagraph() protected method protected void renderParagraph ( $block )$block

console\Markdown renderStrong()

renderStrong() protected method Renders strong elements. protected string renderStrong ( $element )$element array

console\Request $params

$params public property The command line arguments. It does not include the entry script name. public array getParams ( )public void setParams ( $params )

console\Markdown renderInlineCode()

renderInlineCode() protected method Renders an inline code span `. protected string renderInlineCode ( $element )$element array

console\Markdown renderStrike()

renderStrike() protected method Renders the strike through feature. protected string renderStrike ( $element )$element array

console\Markdown $escapeCharacters

$escapeCharacters protected property These are "escapeable" characters. When using one of these prefixed with a backslash, the character will be outputted without the backslash and is not interpreted as markdown. protected array $escapeCharacters = ['\\', '`', '*', '_', '~']

console\Markdown renderCode()

renderCode() protected method Renders a code block protected string renderCode ( $block )$block array

console\Markdown renderEmph()

renderEmph() protected method Renders empathized elements. protected string renderEmph ( $element )$element array