westdc-zf1/application/module/Goodby/CSV/Import/Protocol/InterpreterInterface.php

16 lines
215 B
PHP

<?php
namespace Goodby\CSV\Import\Protocol;
/**
* Interface of the Interpreter
*/
interface InterpreterInterface
{
/**
* @param $line
* @return void
*/
public function interpret($line);
}