Skip to content

Commit

Permalink
Merge pull request #17 from CottaCush/features/rework-widgets
Browse files Browse the repository at this point in the history
(BaseWidget): Change function access specifier
  • Loading branch information
taiwo-ladipo authored Jul 27, 2018
2 parents 690338c + c72b9cf commit cb7e47b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Widgets/BaseWidget.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ class BaseWidget extends Widget
* @param array $options
* @return string
*/
protected function beginDiv($classNames = [], $options = [])
public function beginDiv($classNames = [], $options = [])
{
return Html::beginDiv($classNames, $options);
}

/**
* @return string
*/
protected function endDiv()
public function endDiv()
{
return Html::endDiv();
}
Expand Down

0 comments on commit cb7e47b

Please sign in to comment.