Skip to content

Commit

Permalink
update formating
Browse files Browse the repository at this point in the history
  • Loading branch information
claudemyburgh committed Jun 17, 2024
1 parent ff31a8f commit 94fbe9c
Show file tree
Hide file tree
Showing 3 changed files with 193 additions and 190 deletions.
7 changes: 3 additions & 4 deletions count.php
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
<?php require_once './vendor/autoload.php';


use Designbycode\BusinessNameGenerator\BusinessNameGenerator;

$businessName = new BusinessNameGenerator();
$businessName = new BusinessNameGenerator;
$names = $businessName;
//var_dump($names);
//echo '-----------------------';
Expand All @@ -29,11 +28,11 @@
</h2>

<div class="text-xl">
<?php foreach ($names->generate()->randomArray(17) as $name) : ?>
<?php foreach ($names->generate()->randomArray(17) as $name) { ?>
<span class="even:text-amber-500 inline-block p-2">
<?= $name ?>
</span>
<?php endforeach; ?>
<?php } ?>
</div>


Expand Down
Loading

0 comments on commit 94fbe9c

Please sign in to comment.