You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Change AlignedBuilder around so that you can have some finer control on how things are done. As I said before, AlignedBuilder is designed around my arbitrary opinions, but it would be good if developers can add their own specialised handlers into the builder. This would be a BC-breaking change, but can be shipped with v4. I envisaged something like:
functionmyTxtHandler(Rdata\TXT$txt): string {
//return text that is cut down into smaller chunks.
}
$builder = newAlignedBuilder();
//(string $type, callable $renderer)$builder->setRdataRenderer('TXT', 'myTxtHandler');
* [Issue #85](#85) - `Badow\DNS\AlignedBuilder` now has finer controls. You can now
define the order of rendering Resource Records and add or change Rdata output formatters (see `Docs/AlignedZoneBuilder`.
* `Badow\DNS\AlignedBuilder` cannot be called statically anymore. It must be instantiated.
* Update documentation
Change
AlignedBuilder
around so that you can have some finer control on how things are done. As I said before,AlignedBuilder
is designed around my arbitrary opinions, but it would be good if developers can add their own specialised handlers into the builder. This would be a BC-breaking change, but can be shipped with v4. I envisaged something like:Originally posting in PR #83
The text was updated successfully, but these errors were encountered: