File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ declare(strict_types=1);
5
5
namespace PHPSTORM_META {
6
6
7
7
{% for definition in definitions % }
8
- // -- {{ definition.label }}.
8
+ // -- {{ definition.label|replace({"\n": " ", "\r": " "}) }}.
9
9
{% set key = definition . type ~ ' __ids' % }
10
10
registerArgumentsSet(' {{ key }}' ,
11
11
{% for id in definition . ids % }
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ declare(strict_types=1);
5
5
namespace PHPSTORM_META {
6
6
7
7
{% for definition in definitions % }
8
- // {{ definition.label }}.
8
+ // {{ definition.label|replace({"\n": " ", "\r": " "}) }}.
9
9
{% set key = definition . type ~ ' __bundles' % }
10
10
registerArgumentsSet(' {{ key }}' ,
11
11
{% for bundle in definition . bundles % }
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ namespace PHPSTORM_META {
6
6
7
7
{% for definition in definitions % }
8
8
{% if definition . links | length > 0 % }
9
- // {{ definition.label }}.
9
+ // {{ definition.label|replace({"\n": " ", "\r": " "}) }}.
10
10
registerArgumentsSet(' {{ definition.type ~ ' __links ' }}' ,
11
11
{% for link in definition . links % }
12
12
' {{ link }}' ,
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ declare(strict_types=1);
5
5
namespace PHPSTORM_META {
6
6
7
7
{% for definition in definitions % }
8
- // {{ definition.label }}.
8
+ // {{ definition.label|replace({"\n": " ", "\r": " "}) }}.
9
9
{% set field_argument_set = ' fields_' ~ definition . type % }
10
10
registerArgumentsSet(' {{ field_argument_set }}' ,
11
11
{% for field in definition . fields % }
You can’t perform that action at this time.
0 commit comments