Skip to content

Commit

Permalink
Add missing doc block.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Mar 6, 2016
1 parent bf078ae commit ea8af63
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/View/Widget/MultiCheckboxWidget.php
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,13 @@ public function render(array $data, ContextInterface $context)
return implode('', $this->_renderInputs($data, $context));
}

/**
* Render the checkbox inputs.
*
* @param array $data The data array defining the checkboxes.
* @param \Cake\View\Form\ContextInterface $context The current form context.
* @return array An array of rendered inputs.
*/
protected function _renderInputs($data, $context)
{
$out = [];
Expand Down

0 comments on commit ea8af63

Please sign in to comment.