for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Equip\Auth;
class Credentials
{
/**
* @var string
*/
private $identifier;
private $password;
* @param string $identifier
* @param string $password
public function __construct($identifier, $password)
$this->identifier = $identifier;
$this->password = $password;
}
* @return string
public function getIdentifier()
return $this->identifier;
public function getPassword()
return $this->password;