mirror of
https://github.com/danog/psalm.git
synced 2024-11-26 20:34:47 +01:00
22d8f5a0bc
Also added an utility to help assign new shortcodes and a test to prevent duplicate shortcodes.
17 lines
395 B
PHP
17 lines
395 B
PHP
<?php
|
|
|
|
require_once(dirname(__DIR__) . '/vendor/autoload.php');
|
|
|
|
$issue_types = \Psalm\Config\IssueHandler::getAllIssueTypes();
|
|
|
|
$shortcodes = array_map(
|
|
function ($issue_type): int {
|
|
$issue_class = '\\Psalm\\Issue\\' . $issue_type;
|
|
/** @var int */
|
|
return $issue_class::SHORTCODE;
|
|
},
|
|
$issue_types
|
|
);
|
|
|
|
echo 'Max used shortcode: ' . max($shortcodes) . PHP_EOL;
|