15 lines
335 B
PHP
15 lines
335 B
PHP
<?php
|
|
|
|
namespace App\Service\SnipParser;
|
|
|
|
use Symfony\Component\DependencyInjection\Attribute\AutoconfigureTag;
|
|
|
|
#[AutoconfigureTag]
|
|
interface ParserInterface
|
|
{
|
|
public function parseView(string $content): string;
|
|
|
|
public function parseRaw(string $content): string;
|
|
|
|
public static function getName(): string;
|
|
} |