Barryvdh\TranslationManager\Manager::makeTree PHP Method

makeTree() protected method

protected makeTree ( $translations )
    protected function makeTree($translations)
    {
        $array = array();
        foreach ($translations as $translation) {
            array_set($array[$translation->locale][$translation->group], $translation->key, $translation->value);
        }
        return $array;
    }