blob: b76a7f20ba67d72568f3b057c6d2fdb4cb075ab6 [file] [log] [blame]
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +02001<?php
2
3/*
4 * This file is part of the Symfony package.
5 *
6 * (c) Fabien Potencier <fabien@symfony.com>
7 *
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
10 */
11
12namespace Symfony\Component\Translation\Extractor;
13
14use Symfony\Component\Translation\MessageCatalogue;
15
16/**
17 * Extracts translation messages from a directory or files to the catalogue.
18 * New found messages are injected to the catalogue using the prefix.
19 *
20 * @author Michel Salib <michelsalib@hotmail.com>
21 */
22interface ExtractorInterface
23{
24 /**
25 * Extracts translation messages from files, a file or a directory to the catalogue.
26 *
27 * @param string|iterable<string> $resource Files, a file or a directory
28 */
Matthias Andreas Benkard1ba53812022-12-27 17:32:58 +010029 public function extract(string|iterable $resource, MessageCatalogue $catalogue);
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +020030
31 /**
32 * Sets the prefix that should be used for new found messages.
33 */
34 public function setPrefix(string $prefix);
35}