1313class ReadCommand extends Command
1414{
1515 protected $ signature = 'read '
16- . ' {repository? : Full or partial repository name} '
17- . ' {--i|without-issues : Exclude issues from processing} '
18- . ' {--s|without-pulls : Exclude Pull Requests from processing} '
19- . ' {--o|with-open : Process including open Issues and Pull Requests} '
20- . ' {--token= : GitHub access token with "notifications" permissions} ' ;
16+ . ' {repository? : Full or partial repository name} '
17+ . ' {--i|without-issues : Exclude issues from processing} '
18+ . ' {--s|without-pulls : Exclude Pull Requests from processing} '
19+ . ' {--o|with-open : Process including open Issues and Pull Requests} '
20+ . ' {--token= : GitHub access token with "notifications" permissions} ' ;
2121
2222 protected $ description = 'Read all issue notifications ' ;
2323
@@ -59,8 +59,8 @@ protected function read(?string $repository): void
5959 protected function shouldBeAll (?string $ repository ): bool
6060 {
6161 return empty ($ repository )
62- && !$ this ->withoutIssues ()
63- && !$ this ->withoutPulls ()
62+ && ! $ this ->withoutIssues ()
63+ && ! $ this ->withoutPulls ()
6464 && $ this ->withOpen ();
6565 }
6666
@@ -69,9 +69,9 @@ protected function gitHub(): GitHub
6969 $ client = ClientFactory::make ($ this ->token ());
7070
7171 return app (GitHub::class, [
72- 'output ' => $ this ->components ,
73- 'github ' => $ client ,
74- 'paginator ' => new ResultPager ($ client )
72+ 'output ' => $ this ->components ,
73+ 'github ' => $ client ,
74+ 'paginator ' => new ResultPager ($ client ),
7575 ]);
7676 }
7777
0 commit comments