9 lines
154 B
PHP
9 lines
154 B
PHP
<?php
|
|
|
|
namespace App\Service\Client\Interfaces;
|
|
|
|
interface BitrixClientServiceInterface
|
|
{
|
|
public function getSpecialistImage(string $path): string;
|
|
}
|