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

24 lines
304 B
PHP

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