Function Virtual_shell->_do_indentation
Definitions
sources/commandr.php
- Return a specified number of tabs.
- Visibility: protected
- Is abstract?: No
- Is static?: No
- Is final?: No
- Returns: string
Parameters
| Name | Type | Passed by reference? | Variadic? | Default | Set | Range | Description |
|---|---|---|---|---|---|---|---|
| $indentation | integer | No | No | required parameter | N/A | N/A | Number of tabs to return |
Returns
- Tabs
- Type: string
- Set: N/A
- Range: N/A
Preview
Code (PHP)
/**
* Return a specified number of tabs.
*
* @param integer $indentation Number of tabs to return
* @return string Tabs
*/
protected function _do_indentation(int $indentation) : string
* Return a specified number of tabs.
*
* @param integer $indentation Number of tabs to return
* @return string Tabs
*/
protected function _do_indentation(int $indentation) : string

