This repository has been archived on 2019-03-01. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
paper-pi/app/Paper/Interfaces/Cinema.php
2017-07-18 08:57:31 +02:00

20 lines
304 B
PHP

<?php
namespace App\Paper\Interfaces;
/**
* Created by PhpStorm.
* User: k
* Date: 28.05.2017
* Time: 20:14
*/
interface Cinema
{
function fetchRepertorire($day, $cinemaId = null);
function parseRepertoire($day, $cinemaId = null);
function convertToPrint($day, $cinemaId = null);
}