Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2
3namespace BO\Zmsdb\Interfaces;
4
5interface ExchangeSubject
6{
7    public function readEntity(
8        $subjectid,
9        \DateTimeInterface $datestart,
10        \DateTimeInterface $dateend,
11        $period = 'day'
12    );
13    public function readSubjectList();
14    public function readPeriodList($subjectid, $period = 'day');
15}