Skip to content

Commit 8e60054

Browse files
committed
minor #20162 [Security] adding missing 'private' (tacman)
This PR was submitted for the 7.1 branch but it was merged into the 6.4 branch instead. Discussion ---------- [Security] adding missing 'private' <!-- If your pull request fixes a BUG, use the oldest maintained branch that contains the bug (see https://symfony.com/releases for the list of maintained branches). If your pull request documents a NEW FEATURE, use the same Symfony branch where the feature was introduced (and `7.x` for features of unreleased versions). --> Commits ------- fae9a57 adding missing 'private'
2 parents e51512d + fae9a57 commit 8e60054

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

security.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2620,7 +2620,7 @@ want to include extra details only for users that have a ``ROLE_SALES_ADMIN`` ro
26202620
class SalesReportManager
26212621
{
26222622
+ public function __construct(
2623-
+ Security $security,
2623+
+ private Security $security,
26242624
+ ) {
26252625
+ }
26262626

0 commit comments

Comments
 (0)