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

SchemaHelper   A

Complexity

Total Complexity 5

Size/Duplication

Total Lines 40
Duplicated Lines 0 %

Importance

Changes 2
Bugs 1 Features 0
Metric Value
eloc 6
c 2
b 1
f 0
dl 0
loc 40
rs 10
wmc 5

5 Methods

Rating   Name   Duplication   Size   Complexity  
A getArguments() 0 3 1
A getDriver() 0 3 1
A getConnection() 0 3 1
A getConfig() 0 3 1
A getGrammarPath() 0 3 1
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
}