Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
StyleCIBot committed Mar 31, 2022
1 parent 86c5f9d commit 0aa2e45
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/SecurityDefinitions.php
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ protected function injectSecurity(Collection $documentation, array $config): Col
}

foreach ($config as $key => $cfg) {
if (!empty($cfg)) {
if (! empty($cfg)) {
$security->put($key, $this->arrayToObject($cfg));
}
}
Expand Down
3 changes: 2 additions & 1 deletion tests/SecurityDefinitionsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ class SecurityDefinitionsTest extends TestCase
*
* @throws L5SwaggerException
*/
public function itWillNotAddEmptySecurityItems(): void {
public function itWillNotAddEmptySecurityItems(): void
{
$fileSystem = new Filesystem();

$this->setAnnotationsPath();
Expand Down

0 comments on commit 0aa2e45

Please sign in to comment.