Bitpay\Application::addUser PHP Метод

addUser() публичный Метод

Add user to stack
public addUser ( bitpay\UserInterface $user ) : bitpay\ApplicationInterface
$user bitpay\UserInterface
Результат bitpay\ApplicationInterface
    public function addUser(UserInterface $user)
    {
        if (!empty($user)) {
            $this->users[] = $user;
        }
        return $this;
    }