DIR:/home/htlwork.com/www/awesomecandy/vendor/magento/module-backend/Model/ |
Current File : //home/htlwork.com/www/awesomecandy/vendor/magento/module-backend/Model/Session.php |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Model; /** * Backend user session * * @api * @since 100.0.2 */ class Session extends \Magento\Framework\Session\SessionManager { /** * Skip path validation in backend area * * @param string $path * @return bool * @SuppressWarnings(PHPMD.UnusedFormalParameter) */ public function isValidForPath($path) { return true; } } |