Skip to content

Commit 58cbeec

Browse files
Dennis Langenfabpot
authored andcommitted
fix: clarify parameter name to comply with deprecations from #34074
1 parent c4ecf58 commit 58cbeec

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

Controller/AbstractController.php

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -207,30 +207,30 @@ protected function addFlash(string $type, $message): void
207207
}
208208

209209
/**
210-
* Checks if the attributes are granted against the current authentication token and optionally supplied subject.
210+
* Checks if the attribute is granted against the current authentication token and optionally supplied subject.
211211
*
212212
* @throws \LogicException
213213
*/
214-
protected function isGranted($attributes, $subject = null): bool
214+
protected function isGranted($attribute, $subject = null): bool
215215
{
216216
if (!$this->container->has('security.authorization_checker')) {
217217
throw new \LogicException('The SecurityBundle is not registered in your application. Try running "composer require symfony/security-bundle".');
218218
}
219219

220-
return $this->container->get('security.authorization_checker')->isGranted($attributes, $subject);
220+
return $this->container->get('security.authorization_checker')->isGranted($attribute, $subject);
221221
}
222222

223223
/**
224-
* Throws an exception unless the attributes are granted against the current authentication token and optionally
224+
* Throws an exception unless the attribute is granted against the current authentication token and optionally
225225
* supplied subject.
226226
*
227227
* @throws AccessDeniedException
228228
*/
229-
protected function denyAccessUnlessGranted($attributes, $subject = null, string $message = 'Access Denied.'): void
229+
protected function denyAccessUnlessGranted($attribute, $subject = null, string $message = 'Access Denied.'): void
230230
{
231-
if (!$this->isGranted($attributes, $subject)) {
231+
if (!$this->isGranted($attribute, $subject)) {
232232
$exception = $this->createAccessDeniedException($message);
233-
$exception->setAttributes($attributes);
233+
$exception->setAttributes($attribute);
234234
$exception->setSubject($subject);
235235

236236
throw $exception;

0 commit comments

Comments
 (0)