Json   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

Changes 0
Metric Value
dl 0
loc 16
rs 10
c 0
b 0
f 0
wmc 2
lcom 0
cbo 2

1 Method

Rating   Name   Duplication   Size   Complexity  
A fromString() 0 8 2
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