| Current Path : /home/maglabs/it/dev/tests/integration/testsuite/Magento/Backend/Model/Search/ |
| Current File : /home/maglabs/it/dev/tests/integration/testsuite/Magento/Backend/Model/Search/AuthorizationMock.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Backend\Model\Search;
/**
* @SuppressWarnings("unused")
*/
class AuthorizationMock extends \Magento\Framework\Authorization
{
/**
* Check current user permission on resource and privilege
*
* @param string $resource
* @param string $privilege
* @return boolean
*/
public function isAllowed($resource, $privilege = null)
{
return true;
}
}