Skip to content

Commit a890ca9

Browse files
committed
Updated Rector to commit 7ee89b326702a0b51e3165fc478615834de50fe1
rectorphp/rector-src@7ee89b3 [BetterPhpDocParser] Remove double array_values() call on same variable (#4371)
1 parent bbcd259 commit a890ca9

File tree

8 files changed

+22
-23
lines changed

8 files changed

+22
-23
lines changed

packages/BetterPhpDocParser/PhpDocInfo/PhpDocInfo.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,6 @@ public function getTagsByName(string $name) : array
158158
$tags = \array_filter($tags, static function (PhpDocTagNode $phpDocTagNode) use($name) : bool {
159159
return $phpDocTagNode->name === $name;
160160
});
161-
$tags = \array_values($tags);
162161
return \array_values($tags);
163162
}
164163
public function getParamType(string $name) : Type

src/Application/VersionResolver.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ final class VersionResolver
1919
* @api
2020
* @var string
2121
*/
22-
public const PACKAGE_VERSION = '6947eb7c4cf8cefe0e7a4cb95bbae23ab64362bd';
22+
public const PACKAGE_VERSION = '7ee89b326702a0b51e3165fc478615834de50fe1';
2323
/**
2424
* @api
2525
* @var string
2626
*/
27-
public const RELEASE_DATE = '2023-06-28 03:22:05';
27+
public const RELEASE_DATE = '2023-06-28 23:11:18';
2828
/**
2929
* @var int
3030
*/

vendor/autoload.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@
2222

2323
require_once __DIR__ . '/composer/autoload_real.php';
2424

25-
return ComposerAutoloaderInite7dd856a68ca53c3b92f1068f8078756::getLoader();
25+
return ComposerAutoloaderInit9f6c5876faf703862369649ae70309a3::getLoader();

vendor/composer/autoload_real.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
// autoload_real.php @generated by Composer
44

5-
class ComposerAutoloaderInite7dd856a68ca53c3b92f1068f8078756
5+
class ComposerAutoloaderInit9f6c5876faf703862369649ae70309a3
66
{
77
private static $loader;
88

@@ -22,17 +22,17 @@ public static function getLoader()
2222
return self::$loader;
2323
}
2424

25-
spl_autoload_register(array('ComposerAutoloaderInite7dd856a68ca53c3b92f1068f8078756', 'loadClassLoader'), true, true);
25+
spl_autoload_register(array('ComposerAutoloaderInit9f6c5876faf703862369649ae70309a3', 'loadClassLoader'), true, true);
2626
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
27-
spl_autoload_unregister(array('ComposerAutoloaderInite7dd856a68ca53c3b92f1068f8078756', 'loadClassLoader'));
27+
spl_autoload_unregister(array('ComposerAutoloaderInit9f6c5876faf703862369649ae70309a3', 'loadClassLoader'));
2828

2929
require __DIR__ . '/autoload_static.php';
30-
call_user_func(\Composer\Autoload\ComposerStaticInite7dd856a68ca53c3b92f1068f8078756::getInitializer($loader));
30+
call_user_func(\Composer\Autoload\ComposerStaticInit9f6c5876faf703862369649ae70309a3::getInitializer($loader));
3131

3232
$loader->setClassMapAuthoritative(true);
3333
$loader->register(true);
3434

35-
$filesToLoad = \Composer\Autoload\ComposerStaticInite7dd856a68ca53c3b92f1068f8078756::$files;
35+
$filesToLoad = \Composer\Autoload\ComposerStaticInit9f6c5876faf703862369649ae70309a3::$files;
3636
$requireFile = \Closure::bind(static function ($fileIdentifier, $file) {
3737
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
3838
$GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;

vendor/composer/autoload_static.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
namespace Composer\Autoload;
66

7-
class ComposerStaticInite7dd856a68ca53c3b92f1068f8078756
7+
class ComposerStaticInit9f6c5876faf703862369649ae70309a3
88
{
99
public static $files = array (
1010
'ad155f8f1cf0d418fe49e248db8c661b' => __DIR__ . '/..' . '/react/promise/src/functions_include.php',
@@ -3098,9 +3098,9 @@ class ComposerStaticInite7dd856a68ca53c3b92f1068f8078756
30983098
public static function getInitializer(ClassLoader $loader)
30993099
{
31003100
return \Closure::bind(function () use ($loader) {
3101-
$loader->prefixLengthsPsr4 = ComposerStaticInite7dd856a68ca53c3b92f1068f8078756::$prefixLengthsPsr4;
3102-
$loader->prefixDirsPsr4 = ComposerStaticInite7dd856a68ca53c3b92f1068f8078756::$prefixDirsPsr4;
3103-
$loader->classMap = ComposerStaticInite7dd856a68ca53c3b92f1068f8078756::$classMap;
3101+
$loader->prefixLengthsPsr4 = ComposerStaticInit9f6c5876faf703862369649ae70309a3::$prefixLengthsPsr4;
3102+
$loader->prefixDirsPsr4 = ComposerStaticInit9f6c5876faf703862369649ae70309a3::$prefixDirsPsr4;
3103+
$loader->classMap = ComposerStaticInit9f6c5876faf703862369649ae70309a3::$classMap;
31043104

31053105
}, null, ClassLoader::class);
31063106
}

vendor/composer/installed.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -504,8 +504,8 @@
504504
},
505505
{
506506
"name": "illuminate\/container",
507-
"version": "v10.14.0",
508-
"version_normalized": "10.14.0.0",
507+
"version": "v10.14.1",
508+
"version_normalized": "10.14.1.0",
509509
"source": {
510510
"type": "git",
511511
"url": "https:\/\/github.com\/illuminate\/container.git",
@@ -558,25 +558,25 @@
558558
},
559559
{
560560
"name": "illuminate\/contracts",
561-
"version": "v10.14.0",
562-
"version_normalized": "10.14.0.0",
561+
"version": "v10.14.1",
562+
"version_normalized": "10.14.1.0",
563563
"source": {
564564
"type": "git",
565565
"url": "https:\/\/github.com\/illuminate\/contracts.git",
566-
"reference": "93605a5fc27cead6746d84796725c7c0d7d51d62"
566+
"reference": "ec47d1aa1a1b1a679d8553836b417343881b8215"
567567
},
568568
"dist": {
569569
"type": "zip",
570-
"url": "https:\/\/api.github.com\/repos\/illuminate\/contracts\/zipball\/93605a5fc27cead6746d84796725c7c0d7d51d62",
571-
"reference": "93605a5fc27cead6746d84796725c7c0d7d51d62",
570+
"url": "https:\/\/api.github.com\/repos\/illuminate\/contracts\/zipball\/ec47d1aa1a1b1a679d8553836b417343881b8215",
571+
"reference": "ec47d1aa1a1b1a679d8553836b417343881b8215",
572572
"shasum": ""
573573
},
574574
"require": {
575575
"php": "^8.1",
576576
"psr\/container": "^1.1.1|^2.0.1",
577577
"psr\/simple-cache": "^1.0|^2.0|^3.0"
578578
},
579-
"time": "2023-06-06T15:23:52+00:00",
579+
"time": "2023-06-27T14:35:49+00:00",
580580
"type": "library",
581581
"extra": {
582582
"branch-alias": {

vendor/composer/installed.php

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

vendor/illuminate/contracts/Events/Dispatcher.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public function subscribe($subscriber);
3131
*
3232
* @param string|object $event
3333
* @param mixed $payload
34-
* @return array|null
34+
* @return mixed
3535
*/
3636
public function until($event, $payload = []);
3737
/**

0 commit comments

Comments
 (0)