Piwik\Measurable\Type::getId PHP Метод

getId() публичный Метод

public getId ( )
    public function getId()
    {
        $id = static::ID;
        if (empty($id)) {
            $message = 'Type %s does not define an ID. Set the ID constant to fix this issue';
            throw new \Exception(sprintf($message, get_called_class()));
        }
        return $id;
    }