File tree 2 files changed +3
-1
lines changed
2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -88,6 +88,7 @@ public function getConfigTreeBuilder()
88
88
->scalarNode ('mb_detect_order ' )->defaultNull ()->end ()
89
89
->scalarNode ('error_types ' )->defaultNull ()->end ()
90
90
->scalarNode ('app_path ' )->defaultValue ('%kernel.root_dir%/.. ' )->end ()
91
+ ->booleanNode ('ignore_server_port ' )->defaultFalse ()->end ()
91
92
->arrayNode ('excluded_app_paths ' )
92
93
->defaultValue (
93
94
[
Original file line number Diff line number Diff line change 17
17
18
18
class SentryExtensionTest extends TestCase
19
19
{
20
- private const SUPPORTED_SENTRY_OPTIONS_COUNT = 35 ;
20
+ private const SUPPORTED_SENTRY_OPTIONS_COUNT = 36 ;
21
21
private const LISTENER_TEST_PUBLIC_ALIAS = 'sentry.exception_listener.public_alias ' ;
22
22
23
23
public function test_that_configuration_uses_the_right_default_values ()
@@ -355,6 +355,7 @@ public function test_that_it_sets_all_sentry_options()
355
355
'processorOption2 ' => 'asasdf ' ,
356
356
],
357
357
],
358
+ 'ignore_server_port ' => true ,
358
359
];
359
360
360
361
$ this ->assertCount (self ::SUPPORTED_SENTRY_OPTIONS_COUNT , $ options );
You can’t perform that action at this time.
0 commit comments