public static function getInitializer(ClassLoader $loader)
{
return \Closure::bind(function () use ($loader) {
$loader->prefixLengthsPsr4 = ComposerStaticInit03e973073eea0174c457e95793a7c992::$prefixLengthsPsr4;
$loader->prefixDirsPsr4 = ComposerStaticInit03e973073eea0174c457e95793a7c992::$prefixDirsPsr4;
$loader->prefixesPsr0 = ComposerStaticInit03e973073eea0174c457e95793a7c992::$prefixesPsr0;
$loader->classMap = ComposerStaticInit03e973073eea0174c457e95793a7c992::$classMap;
}, null, ClassLoader::class);
}
How to fix this issues.
What's the actual error you're getting?
Delete your vendor
folder and run composer install
again to start fresh and see if this issue persists.
@dwightwatson I have included the screen shot
@dwightwatson several times i ran composer dump-autoload command then also the error remains same
kindly remove your vendor
folder and run composer install
again. Also you would need to run the composer install
as Administrator in Windows.
The warning says "Member has private access" since those properties are private. However, they are accessed within a closure that's bound to the ClassLoader type, making it valid.
This isn't Laravel's code, it's part of composer and autoloading. Configure your IDE to ignore the vendor folder (or just ignore code inspections within it)
File >> Invalidate Caches/Restart >> Invalidate and Restart
@moe70 Thank you! :D
@moe70 what local I like this stesp?
The warning says "Member has private access" since those properties are private. However, they are accessed within a closure that's bound to the ClassLoader type, making it valid.
This isn't Laravel's code, it's part of composer and autoloading. Configure your IDE to ignore the vendor folder (or just ignore code inspections within it)
remove the vendor and composer install again.
Do not open the file again is a better options instead of ignoring the vendor folder
Most helpful comment
File >> Invalidate Caches/Restart >> Invalidate and Restart