Back | Home
الـ Path الحالي: /home/picotech/domains/instantly.picotech.app/public_html/../../instantly.picotech.app/public_html/vendor/egulias/../fakerphp/../maatwebsite/../psy/../fakerphp/../async-aws/core/src
الملفات الموجودة في هذا الـ Path:
.
..
AbstractApi.php
AwsClientFactory.php
AwsError
Configuration.php
Credentials
EndpointDiscovery
EnvVar.php
Exception
HttpClient
Input.php
Request.php
RequestContext.php
Response.php
Result.php
Signer
Stream
Sts
Test
Waiter.php

مشاهدة ملف: Input.php

<?php

namespace AsyncAws\Core;

/**
 * Representation of a AWS Request.
 *
 * @author Jérémy Derussé <jeremy@derusse.com>
 */
abstract class Input
{
    /**
     * @var string|null
     */
    public $region;

    /**
     * @param array{'@region'?: ?string,...} $input
     */
    protected function __construct(array $input)
    {
        $this->region = $input['@region'] ?? null;
    }

    public function setRegion(?string $region): void
    {
        $this->region = $region;
    }

    public function getRegion(): ?string
    {
        return $this->region;
    }

    abstract public function request(): Request;
}