Completed
Push — master ( 5894ae...4ef642 )
by Julien
02:50
created
lib/DataType/AnyType.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -33,13 +33,13 @@
 block discarded – undo
33 33
  */
34 34
 abstract class AnyType
35 35
 {
36
-   /**
37
-    *
38
-    * Add attribute to the given element.
39
-    *
40
-    * The data type are responsible to add the given attribute, content child
41
-    * to the Element.
42
-    *
43
-    */
36
+    /**
37
+     *
38
+     * Add attribute to the given element.
39
+     *
40
+     * The data type are responsible to add the given attribute, content child
41
+     * to the Element.
42
+     *
43
+     */
44 44
     abstract public function setValueToElement(\DOMElement &$el, \DOMDocument $doc = null);
45 45
 }
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.