Completed
Push — master ( e24932...fec1b8 )
by Chris
01:58
created
src/Uid.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace Twistor;
4 4
 
5
-class Uid {
5
+class Uid
6
+{
6 7
     public function getUid()
7 8
     {
8 9
         return (int) getmyuid();
Please login to merge, or discard this patch.
src/PosixUid.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace Twistor;
4 4
 
5
-class PosixUid extends Uid {
5
+class PosixUid extends Uid
6
+{
6 7
     public function getUid()
7 8
     {
8 9
         return (int) posix_getuid();
Please login to merge, or discard this patch.