PluginProbe
Visualizer – Tables & Charts Manager with Built-in AI Generator / 3.9.4
Visualizer – Tables & Charts Manager with Built-in AI Generator v3.9.4
4.0.8 4.0.7 4.0.6 4.0.5 4.0.4 4.0.3 3.0.5 3.0.6 3.0.7 3.0.8 3.0.9 3.1.0 3.1.1 3.1.2 3.1.3 3.10.0 3.10.1 3.10.10 3.10.11 3.10.12 3.10.13 3.10.14 3.10.15 3.10.2 3.10.3 All 149 releases
← All changes | vendor/composer/ClassLoader.php +4 -8 3.10.33.9.4 View file →
@@ -428,10 +428,9 @@
428 428 */
429 429 public function loadClass($class)
430 430 {
431 431 if ($file = $this->findFile($class)) {
432 - $includeFile = self::$includeFile;
433 - $includeFile($file);
432 + (self::$includeFile)($file);
434 433
435 434 return true;
436 435 }
437 436
@@ -560,12 +559,9 @@
560 559
561 560 return false;
562 561 }
563 562
564 - /**
565 - * @return void
566 - */
567 - private static function initializeIncludeClosure()
563 + private static function initializeIncludeClosure(): void
568 564 {
569 565 if (self::$includeFile !== null) {
570 566 return;
571 567 }
@@ -577,9 +573,9 @@
577 573 *
578 574 * @param string $file
579 575 * @return void
580 576 */
581 - self::$includeFile = \Closure::bind(static function($file) {
577 + self::$includeFile = static function($file) {
582 578 include $file;
583 - }, null, null);
579 + };
584 580 }
585 581 }