Skip to content

Commit d71bcdb

Browse files
Add missing stub
1 parent 70cd47f commit d71bcdb

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
@@ -15,7 +15,11 @@ parameters:
1515
- stubs/Component/HttpFoundation/Session/Session.stub
1616
- stubs/Component/HttpFoundation/HeaderBag.stub
1717
- stubs/Component/Process/Process.stub
18+
- stubs/Component/Security/Acl/Model/AclInterface.stub
19+
- stubs/Component/Security/Acl/Model/AclProviderInterface.stub
20+
- stubs/Component/Security/Acl/Model/MutableAclInterface.stub
1821
- stubs/Component/Security/Acl/Model/MutableAclProviderInterface.stub
22+
- stubs/Component/Security/Acl/Model/ObjectIdentityInterface.stub
1923
- stubs/Component/Validator/Constraint.stub
2024

2125
parametersSchema:
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)