Your IP : 216.73.216.220


Current Path : /var/www/html/vendor/codeception/codeception/src/Codeception/Step/Argument/
Upload File :
Current File : /var/www/html/vendor/codeception/codeception/src/Codeception/Step/Argument/PasswordArgument.php

<?php

namespace Codeception\Step\Argument;

class PasswordArgument implements FormattedOutput
{
    /**
     * @var string
     */
    private $password;

    public function __construct($password)
    {
        $this->password = $password;
    }

    /**
     * {@inheritdoc}
     */
    public function getOutput()
    {
        return '******';
    }

    /**
     * {@inheritdoc}
     */
    public function __toString()
    {
        return $this->password;
    }
}