for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace NamespaceProtector\OutputDevice;
final class ConsoleDevice implements OutputDeviceInterface
{
public function output(string $value): void
echo $value;
}