/var/www/vhosts/nabawater/vendor/codeception/base/src/Codeception/Lib/Generator
NameSizeModeActions
Shared/-0775rm
Actions.php62350664editdlrm
Actor.php54970664editdlrm
Cept.php9930664editdlrm
Cest.php15430664editdlrm
Feature.php4810664editdlrm
GherkinSnippets.php48030664editdlrm
Group.php16020664editdlrm
Helper.php9790664editdlrm
PageObject.php23010664editdlrm
Snapshot.php17940664editdlrm
StepObject.php17000664editdlrm
Test.php16100664editdlrm
Edit: /var/www/vhosts/nabawater/vendor/codeception/base/src/Codeception/Lib/Generator/Test.php (1610B)
settings = $settings; $this->name = $this->removeSuffix($name, 'Test'); } public function produce() { $actor = $this->settings['actor']; if ($this->settings['namespace']) { $actor = $this->settings['namespace'] . '\\' . $actor; } $ns = $this->getNamespaceHeader($this->settings['namespace'] . '\\' . $this->name); $tester = ''; if ($this->settings['actor']) { $tester = (new Template($this->testerTemplate)) ->place('actorClass', $actor) ->place('actor', lcfirst(Configuration::config()['actor_suffix'])) ->produce(); } return (new Template($this->template)) ->place('namespace', $ns) ->place('name', $this->getShortClassName($this->name)) ->place('tester', $tester) ->produce(); } }