Maybe I am missing the point, but what is the functional justification of this snippet:
|
array_map('class_exists', [Bar::class, BlueScreen::class, DefaultBarPanel::class, Dumper::class, |
|
FireLogger::class, Helpers::class, Logger::class, ]); |
Is it to ensure these classes are "autoloaded"? If so, what would be the point of that?
Maybe I am missing the point, but what is the functional justification of this snippet:
tracy/src/Tracy/Debugger/Debugger.php
Lines 202 to 203 in eb2e772
Is it to ensure these classes are "autoloaded"? If so, what would be the point of that?