for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types=1);
namespace PerfectApp\Logger;
class PhpMailSender implements MailSenderInterface
{
public function send(string $to, string $subject, string $message, string $headers): bool
return mail($to, $subject, $message, $headers);
}