Skip to content

Commit

Permalink
Merge pull request #13 from martbock/analysis-lKMnGN
Browse files Browse the repository at this point in the history
Apply fixes from StyleCI
  • Loading branch information
martbock authored Feb 9, 2022
2 parents 1edf909 + 829f411 commit c0a3c0a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/DicewareServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@

use Illuminate\Support\Facades\File;
use Illuminate\Support\ServiceProvider;
use Martbock\Diceware\Exceptions\InvalidConfigurationException;
use function is_bool;
use function is_int;
use function is_string;
use Martbock\Diceware\Exceptions\InvalidConfigurationException;

class DicewareServiceProvider extends ServiceProvider
{
Expand Down
6 changes: 3 additions & 3 deletions src/WordGenerator.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@

namespace Martbock\Diceware;

use Illuminate\Support\Facades\File;
use Martbock\Diceware\Exceptions\InvalidConfigurationException;
use Martbock\Diceware\Exceptions\WordlistInvalidException;
use function array_push;
use function fclose;
use function feof;
use function fgets;
use function fopen;
use Illuminate\Support\Facades\File;
use function implode;
use Martbock\Diceware\Exceptions\InvalidConfigurationException;
use Martbock\Diceware\Exceptions\WordlistInvalidException;
use function preg_match;
use function random_int;
use function strpos;
Expand Down
2 changes: 1 addition & 1 deletion tests/Feature/DicewareTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

namespace Martbock\Diceware\Tests\Feature;

use function explode;
use Martbock\Diceware\Facades\Diceware;
use Martbock\Diceware\Tests\TestCase;
use function explode;

class DicewareTest extends TestCase
{
Expand Down

0 comments on commit c0a3c0a

Please sign in to comment.