Lullabot/mpx-php

View on GitHub
src/Service/IdentityManagement/UserInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
<?php

namespace Lullabot\Mpx\Service\IdentityManagement;

/**
 * Interface representing an mpx user.
 */
interface UserInterface
{
    /**
     * Get the username of the MPX user.
     *
     * @return string
     */
    public function getMpxUsername();

    /**
     * Get the password of the MPX user.
     *
     * @return string
     */
    public function getMpxPassword();
}