PHP Typing Practice
Type the code below as fast and accurately as you can
Difficulty:
0
WPM
100%
Accuracy
0
Errors
60s
Timer
PHPMedium
class User {
public function __construct(
private string $name,
private string $email
) {}
public function getName(): string {
return $this->name;
}
}
Start typing to begin