Skip to content

Commit b4fa11a

Browse files
committed
Change public methods to private
1 parent 0f0fd1d commit b4fa11a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/Fogger/Data/Writer/ChunkWriterProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public function __construct(iterable $writers)
1515
}
1616
}
1717

18-
public function addWriter(ChunkWriterInterface $chunkWriter)
18+
private function addWriter(ChunkWriterInterface $chunkWriter)
1919
{
2020
$this->chunkWriters[] = $chunkWriter;
2121
}

src/Fogger/Mask/MaskStrategyProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public function __construct(iterable $masks)
1616
}
1717
}
1818

19-
public function addMask(MaskStrategyInterface $mask)
19+
private function addMask(MaskStrategyInterface $mask)
2020
{
2121
$this->masks[] = $mask;
2222
}

src/Fogger/Subset/SubsetStrategyProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public function __construct(iterable $subsetStrategies)
1515
}
1616
}
1717

18-
public function addSubsetStrategy(SubsetStrategyInterface $subsetStrategy)
18+
private function addSubsetStrategy(SubsetStrategyInterface $subsetStrategy)
1919
{
2020
$this->subsetStrategies[] = $subsetStrategy;
2121
}

0 commit comments

Comments
 (0)