Your IP : 216.73.216.220


Current Path : /var/www/html/vendor/magento/module-authorization/Model/
Upload File :
Current File : /var/www/html/vendor/magento/module-authorization/Model/UserContextInterface.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */

namespace Magento\Authorization\Model;

/**
 * Interface for current user identification.
 *
 * @api
 * @since 100.0.2
 */
interface UserContextInterface
{
    /**#@+
     * User type
     */
    const USER_TYPE_INTEGRATION = 1;
    const USER_TYPE_ADMIN = 2;
    const USER_TYPE_CUSTOMER = 3;
    const USER_TYPE_GUEST = 4;
    /**#@-*/

    /**
     * Identify current user ID.
     *
     * @return int|null
     * @api
     */
    public function getUserId();

    /**
     * Retrieve current user type.
     *
     * @return int|null
     * @api
     */
    public function getUserType();
}