<?php
/*
* Copyright 2011 Piotr Åliwa <hide@address.com>
*
* License information is in LICENSE file
*/
namespace PHPPdf\Parser;
/**
* Generic parser interface
*
* @author Piotr Åliwa <hide@address.com>
*/
interface Parser
{
public function parse($content);
}