dragonmantank/fillet

View on GitHub
src/Fillet/Writer/WriterInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Fillet\Writer;

/**
 * Interface for Writers
 *
 * @package Fillet\Writer
 */
interface WriterInterface
{
    /**
     * Write out data
     *
     * @param string $data Data to use to construct the file
     */
    public function write($data);
}