Failed Conditions
Push — master ( 8905c0...fde2fe )
by Michał
02:07
created
src/Command/Note/ViewOneNote.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
         $question = new Question('Please provide ID of the note you would like to read' . PHP_EOL, '1');
35 35
         $question->setAutocompleterValues(['1']);
36 36
         $id   = $helper->ask($input, $output, $question);
37
-        $note = $client->getNotesEndpoint()->getOne(new NoteId((int)$id));
37
+        $note = $client->getNotesEndpoint()->getOne(new NoteId((int) $id));
38 38
 
39 39
         $output->writeln("<info>ID:</info>" . PHP_EOL . $note->getId()->getValue());
40 40
         $output->writeln("<info>Title:</info>" . PHP_EOL . $note->getTitle());
Please login to merge, or discard this patch.