php-juicer/src/Recipe/Importer/ImporterInterface.php

16 lines
262 B
PHP
Raw Normal View History

2021-03-01 13:41:21 +00:00
<?php
namespace NoccyLabs\Juicer\Recipe\Importer;
use NoccyLabs\Juicer\Recipe\RecipeInterface;
interface ImporterInterface
{
public function readFromFile(string $filename): RecipeInterface;
public function import(string $data): RecipeInterface;
}