%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /data/www_bck/varak.cloud_bck/tracker.varak.cloud/vendor/samdark/sitemap/
Upload File :
Create Path :
Current File : //data/www_bck/varak.cloud_bck/tracker.varak.cloud/vendor/samdark/sitemap/WriterInterface.php

<?php
namespace samdark\sitemap;

/**
 * WriterInterface represents a data sink
 *
 * Data is successively given by calling append. After calling finish all of it
 * should have been written to the target.
 */
interface WriterInterface
{
    /**
     * Queue data for writing to the target
     *
     * @param string $data
     */
    public function append($data);

    /**
     * Ensure all queued data is written and close the target
     *
     * No further data may be appended after this.
     */
    public function finish();
}

Zerion Mini Shell 1.0