Skip to content

Commit e0c1837

Browse files
Add missing stub
1 parent 205349e commit e0c1837

File tree

5 files changed

+36
-0
lines changed

5 files changed

+36
-0
lines changed

extension.neon

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,11 @@ parameters:
1616
- stubs/Component/HttpFoundation/Session/Session.stub
1717
- stubs/Component/HttpFoundation/HeaderBag.stub
1818
- 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
1922
- stubs/Component/Security/Acl/Model/MutableAclProviderInterface.stub
23+
- stubs/Component/Security/Acl/Model/ObjectIdentityInterface.stub
2024
- stubs/Component/Serializer/Encoder/ContextAwareDecoderInterface.stub
2125
- stubs/Component/Serializer/Encoder/DecoderInterface.stub
2226
- stubs/Component/Serializer/Encoder/EncoderInterface.stub
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?php declare(strict_types = 1);
2+
3+
namespace Symfony\Component\Security\Acl\Model;
4+
5+
interface AclInterface
6+
{
7+
8+
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?php declare(strict_types = 1);
2+
3+
namespace Symfony\Component\Security\Acl\Model;
4+
5+
interface AclProviderInterface
6+
{
7+
8+
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?php declare(strict_types = 1);
2+
3+
namespace Symfony\Component\Security\Acl\Model;
4+
5+
interface MutableAclInterface extends AclInterface
6+
{
7+
8+
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?php declare(strict_types = 1);
2+
3+
namespace Symfony\Component\Security\Acl\Model;
4+
5+
interface ObjectIdentityInterface
6+
{
7+
8+
}

0 commit comments

Comments
 (0)