for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Ublaboo\Anabelle\Http;
final class AuthCredentials
{
/**
* @var string|null
*/
private $user;
private $pass;
public function __construct(?string $user, ?string $pass)
$this->user = $user;
$this->pass = $pass;
}
public function getUser(): ?string
return $this->user;
public function getPass(): ?string
return $this->pass;