eZ\Publish\Core\Persistence\Legacy\Content\ObjectState\Gateway\ExceptionConversion::loadObjectStateListData PHP Method

loadObjectStateListData() public method

Loads data for all object states belonging to group with $groupId ID.
public loadObjectStateListData ( mixed $groupId ) : array
$groupId mixed
return array
    public function loadObjectStateListData($groupId)
    {
        try {
            return $this->innerGateway->loadObjectStateListData($groupId);
        } catch (DBALException $e) {
            throw new RuntimeException('Database error', 0, $e);
        } catch (PDOException $e) {
            throw new RuntimeException('Database error', 0, $e);
        }
    }