Skip to content

Commit

Permalink
Code style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
antonkomarev committed Jun 19, 2020
1 parent b00fb72 commit b49803e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Illuminate/Foundation/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -1312,6 +1312,6 @@ public function isProviderLoaded(string $provider): bool
*/
public function isProviderNotLoaded(string $provider): bool
{
return !$this->isProviderLoaded($provider);
return ! $this->isProviderLoaded($provider);
}
}

0 comments on commit b49803e

Please sign in to comment.