/var/www/vhosts/nabawater/vendor/codeception/base/tests/data/services
NameSizeModeActions
UserModel.php7880755editdlrm
UserService.php5220755editdlrm
Edit: /var/www/vhosts/nabawater/vendor/codeception/base/tests/data/services/UserService.php (522B)
user = $user; } function create($name) { $this->user->setName($name); $this->user->set('role','user'); $this->user->set('email',$name.'@service.com'); $this->user->save(); return true; } public static function validateName($name) { if ($name == 'admin') return false; return true; } }