Skip to content

Commit 8145b05

Browse files
committed
#84 - Debug: Show actual file content in CI vendor directory
1 parent 3b0d5ae commit 8145b05

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/phpstan.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,5 +128,8 @@ jobs:
128128
vendor/bin/phpstan --version
129129
echo "Clearing PHPStan cache..."
130130
vendor/bin/phpstan clear-result-cache -c vendor/openforgeproject/mageforge/phpstan.neon
131+
echo "=== Checking actual file content in vendor ==="
132+
cat vendor/openforgeproject/mageforge/src/Model/TemplateEngine/Decorator/InspectorHintsFactory.php | grep -A 20 "public function create"
133+
echo "=== End of file content check ==="
131134
echo "Running PHPStan Analysis with verbose output..."
132135
vendor/bin/phpstan analyse -vvv --no-progress -c vendor/openforgeproject/mageforge/phpstan.neon vendor/openforgeproject/mageforge/src

src/Model/TemplateEngine/Decorator/InspectorHintsFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public function create(array $data = []): InspectorHints
3737

3838
// Create instance - property access extracted to help PHPStan recognize the read
3939
$randomGenerator = $this->random;
40-
40+
4141
return new InspectorHints(
4242
$subject,
4343
(bool)$showBlockHints,

0 commit comments

Comments
 (0)