File tree Expand file tree Collapse file tree 5 files changed +36
-0
lines changed
stubs/Component/Security/Acl/Model Expand file tree Collapse file tree 5 files changed +36
-0
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,11 @@ parameters:
16
16
- stubs/Component/HttpFoundation/Session/Session.stub
17
17
- stubs/Component/HttpFoundation/HeaderBag.stub
18
18
- stubs/Component/Process/Process.stub
19
+ - stubs/Component/Security/Acl/Model/AclInterface.stub
20
+ - stubs/Component/Security/Acl/Model/AclProviderInterface.stub
21
+ - stubs/Component/Security/Acl/Model/MutableAclInterface.stub
19
22
- stubs/Component/Security/Acl/Model/MutableAclProviderInterface.stub
23
+ - stubs/Component/Security/Acl/Model/ObjectIdentityInterface.stub
20
24
- stubs/Component/Serializer/Encoder/ContextAwareDecoderInterface.stub
21
25
- stubs/Component/Serializer/Encoder/DecoderInterface.stub
22
26
- stubs/Component/Serializer/Encoder/EncoderInterface.stub
Original file line number Diff line number Diff line change
1
+ <?php declare(strict_types = 1);
2
+
3
+ namespace Symfony\Component\Security\Acl\Model;
4
+
5
+ interface AclInterface
6
+ {
7
+
8
+ }
Original file line number Diff line number Diff line change
1
+ <?php declare(strict_types = 1);
2
+
3
+ namespace Symfony\Component\Security\Acl\Model;
4
+
5
+ interface AclProviderInterface
6
+ {
7
+
8
+ }
Original file line number Diff line number Diff line change
1
+ <?php declare(strict_types = 1);
2
+
3
+ namespace Symfony\Component\Security\Acl\Model;
4
+
5
+ interface MutableAclInterface extends AclInterface
6
+ {
7
+
8
+ }
Original file line number Diff line number Diff line change
1
+ <?php declare(strict_types = 1);
2
+
3
+ namespace Symfony\Component\Security\Acl\Model;
4
+
5
+ interface ObjectIdentityInterface
6
+ {
7
+
8
+ }
You can’t perform that action at this time.
0 commit comments