@@ -11,38 +11,38 @@ abstract class BaseExtensionHook
1111 use HookUtils;
1212
1313 /** @var int Used as default return value for {@see BaseExtensionHook::getLocation()} */
14- const IDENTIFY_LOCATION_BY_SECTION = -1 ;
14+ public const IDENTIFY_LOCATION_BY_SECTION = -1 ;
1515
1616 /** @var string Output section, right at the top */
17- const OUTPUT_SECTION = 'output ' ;
17+ public const OUTPUT_SECTION = 'output ' ;
1818
1919 /** @var string Graph section, below output */
20- const GRAPH_SECTION = 'graph ' ;
20+ public const GRAPH_SECTION = 'graph ' ;
2121
2222 /** @var string Detail section, below graphs */
23- const DETAIL_SECTION = 'detail ' ;
23+ public const DETAIL_SECTION = 'detail ' ;
2424
2525 /** @var string Action section, below action and note urls */
26- const ACTION_SECTION = 'action ' ;
26+ public const ACTION_SECTION = 'action ' ;
2727
2828 /** @var string Problem section, below comments and downtimes */
29- const PROBLEM_SECTION = 'problem ' ;
29+ public const PROBLEM_SECTION = 'problem ' ;
3030
3131 /** @var string Related section, below groups and notification recipients */
32- const RELATED_SECTION = 'related ' ;
32+ public const RELATED_SECTION = 'related ' ;
3333
3434 /** @var string State section, below check statistics and performance data */
35- const STATE_SECTION = 'state ' ;
35+ public const STATE_SECTION = 'state ' ;
3636
3737 /** @var string Config section, below custom variables and feature toggles */
38- const CONFIG_SECTION = 'config ' ;
38+ public const CONFIG_SECTION = 'config ' ;
3939
4040 /**
4141 * Base locations for all known sections
4242 *
4343 * @var array<string, int>
4444 */
45- const BASE_LOCATIONS = [
45+ public const BASE_LOCATIONS = [
4646 self ::OUTPUT_SECTION => 1000 ,
4747 self ::GRAPH_SECTION => 1100 ,
4848 self ::DETAIL_SECTION => 1200 ,
0 commit comments