Completed
Push — master ( 00278a...e64222 )
by Chris
02:44
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.