xref: /dokuwiki/inc/Parsing/Handler/CallWriterInterface.php (revision be906b566b9bdfd92c032ee07c4fd077d820a8d1)
1*be906b56SAndreas Gohr<?php
2*be906b56SAndreas Gohr
3*be906b56SAndreas Gohrnamespace dokuwiki\Parsing\Handler;
4*be906b56SAndreas Gohr
5*be906b56SAndreas Gohrinterface CallWriterInterface
6*be906b56SAndreas Gohr{
7*be906b56SAndreas Gohr    public function writeCall($call);
8*be906b56SAndreas Gohr    public function writeCalls($calls);
9*be906b56SAndreas Gohr    public function finalise();
10*be906b56SAndreas Gohr}
11