Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
Nielsvanpach authored and github-actions[bot] committed Jan 18, 2024
1 parent a85d665 commit 35ae983
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions playground.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@

use Spatie\Holidays\Countries\Country;
use Spatie\Holidays\Holidays;

use function Laravel\Prompts\select;

require __DIR__ . '/vendor/autoload.php';
require __DIR__.'/vendor/autoload.php';

$countries = [];

foreach (glob(__DIR__.'/src/Countries/*.php') as $filename) { // @phpstan-ignore-line
$countryClass = '\\Spatie\\Holidays\\Countries\\' . basename($filename, '.php');
$countryClass = '\\Spatie\\Holidays\\Countries\\'.basename($filename, '.php');

if (basename($filename) === 'Country.php') {
continue;
Expand Down

0 comments on commit 35ae983

Please sign in to comment.