Completed
Push — master ( 5894ae...4ef642 )
by Julien
02:50
created
lib/DataType/Boolean/Boolean.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -52,6 +52,9 @@
 block discarded – undo
52 52
         return $this->value;
53 53
     }
54 54
 
55
+    /**
56
+     * @return string
57
+     */
55 58
     public function getTag()
56 59
     {
57 60
         return $this->tag;
Please login to merge, or discard this patch.
lib/Helper/IdentifierHelper.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
         // only for php7.0
41 41
         $data = random_bytes(16);
42 42
         
43
-       //assert(strlen($data) == 16);
43
+        //assert(strlen($data) == 16);
44 44
 
45 45
         $data[6] = chr(ord($data[6]) & 0x0f | 0x40); // set version to 0100
46 46
         $data[8] = chr(ord($data[8]) & 0x3f | 0x80); // set bits 6-7 to 10
Please login to merge, or discard this patch.