Test Setup Failed
Push — master ( 0e2875...7d63a7 )
by Php Easy Api
04:46
created

SchemaHelper::getArguments()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 1 Features 0
Metric Value
cc 1
eloc 1
c 1
b 1
f 0
nc 1
nop 0
dl 0
loc 3
rs 10
1
<?php
2
3
namespace Migratio;
4
5
class SchemaHelper
6
{
7
    /**
8
     * @return mixed
9
     */
10
    public function getArguments()
11
    {
12
        return $this->arguments;
13
    }
14
    
15
    /**
16
     * @return mixed
17
     */
18
    public function getConnection()
19
    {
20
        return $this->connection;
21
    }
22
23
    /**
24
     * @return mixed
25
     */
26
    public function getConfig()
27
    {
28
        return $this->config;
29
    }
30
31
    /**
32
     * @return mixed
33
     */
34
    public function getDriver()
35
    {
36
        return $this->driver;
37
    }
38
39
    /**
40
     * @return string
41
     */
42
    public function getGrammarPath()
43
    {
44
        return $this->grammarPath;
45
    }
46
47
}