✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Gegeben ist folgende Klassendefintion. Zutreffende Aussagen sind anzukreuzen.
<?phpclass User { private $name; private $email; public function __construct() { } function setName($name) { $this->name= $name; }}?>