This repository has been archived on 2026-07-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
espocrm-base/application/Espo/Core/Acl.php
T
Yuri Kuznetsov b56e79942c refactor
2013-11-20 16:39:47 +02:00

23 lines
213 B
PHP

<?php
namespace Espo\Core;
class Acl
{
private $data = array();
public function __construct(\Espo\Entities\User $user)
{
$this->user = $user;
}
public function check($subject, $action)
{
}
}