@@ -436,12 +436,12 @@ public function getDsn(): ?Dsn
436436 return $ this ->options ['dsn ' ];
437437 }
438438
439- public function getOrg (): ?int
439+ public function getOrgId (): ?int
440440 {
441441 return $ this ->options ['org_id ' ];
442442 }
443443
444- public function setOrg (int $ orgId ): self
444+ public function setOrgId (int $ orgId ): self
445445 {
446446 $ options = array_merge ($ this ->options , ['org_id ' => $ orgId ]);
447447
@@ -662,20 +662,6 @@ public function setTracePropagationTargets(array $tracePropagationTargets): self
662662 return $ this ;
663663 }
664664
665- public function isStrictTracePropagationEnabled (): bool
666- {
667- return $ this ->options ['strict_trace_propagation ' ];
668- }
669-
670- public function setStrictTracePropagationEnabled (bool $ enabled ): self
671- {
672- $ options = array_merge ($ this ->options , ['strict_trace_propagation ' => $ enabled ]);
673-
674- $ this ->options = $ this ->resolver ->resolve ($ options );
675-
676- return $ this ;
677- }
678-
679665 /**
680666 * Gets a list of default tags for events.
681667 *
@@ -1194,7 +1180,6 @@ private function configureOptions(OptionsResolver $resolver): void
11941180 return null ;
11951181 },
11961182 'trace_propagation_targets ' => null ,
1197- 'strict_trace_propagation ' => false ,
11981183 'tags ' => [],
11991184 'error_types ' => null ,
12001185 'max_breadcrumbs ' => self ::DEFAULT_MAX_BREADCRUMBS ,
@@ -1243,7 +1228,6 @@ private function configureOptions(OptionsResolver $resolver): void
12431228 $ resolver ->setAllowedTypes ('ignore_exceptions ' , 'string[] ' );
12441229 $ resolver ->setAllowedTypes ('ignore_transactions ' , 'string[] ' );
12451230 $ resolver ->setAllowedTypes ('trace_propagation_targets ' , ['null ' , 'string[] ' ]);
1246- $ resolver ->setAllowedTypes ('strict_trace_propagation ' , ['null ' , 'bool ' ]);
12471231 $ resolver ->setAllowedTypes ('tags ' , 'string[] ' );
12481232 $ resolver ->setAllowedTypes ('error_types ' , ['null ' , 'int ' ]);
12491233 $ resolver ->setAllowedTypes ('max_breadcrumbs ' , 'int ' );
0 commit comments