/**
  * {@inheritdoc}
  */
 public function getGroupIds()
 {
     $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getGroupIds');
     if (!$pluginInfo) {
         return parent::getGroupIds();
     } else {
         return $this->___callPlugins('getGroupIds', func_get_args(), $pluginInfo);
     }
 }
Example #2
0
 public function testGetGroupIds()
 {
     $this->assertEquals(array(1 => 1), $this->_model->getGroupIds());
 }
Example #3
0
 public function testGetGroupIds()
 {
     $this->assertEquals([1 => 1], $this->_model->getGroupIds());
 }