/var/www/vhosts/nabawater/vendor/codeception/base/src/Codeception/Lib/Generator
Edit: /var/www/vhosts/nabawater/vendor/codeception/base/src/Codeception/Lib/Generator/Group.php (1602B)
settings = $settings;
$this->name = $name;
$this->namespace = $this->getNamespaceString($this->settings['namespace'] . '\\Group\\' . $name);
}
public function produce()
{
$ns = $this->getNamespaceString($this->settings['namespace'] . '\\' . $this->name);
return (new Template($this->template))
->place('class', ucfirst($this->name))
->place('name', $this->name)
->place('namespace', $this->namespace)
->place('groupName', strtolower($this->name))
->produce();
}
}