for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Jerodev\PhpIrcClient;
class IrcUser
{
public function __construct(public string $nickname)
}
public function __toString(): string
return $this->nickname;