We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0bfd719 commit 4f1c45fCopy full SHA for 4f1c45f
src/Processor/RecordProcessorManager.php
@@ -15,6 +15,11 @@ public function registerRecordProcessors(array $processors): void
15
$this->processors = \array_merge($this->processors, $processors);
16
}
17
18
+ public function getProcessors(): array
19
+ {
20
+ return $this->processors;
21
+ }
22
+
23
public function getRecordProcessor(string $modelType): ?ModelUploadRecordProcessor
24
{
25
$processorClass = $this->processors[$modelType] ?? null;
0 commit comments