• File: CountryExtension.php
  • Full Path: /home/masbinta/public_html/core/vendor/fakerphp/faker/src/Faker/Extension/CountryExtension.php
  • File size: 258 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace Faker\Extension;

/**
 * @experimental This interface is experimental and does not fall under our BC promise
 */
interface CountryExtension extends Extension
{
    /**
     * @example 'Japan'
     */
    public function country(): string;
}