@@ -1343,7 +1343,7 @@ diff --git a/src/Symfony/Component/Cache/Adapter/ChainAdapter.php b/src/Symfony/
1343
1343
diff --git a/src/Symfony/Component/Cache/Adapter/MemcachedAdapter.php b/src/Symfony/Component/Cache/Adapter/MemcachedAdapter.php
1344
1344
--- a/src/Symfony/Component/Cache/Adapter/MemcachedAdapter.php
1345
1345
+++ b/src/Symfony/Component/Cache/Adapter/MemcachedAdapter.php
1346
- @@ -71 ,5 +71 ,5 @@ class MemcachedAdapter extends AbstractAdapter
1346
+ @@ -72 ,5 +72 ,5 @@ class MemcachedAdapter extends AbstractAdapter
1347
1347
* @return bool
1348
1348
*/
1349
1349
- public static function isSupported()
@@ -1353,7 +1353,7 @@ diff --git a/src/Symfony/Component/Cache/Adapter/MemcachedAdapter.php b/src/Symf
1353
1353
diff --git a/src/Symfony/Component/Cache/Adapter/PdoAdapter.php b/src/Symfony/Component/Cache/Adapter/PdoAdapter.php
1354
1354
--- a/src/Symfony/Component/Cache/Adapter/PdoAdapter.php
1355
1355
+++ b/src/Symfony/Component/Cache/Adapter/PdoAdapter.php
1356
- @@ -101 ,5 +101 ,5 @@ class PdoAdapter extends AbstractAdapter implements PruneableInterface
1356
+ @@ -102 ,5 +102 ,5 @@ class PdoAdapter extends AbstractAdapter implements PruneableInterface
1357
1357
* @throws \DomainException When an unsupported PDO driver is used
1358
1358
*/
1359
1359
- public function createTable()
@@ -1505,7 +1505,7 @@ diff --git a/src/Symfony/Component/Cache/Traits/FilesystemCommonTrait.php b/src/
1505
1505
+ protected function doUnlink(string $file): bool
1506
1506
{
1507
1507
return @unlink($file);
1508
- @@ -175 ,5 +175 ,5 @@ trait FilesystemCommonTrait
1508
+ @@ -167 ,5 +167 ,5 @@ trait FilesystemCommonTrait
1509
1509
* @return void
1510
1510
*/
1511
1511
- public function __wakeup()
@@ -7313,14 +7313,14 @@ diff --git a/src/Symfony/Component/HttpFoundation/Request.php b/src/Symfony/Comp
7313
7313
- public function setMethod(string $method)
7314
7314
+ public function setMethod(string $method): void
7315
7315
{
7316
- $this->method = null ;
7316
+ unset( $this->method) ;
7317
7317
@@ -1301,5 +1301,5 @@ class Request
7318
7318
* @return void
7319
7319
*/
7320
7320
- public function setFormat(?string $format, string|array $mimeTypes)
7321
7321
+ public function setFormat(?string $format, string|array $mimeTypes): void
7322
7322
{
7323
- if (null === static::$formats) {
7323
+ if (!isset( static::$formats) ) {
7324
7324
@@ -1333,5 +1333,5 @@ class Request
7325
7325
* @return void
7326
7326
*/
@@ -7342,14 +7342,14 @@ diff --git a/src/Symfony/Component/HttpFoundation/Request.php b/src/Symfony/Comp
7342
7342
+ public function setLocale(string $locale): void
7343
7343
{
7344
7344
$this->setPhpDefaultLocale($this->locale = $locale);
7345
- @@ -1756 ,5 +1756 ,5 @@ class Request
7345
+ @@ -1744 ,5 +1744 ,5 @@ class Request
7346
7346
* @return string
7347
7347
*/
7348
7348
- protected function prepareRequestUri()
7349
7349
+ protected function prepareRequestUri(): string
7350
7350
{
7351
7351
$requestUri = '';
7352
- @@ -1927 ,5 +1927 ,5 @@ class Request
7352
+ @@ -1915 ,5 +1915 ,5 @@ class Request
7353
7353
* @return void
7354
7354
*/
7355
7355
- protected static function initializeFormats()
@@ -11059,14 +11059,14 @@ diff --git a/src/Symfony/Component/Security/Core/Exception/AccountStatusExceptio
11059
11059
diff --git a/src/Symfony/Component/Security/Core/Exception/AuthenticationException.php b/src/Symfony/Component/Security/Core/Exception/AuthenticationException.php
11060
11060
--- a/src/Symfony/Component/Security/Core/Exception/AuthenticationException.php
11061
11061
+++ b/src/Symfony/Component/Security/Core/Exception/AuthenticationException.php
11062
- @@ -43 ,5 +43 ,5 @@ class AuthenticationException extends RuntimeException
11062
+ @@ -34 ,5 +34 ,5 @@ class AuthenticationException extends RuntimeException
11063
11063
* @return void
11064
11064
*/
11065
11065
- public function setToken(TokenInterface $token)
11066
11066
+ public function setToken(TokenInterface $token): void
11067
11067
{
11068
11068
$this->token = $token;
11069
- @@ -94 ,5 +94 ,5 @@ class AuthenticationException extends RuntimeException
11069
+ @@ -85 ,5 +85 ,5 @@ class AuthenticationException extends RuntimeException
11070
11070
* @return string
11071
11071
*/
11072
11072
- public function getMessageKey()
@@ -11778,7 +11778,7 @@ diff --git a/src/Symfony/Component/String/Slugger/AsciiSlugger.php b/src/Symfony
11778
11778
diff --git a/src/Symfony/Component/String/UnicodeString.php b/src/Symfony/Component/String/UnicodeString.php
11779
11779
--- a/src/Symfony/Component/String/UnicodeString.php
11780
11780
+++ b/src/Symfony/Component/String/UnicodeString.php
11781
- @@ -342 ,5 +342 ,5 @@ class UnicodeString extends AbstractUnicodeString
11781
+ @@ -366 ,5 +366 ,5 @@ class UnicodeString extends AbstractUnicodeString
11782
11782
* @return void
11783
11783
*/
11784
11784
- public function __wakeup()
@@ -12075,14 +12075,14 @@ diff --git a/src/Symfony/Component/Translation/Dumper/DumperInterface.php b/src/
12075
12075
diff --git a/src/Symfony/Component/Translation/Dumper/FileDumper.php b/src/Symfony/Component/Translation/Dumper/FileDumper.php
12076
12076
--- a/src/Symfony/Component/Translation/Dumper/FileDumper.php
12077
12077
+++ b/src/Symfony/Component/Translation/Dumper/FileDumper.php
12078
- @@ -40 ,5 +40 ,5 @@ abstract class FileDumper implements DumperInterface
12078
+ @@ -38 ,5 +38 ,5 @@ abstract class FileDumper implements DumperInterface
12079
12079
* @return void
12080
12080
*/
12081
12081
- public function setRelativePathTemplate(string $relativePathTemplate)
12082
12082
+ public function setRelativePathTemplate(string $relativePathTemplate): void
12083
12083
{
12084
12084
$this->relativePathTemplate = $relativePathTemplate;
12085
- @@ -48 ,5 +48 ,5 @@ abstract class FileDumper implements DumperInterface
12085
+ @@ -46 ,5 +46 ,5 @@ abstract class FileDumper implements DumperInterface
12086
12086
* @return void
12087
12087
*/
12088
12088
- public function dump(MessageCatalogue $messages, array $options = [])
0 commit comments