Completed
Push — master ( 5dcaed...1cb772 )
by Filipe
02:47
created

OrmAnnotation::getParameters()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 4
ccs 2
cts 2
cp 1
rs 10
cc 1
eloc 2
nc 1
nop 0
crap 1
1
<?php
2
3
/**
4
 * This file is part of slick/orm package
5
 *
6
 * For the full copyright and license information, please view the LICENSE
7
 * file that was distributed with this source code.
8
 */
9
10
namespace Slick\Orm\Annotations;
11
12
use Slick\Common\Annotation\Basic;
13
14
/**
15
 * Orm Annotation
16
 *
17
 * @package Slick\Orm\Annotations
18
 * @author  Filipe Silva <[email protected]>
19
 */
20
abstract class OrmAnnotation extends Basic
21
{
22
23
    /**
24
     * Get all parameters
25
     *
26
     * @return array
27
     */
28 6
    public function getParameters()
29
    {
30 6
        return $this->parameters;
31
    }
32
}