Identifiable
last analyzed

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 8

1 Method

Rating   Name   Duplication   Size   Complexity  
getId() 0 1 ?
1
<?php
2
3
/*
4
 * This file is part of the Stinger Soft Platform package.
5
 *
6
 * (c) Oliver Kotte <[email protected]>
7
 * (c) Florian Meyer <[email protected]>
8
 *
9
 * For the full copyright and license information, please view the LICENSE
10
 * file that was distributed with this source code.
11
 */
12
namespace StingerSoft\PlatformBundle\Model;
13
14
/**
15
 *
16
 * $LastChangedBy: $
17
 * $LastChangedDate: $
18
 *
19
 * Interface Identifiable
20
 *
21
 * @package StingerSoft\PlatformBundle\Entity
22
 */
23
interface Identifiable {
0 ignored issues
show
Coding Style introduced by
Identifiable does not seem to conform to the naming convention (^[A-Z][a-zA-Z0-9]*Interface$).

This check examines a number of code elements and verifies that they conform to the given naming conventions.

You can set conventions for local variables, abstract classes, utility classes, constant, properties, methods, parameters, interfaces, classes, exceptions and special methods.

Loading history...
24
25
	/**
26
	 *
27
	 * @return mixed
28
	 */
29
	public function getId();
30
}