Passed
Branch master (28bb66)
by Christian
02:04
created
src/RandomString.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -135,8 +135,8 @@
 block discarded – undo
135 135
         $character_pool_size = strlen($this->getCharacterPool());
136 136
         if ($this->unique_characters && $length > $character_pool_size) {
137 137
             throw new CharacterPoolTooSmallException(
138
-                "Character pool of length " . $character_pool_size .
139
-                " is too small to generate a random unique character string with length " . $length . "!"
138
+                "Character pool of length ".$character_pool_size.
139
+                " is too small to generate a random unique character string with length ".$length."!"
140 140
             );
141 141
         }
142 142
     }
Please login to merge, or discard this patch.