HEX
Server: Apache/2.4.58 (Ubuntu)
System: Linux ip-172-26-0-120 6.17.0-1009-aws #9~24.04.2-Ubuntu SMP Fri Mar 6 23:50:29 UTC 2026 x86_64
User: ubuntu (1000)
PHP: 8.3.6
Disabled: NONE
Upload Files
File: /var/www/html/api.aianced.com/vendor/laravel/pail/src/ValueObjects/Origin/Http.php
<?php

namespace Laravel\Pail\ValueObjects\Origin;

class Http
{
    /**
     * Creates a new instance of the http origin.
     */
    public function __construct(
        public string $method,
        public string $path,
        public ?string $authId,
        public ?string $authEmail,
    ) {
        //
    }

    /**
     * Creates a new instance of the http origin from the given json string.
     *
     * @param  array{method: string, path: string, auth_id: ?string, auth_email: ?string}  $array
     */
    public static function fromArray(array $array): static
    {
        ['method' => $method, 'path' => $path, 'auth_id' => $authId, 'auth_email' => $authEmail] = $array;

        return new static($method, $path, $authId, $authEmail);
    }
}