Json::fromString()   A
last analyzed

Complexity

Conditions 2
Paths 2

Size

Total Lines 8
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 2
eloc 4
nc 2
nop 3
dl 0
loc 8
rs 9.4285
c 0
b 0
f 0
1
<?php
2
3
namespace Gettext\Extractors;
4
5
use Gettext\Translations;
6
use Gettext\Utils\MultidimensionalArrayTrait;
7
8
/**
9
 * Class to get gettext strings from json.
10
 */
11
class Json extends Extractor implements ExtractorInterface
12
{
13
    use MultidimensionalArrayTrait;
14
15
    /**
16
     * {@inheritdoc}
17
     */
18
    public static function fromString($string, Translations $translations, array $options = [])
19
    {
20
        $messages = json_decode($string, true);
21
22
        if (is_array($messages)) {
23
            self::fromArray($messages, $translations);
24
        }
25
    }
26
}
27