Completed
Pull Request — master (#17)
by Luc
07:11 queued 03:45
created
src/Image/Controllers/ImageController.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
         $this->imageValidator->validate($uploadedFile);
71 71
 
72 72
         $uuid = $this->uuidFactory->uuid4();
73
-        $filename = $uuid->toString().'.'. $uploadedFile->getClientOriginalExtension();
73
+        $filename = $uuid->toString().'.'.$uploadedFile->getClientOriginalExtension();
74 74
 
75 75
         $stream = fopen($uploadedFile->getRealPath(), 'r+');
76 76
         $this->fileSystem->writeStream($filename, $stream);
Please login to merge, or discard this patch.
src/Question/Controllers/QuestionViewController.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -162,7 +162,7 @@
 block discarded – undo
162 162
     {
163 163
         if ($request->getMethod() === 'POST') {
164 164
             $this->questionRepository->delete(
165
-               $this->uuidFactory->fromString($id)
165
+                $this->uuidFactory->fromString($id)
166 166
             );
167 167
 
168 168
             $this->addFlash('success', 'De vraag is verwijderd.');
Please login to merge, or discard this patch.