schneespur/release/schneespur-1.0.2/vendor/psy/psysh/.phan/baseline-ci.php
Michael 7288b93500 Release v1.0.2: diagnostic infrastructure core
Add neutral diagnostic framework for future reporting modules:
- DiagnosticReporterInterface, Registry, Manager, PayloadSanitizer
- Laravel exception hook in bootstrap/app.php
- Module permission declarations (requires_permissions in module.json)
- Core diagnostic report points (module boot/install/update failures)
- Module documentation update (moduldoku.md)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-05-18 16:54:11 +00:00

20 lines
702 B
PHP

<?php
/**
* This baseline merges the canonical baseline with current issues for CI enforcement:
*
* 1. baseline.php: all canonical baselines (min-versions, new-deprecations, internal-deprecations, external-deps)
* 2. baseline-current-issues.php: existing issues we're holding the line on (auto-generated)
*
* This allows CI to enforce "no new issues" while `make phan` locally shows all issues.
*
* To update the current issues baseline:
* vendor/bin/phan --allow-polyfill-parser --save-baseline=.phan/baseline-current-issues.php
*/
require_once __DIR__ . '/merge-baselines.php';
return mergeBaselines([
__DIR__ . '/baseline.php',
__DIR__ . '/baseline-current-issues.php',
]);