ISubject::setSubjectId()
last analyzed

Size

Total Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 1
c 0
b 0
f 0
1
<?php
2
interface ISubject
3
{
4
    /**
5
     * @return void
6
     */
7
    public function setSubjectId($id);
8
9
    /**
10
     * @return string
11
     */
12
    public function getSubjectName();
13
}
0 ignored issues
show
Coding Style introduced by
As per coding style, files should not end with a newline character.

This check marks files that end in a newline character, i.e. an empy line.

Loading history...
14