Sulu\Component\Content\ContentTypeManager::getAll PHP Method

getAll() public method

public getAll ( )
    public function getAll()
    {
        $result = [];
        foreach ($this->aliasServiceIdMap as $alias => $id) {
            $result[$alias] = ['instance' => $this->get($alias), 'id' => $id];
        }
        return $result;
    }