Completed
Push — master ( 79c16c...fd607f )
by Steve
01:44
created
src/UrlDiceGenerator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@
 block discarded – undo
70 70
         $data = [];
71 71
         $valid = preg_match("/(?P<count>[0-9]+)?d(?P<type>[^\/]+)/i", $part, $data);
72 72
         if (!$valid) {
73
-            throw new UncreatableDiceException("Problem creating dice from incorrectly formated data: " . $part);
73
+            throw new UncreatableDiceException("Problem creating dice from incorrectly formated data: ".$part);
74 74
         }
75 75
         if (!$data["count"]) {
76 76
             $data["count"] = 1;
Please login to merge, or discard this patch.