for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Mcustiel\Phiremock\Server\Cli\Options;
class Passphrase
{
/** @var string */
private $pass;
public function __construct(string $pass)
$this->pass = $pass;
}
public function asString(): string
return $this->pass;