nginxsonarrradarrplexorganizrdashboardnzbgetbookmarkapplication-dashboardmuximuxlandingpagestartpagelandinghtpcserverhomepagesabnzbdheimdallembycouchpotato
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
481 B
16 lines
481 B
<?php
|
|
require_once __DIR__ . '/../vendor/autoload.php';
|
|
|
|
$generator = Faker\Factory::create();
|
|
$generator->seed(1);
|
|
$documentor = new Faker\Documentor($generator);
|
|
?>
|
|
<?php foreach ($documentor->getFormatters() as $provider => $formatters): ?>
|
|
|
|
### `<?php echo $provider ?>`
|
|
|
|
<?php foreach ($formatters as $formatter => $example): ?>
|
|
<?php echo str_pad($formatter, 23) ?><?php if ($example): ?> // <?php echo $example ?> <?php endif; ?>
|
|
|
|
<?php endforeach; ?>
|
|
<?php endforeach;
|
|
|