Completed
Push — develop ( 4c851b...fa6865 )
by Freddie
03:54
created
src/Factories/User/SQLSrvUserFactory.php 1 patch
Upper-Lower-Casing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
 GO
30 30
 CREATE USER %1\$s FOR LOGIN %1\$s;
31 31
 GO
32
-T
32
+t
33 33
 , $this->name, $this->password);
34 34
     }
35 35
 
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
         return \sprintf(<<<T
39 39
 DROP USER %s;
40 40
 GO
41
-T
41
+t
42 42
 , $this->name);
43 43
     }
44 44
 
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
         return \sprintf(<<<T
108 108
 GRANT %s TO %s;
109 109
 GO
110
-T
110
+t
111 111
 , $permission, $this->name);
112 112
     }
113 113
 
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
         return \sprintf(<<<T
117 117
 GRANT %s %s TO %s;
118 118
 GO
119
-T
119
+t
120 120
 , $permission, $scope, $this->name);
121 121
     }
122 122
 }
Please login to merge, or discard this patch.