Storyplayer\TestEnvironments\GroupAdapter::getType PHP Метод

getType() публичный Метод

this is the name of the class (without namespace) that our group adapter uses
public getType ( ) : string
Результат string
    public function getType();

Usage Example

Пример #1
0
 /**
  * what type of group are we?
  *
  * this is the name of the class (without namespace) that our group
  * adapter uses
  *
  * @return string
  */
 public function getGroupType()
 {
     $this->requireGroupAdapter();
     return $this->groupAdapter->getType();
 }