File tree Expand file tree Collapse file tree 1 file changed +11
-13
lines changed Expand file tree Collapse file tree 1 file changed +11
-13
lines changed Original file line number Diff line number Diff line change @@ -87,19 +87,17 @@ private function getFindByCriteria(InputInterface $input): ClientFilter
87
87
/** @var list<string> $scopeStrings */
88
88
$ scopeStrings = $ input ->getOption ('scope ' );
89
89
90
- return
91
- ClientFilter
92
- ::create ()
93
- ->addGrantCriteria (...array_map (static function (string $ grant ): Grant {
94
- return new Grant ($ grant );
95
- }, $ grantStrings ))
96
- ->addRedirectUriCriteria (...array_map (static function (string $ redirectUri ): RedirectUri {
97
- return new RedirectUri ($ redirectUri );
98
- }, $ redirectUriStrings ))
99
- ->addScopeCriteria (...array_map (static function (string $ scope ): Scope {
100
- return new Scope ($ scope );
101
- }, $ scopeStrings ))
102
- ;
90
+ return ClientFilter::create ()
91
+ ->addGrantCriteria (...array_map (static function (string $ grant ): Grant {
92
+ return new Grant ($ grant );
93
+ }, $ grantStrings ))
94
+ ->addRedirectUriCriteria (...array_map (static function (string $ redirectUri ): RedirectUri {
95
+ return new RedirectUri ($ redirectUri );
96
+ }, $ redirectUriStrings ))
97
+ ->addScopeCriteria (...array_map (static function (string $ scope ): Scope {
98
+ return new Scope ($ scope );
99
+ }, $ scopeStrings ))
100
+ ;
103
101
}
104
102
105
103
private function drawTable (InputInterface $ input , OutputInterface $ output , array $ clients ): void
You can’t perform that action at this time.
0 commit comments