We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| Total Complexity | 2 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 18 | class StdWrapViewHelper extends AbstractViewHelper |
||
| 19 | { |
||
| 20 | protected $escapeOutput = false; |
||
| 21 | |||
| 22 | public function initializeArguments() |
||
| 23 | { |
||
| 24 | parent::initializeArguments(); |
||
| 25 | $this->registerArgument('wrap', 'string', 'The wrap information', true); |
||
| 26 | } |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Wraps the given value |
||
| 30 | * |
||
| 31 | * @return string |
||
| 32 | */ |
||
| 33 | public function render() |
||
| 43 | } |
||
| 44 | } |
||
| 45 |