File tree Expand file tree Collapse file tree 4 files changed +48
-1
lines changed
bundle/Resources/views/profiler Expand file tree Collapse file tree 4 files changed +48
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : On PR Review Requested
2
+
3
+ on :
4
+ pull_request :
5
+ types : [review_requested]
6
+
7
+ jobs :
8
+ call-expand-team-reviewers :
9
+ if : ${{ github.event.requested_team }}
10
+ uses : ibexa/gh-workflows/.github/workflows/expand-team-reviewers.yml@main
11
+ with :
12
+ requested_team : ${{ github.event.requested_team.slug }}
13
+ pull_request_number : ${{ github.event.pull_request.number }}
14
+ repository : ${{ github.repository }}
15
+ secrets : inherit
Original file line number Diff line number Diff line change 1
1
{% if collector .renderedComponents is not empty %}
2
2
{% if collector .availableGroups is not empty %}
3
- <h3 >Available Groups </h3 >
3
+ <h3 >Available Twig Component groups </h3 >
4
4
<table >
5
5
<thead >
6
6
<tr >
Original file line number Diff line number Diff line change @@ -60,4 +60,20 @@ public function getParameters(): array
60
60
{
61
61
return $ this ->parameters ;
62
62
}
63
+
64
+ /**
65
+ * @param mixed $value
66
+ */
67
+ public function addParameter (string $ key , $ value ): void
68
+ {
69
+ $ this ->parameters [$ key ] = $ value ;
70
+ }
71
+
72
+ /**
73
+ * @param array<mixed> $parameters
74
+ */
75
+ public function addParameters (array $ parameters ): void
76
+ {
77
+ $ this ->parameters = array_merge ($ this ->parameters , $ parameters );
78
+ }
63
79
}
Original file line number Diff line number Diff line change @@ -69,4 +69,20 @@ public function getParameters(): array
69
69
{
70
70
return $ this ->parameters ;
71
71
}
72
+
73
+ /**
74
+ * @param mixed $value
75
+ */
76
+ public function addParameter (string $ key , $ value ): void
77
+ {
78
+ $ this ->parameters [$ key ] = $ value ;
79
+ }
80
+
81
+ /**
82
+ * @param array<mixed> $parameters
83
+ */
84
+ public function addParameters (array $ parameters ): void
85
+ {
86
+ $ this ->parameters = array_merge ($ this ->parameters , $ parameters );
87
+ }
72
88
}
You can’t perform that action at this time.
0 commit comments