Completed
Push — feature-laravel-5.4 ( 3c5a91...45702d )
by Kirill
110:01 queued 60:28
created
app/Services/ImageUploader/ImageUploader.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -172,7 +172,7 @@
 block discarded – undo
172 172
     private function removeTemporaryFileOrFail(string $temporaryFilename): bool
173 173
     {
174 174
         if (! $this->removeTemporaryFile($temporaryFilename)) {
175
-            throw new FileException("Can not remove temporary file ${temporaryFilename}.");
175
+            throw new FileException("Can not remove temporary file ${temporaryfilename}.");
176 176
         }
177 177
 
178 178
         return true;
Please login to merge, or discard this patch.
app/Services/ContentRenderer/RenderersRepository.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
         $class = $this->get(sprintf('renderers.%s', $name));
51 51
 
52 52
         if ($class === null) {
53
-            throw new \InvalidArgumentException("Renderer ${name} not found");
53
+            throw new \InvalidArgumentException("renderer ${name} not found");
54 54
         }
55 55
 
56 56
         return $class;
Please login to merge, or discard this patch.