Completed
Push — master ( a76973...cc3c7d )
by Basil
08:54
created
core/web/jsonld/Rating.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace luya\web\jsonld;
4 4
 
5 5
 use luya\helpers\ObjectHelper;
6
-use yii\base\InvalidConfigException;
7 6
 
8 7
 /**
9 8
  * JsonLd Rating.
Please login to merge, or discard this patch.
core/tag/tags/MailTag.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -72,9 +72,9 @@
 block discarded – undo
72 72
             // Encode 50% of characters including several that always should be encoded
73 73
             if (in_array($email[$i], $alwaysEncode) || mt_rand(1, 100) < 50) {
74 74
                 if (mt_rand(0, 1)) {
75
-                    $result .= '&#' . ord($email[$i]) . ';';
75
+                    $result .= '&#'.ord($email[$i]).';';
76 76
                 } else {
77
-                    $result .= '&#x' . dechex(ord($email[$i])) . ';';
77
+                    $result .= '&#x'.dechex(ord($email[$i])).';';
78 78
                 }
79 79
             } else {
80 80
                 $result .= $email[$i];
Please login to merge, or discard this patch.