for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types=1);
namespace Bigwhoop\Trumpet\Config;
final class Author
{
/** @var string */
public $name = '';
public $company = '';
public $email = '';
public $twitter = '';
public $website = '';
public $skype = '';
public function __construct(string $name)
$this->name = $name;
}
public function __toString(): string
return $this->name;