We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb210d4 commit 18f17c8Copy full SHA for 18f17c8
2 files changed
src/Core/Scan/Processor/NoProxyInCommands.php
@@ -20,7 +20,7 @@ public function getIdentifier(): string
20
*/
21
public function process(array $files): void
22
{
23
- foreach ($files['di'] as $file) {
+ foreach ($files['di'] ?? [] as $file) {
24
$previousUseErrors = libxml_use_internal_errors(true);
25
$content = simplexml_load_file($file);
26
libxml_clear_errors();
src/Core/Scan/Processor/ProxyForHeavyClasses.php
@@ -22,6 +22,7 @@ class ProxyForHeavyClasses extends AbstractProcessor
private array $heavyClassPatterns = [
'Session',
+ 'Collection',
];
27
28
private array $processedFiles = [];
0 commit comments