18 lines
279 B
PHP
18 lines
279 B
PHP
<?php
|
|
|
|
/**
|
|
* @package: events-venues-task
|
|
* @author: Yevhen Odynets
|
|
* @date: 2024-07-26
|
|
* @time: 19:51
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Services\Faker\Image\Contracts;
|
|
|
|
interface ProviderFactoryInterface
|
|
{
|
|
public static function apply(): ProviderInterface;
|
|
}
|