wikimedia/mediawiki-extensions-Wikibase

View on GitHub
repo/rest-api/src/Application/UseCases/PatchPropertyLabels/PatchPropertyLabelsRequest.php

Summary

Maintainability
B
6 hrs
Test Coverage
<?php declare( strict_types=1 );

namespace Wikibase\Repo\RestApi\Application\UseCases\PatchPropertyLabels;

use Wikibase\Repo\RestApi\Application\UseCaseRequestValidation\EditMetadataRequest;
use Wikibase\Repo\RestApi\Application\UseCaseRequestValidation\PatchRequest;
use Wikibase\Repo\RestApi\Application\UseCaseRequestValidation\PropertyIdRequest;
use Wikibase\Repo\RestApi\Application\UseCaseRequestValidation\UseCaseRequest;

/**
 * @license GPL-2.0-or-later
 */
class PatchPropertyLabelsRequest implements UseCaseRequest, PropertyIdRequest, PatchRequest, EditMetadataRequest {

    private string $propertyId;
    private array $patch;
    private array $editTags;
    private bool $isBot;
    private ?string $comment;
    private ?string $username;

    public function __construct( string $propertyId,
        array $patch,
        array $editTags,
        bool $isBot,
        ?string $comment,
        ?string $username
    ) {
        $this->propertyId = $propertyId;
        $this->patch = $patch;
        $this->editTags = $editTags;
        $this->isBot = $isBot;
        $this->comment = $comment;
        $this->username = $username;
    }

    public function getPropertyId(): string {
        return $this->propertyId;
    }

    public function getPatch(): array {
        return $this->patch;
    }

    public function getEditTags(): array {
        return $this->editTags;
    }

    public function isBot(): bool {
        return $this->isBot;
    }

    public function getComment(): ?string {
        return $this->comment;
    }

    public function getUsername(): ?string {
        return $this->username;
    }

}