ISubject
last analyzed

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 12
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
setSubjectId() 0 1 ?
getSubjectName() 0 1 ?
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