Upgrade 1-11.38

This commit is contained in:
xesmyd
2026-03-30 14:10:30 +02:00
parent f2a7e6d1fc
commit ac648ef29d
24665 changed files with 69682 additions and 2205004 deletions
+3 -5
View File
@@ -12,8 +12,8 @@
namespace Symfony\Component\Security\Acl\Domain;
use Symfony\Component\Security\Acl\Model\AuditableEntryInterface;
use Symfony\Component\Security\Acl\Model\EntryInterface;
use Symfony\Component\Security\Acl\Model\AuditLoggerInterface;
use Symfony\Component\Security\Acl\Model\EntryInterface;
/**
* Base audit logger implementation.
@@ -25,8 +25,7 @@ abstract class AuditLogger implements AuditLoggerInterface
/**
* Performs some checks if logging was requested.
*
* @param bool $granted
* @param EntryInterface $ace
* @param bool $granted
*/
public function logIfNeeded($granted, EntryInterface $ace)
{
@@ -44,8 +43,7 @@ abstract class AuditLogger implements AuditLoggerInterface
/**
* This method is only called when logging is needed.
*
* @param bool $granted
* @param EntryInterface $ace
* @param bool $granted
*/
abstract protected function doLog($granted, EntryInterface $ace);
}