Skip to content

Commit

Permalink
#8
Browse files Browse the repository at this point in the history
  • Loading branch information
christianbarkowsky committed Dec 12, 2021
1 parent 07101f8 commit 08eb0e3
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions forms/FormCheckBoxExtended.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class FormCheckBoxExtended extends Widget
/**
* @var array
*/
protected $arrOptions = array();
protected $arrOptions = [];

/**
* Initialize the object
Expand Down Expand Up @@ -95,11 +95,7 @@ public function __set($strKey, $varValue)
*/
public function __get($strKey)
{
switch ($strKey) {
default:
return parent::__get($strKey);
break;
}
return parent::__get($strKey);
}

/**
Expand Down

0 comments on commit 08eb0e3

Please sign in to comment.