Piwik\Plugins\ScheduledReports\API::validateCommonReportAttributes PHP Метод

validateCommonReportAttributes() приватный статический Метод

private static validateCommonReportAttributes ( $period, $hour, &$description, &$idSegment, $reportType, $reportFormat )
    private static function validateCommonReportAttributes($period, $hour, &$description, &$idSegment, $reportType, $reportFormat)
    {
        self::validateReportPeriod($period);
        self::validateReportHour($hour);
        self::validateAndTruncateDescription($description);
        self::validateIdSegment($idSegment);
        self::validateReportType($reportType);
        self::validateReportFormat($reportType, $reportFormat);
    }