Beispiel #1
0
 public function get_group($name)
 {
     if (isset($this->groups[$name])) {
         return $this->groups[$name]['options'];
     }
     if (in_array($name, $this->inheritedGroups)) {
         $this->load_inherited_group($name);
     }
     return parent::get_group($name);
 }
Beispiel #2
0
 public function __construct($builderMock, $slice)
 {
     $this->builderMock = $builderMock;
     parent::__construct($slice);
 }