diff options
author | Johannes Schmitt <schmittjoh@gmail.com> | 2010-12-14 16:43:40 +0100 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2010-12-31 09:25:53 +0100 |
commit | 3bd275eddbee11dbc787eecf73c3b62fce815cbc (patch) | |
tree | e1e5727a201fb4b420a28ebb1cbec9ddd0ce1448 /Acl/Model/FieldAwareEntryInterface.php | |
parent | 5853e1f130f888bfe2e5e5830ed930218cfe693b (diff) | |
download | symfony-security-3bd275eddbee11dbc787eecf73c3b62fce815cbc.zip symfony-security-3bd275eddbee11dbc787eecf73c3b62fce815cbc.tar.gz symfony-security-3bd275eddbee11dbc787eecf73c3b62fce815cbc.tar.bz2 |
added ACL system to the Security Component
Diffstat (limited to 'Acl/Model/FieldAwareEntryInterface.php')
-rw-r--r-- | Acl/Model/FieldAwareEntryInterface.php | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Acl/Model/FieldAwareEntryInterface.php b/Acl/Model/FieldAwareEntryInterface.php new file mode 100644 index 0000000..545aa44 --- /dev/null +++ b/Acl/Model/FieldAwareEntryInterface.php @@ -0,0 +1,22 @@ +<?php + +namespace Symfony\Component\Security\Acl\Model; + +/* + * This file is part of the Symfony framework. + * + * (c) Fabien Potencier <fabien.potencier@symfony-project.com> + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +/** + * Interface for entries which are restricted to specific fields + * + * @author Johannes M. Schmitt <schmittjoh@gmail.com> + */ +interface FieldAwareEntryInterface +{ + function getField(); +}
\ No newline at end of file |