Updated helios and multikino classes and interface they are implementing.

This commit is contained in:
kplaczek
2018-04-05 22:38:20 +02:00
parent 46d32b2cec
commit d68020d056
4 changed files with 171 additions and 91 deletions

View File

@@ -11,10 +11,14 @@ namespace App\Paper\Interfaces;
*/
interface Cinema
{
function fetchRepertorire($day, $cinemaId = null);
function setCinemaId($cinemaId);
function parseRepertoire($day, $cinemaId = null);
function setDay($day);
function convertToPrint($day, $cinemaId = null);
function fetchRepertorire();
function parseRepertoire();
function convertToPrint();
}