for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* User: alec
* Date: 01.12.18
* Time: 22:17
*/
namespace AlecRabbit\Traits;
trait DefaultableName
{
* @param string|null $name
* @return string
public function default(?string $name = null): string
return $name ?? 'default_name';
}