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/Console.php
<?php

namespace Laravel\Pail\ValueObjects\Origin;

class Console
{
    /**
     * Creates a new instance of the console origin.
     */
    public function __construct(
        public ?string $command,
    ) {
        //
    }

    /**
     * Creates a new instance of the console origin from the given json string.
     *
     * @param  array{command?: string}  $array
     */
    public static function fromArray(array $array): static
    {
        $command = $array['command'] ?? null;

        return new static($command);
    }
}