File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 8
8
9
9
class MSSQLSource extends PDOSource implements SourceInterface
10
10
{
11
- public function setOverrideSQL ($ overrideSQL ) : SourceInterface
11
+ public function setOverrideSQL ($ overrideSQL ): SourceInterface
12
12
{
13
13
$ selectString = 'SELECT ' ;
14
14
Original file line number Diff line number Diff line change @@ -43,15 +43,15 @@ protected function getTableFields()
43
43
return $ tableFields ;
44
44
}
45
45
46
- public function addJoin (Join $ join ) : SourceInterface
46
+ public function addJoin (Join $ join ): SourceInterface
47
47
{
48
48
$ this ->joins [] = $ join ;
49
49
$ this ->fields = $ this ->getTableFields ();
50
50
51
51
return $ this ;
52
52
}
53
53
54
- public function setOverrideSQL ($ overrideSQL ) : SourceInterface
54
+ public function setOverrideSQL ($ overrideSQL ): SourceInterface
55
55
{
56
56
$ selectString = 'SELECT ' ;
57
57
@@ -71,7 +71,7 @@ public function setOverrideSQL($overrideSQL) : SourceInterface
71
71
return $ this ;
72
72
}
73
73
74
- public function setPerPage ($ perPage = 10 ) : SourceInterface
74
+ public function setPerPage ($ perPage = 10 ): SourceInterface
75
75
{
76
76
$ this ->perPage = $ perPage ;
77
77
You can’t perform that action at this time.
0 commit comments