portrino/codeception-helper-module

View on GitHub
src/Interfaces/Cookies/Typo3Cookie.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
namespace Portrino\Codeception\Interfaces\Cookies;

/*
 * This file is part of the Codeception Helper Module project
 *
 * It is free software; you can redistribute it and/or modify it under
 * the terms of the GNU General Public License, either version 2
 * of the License, or any later version.
 *
 * For the full copyright and license information, please read
 * LICENSE file that was distributed with this source code.
 *
 */

/**
 * Interface Typo3Cookie
 *
 * @package Portrino\Codeception\Interfaces\Cookies
 */
interface Typo3Cookie
{
    const FE_USER_COOKIE = 'fe_typo_user';
    const BE_TYPO_USER = 'be_typo_user';
}