PHP 8.3.31
Preview: File.php Size: 1.86 KB
/home/getspomw/royalsquad.us/vendor/laravel/pail/src/File.php

<?php

namespace Laravel\Pail;

use Stringable;

class File implements Stringable
{
    /**
     * The time to live of the file.
     */
    protected const TTL = 3600;

    /**
     * Creates a new instance of the file.
     */
    public function __construct(
        protected string $file,
    ) {
        //
    }

    /**
     * Ensure the file exists.
     */
    public function create(): void
    {
        if (! $this->exists()) {
            $directory = dirname($this->file);

            if (! is_dir($directory)) {
                mkdir($directory, 0755, true);

                file_put_contents($directory.'/.gitignore', "*\n!.gitignore\n");
            }

            touch($this->file);
        }
    }

    /**
     * Determines if the file exists.
     */
    public function exists(): bool
    {
        return file_exists($this->file);
    }

    /**
     * Deletes the file.
     */
    public function destroy(): void
    {
        if ($this->exists()) {
            unlink($this->file);
        }
    }

    /**
     * Log a log message to the file.
     *
     * @param  array<string, mixed>  $context
     */
    public function log(string $level, string $message, array $context = []): void
    {
        if ($this->isStale()) {
            $this->destroy();

            return;
        }

        $loggerFactory = new LoggerFactory($this);

        $logger = $loggerFactory->create();

        $logger->log($level, $message, $context);
    }

    /**
     * Returns the file as string.
     */
    public function __toString(): string
    {
        return $this->file;
    }

    /**
     * Determines if the file is staled.
     */
    protected function isStale(): bool
    {
        $modificationTime = @filemtime($this->file);

        if ($modificationTime === false) {
            return true;
        }

        return time() - $modificationTime > static::TTL;
    }
}

Directory Contents

Dirs: 5 × Files: 8

Name Size Perms Modified Actions
Console DIR
- drwxrwxrwx 2025-09-17 06:53:03
Edit Download
Contracts DIR
- drwxrwxrwx 2025-09-17 06:53:03
Edit Download
Guards DIR
- drwxrwxrwx 2025-09-17 06:53:03
Edit Download
Printers DIR
- drwxrwxrwx 2026-04-21 18:27:07
Edit Download
- drwxrwxrwx 2025-09-17 06:53:03
Edit Download
960 B lrw-r--r-- 2026-04-25 12:17:06
Edit Download
1.86 KB lrw-rw-rw- 2025-09-17 06:53:03
Edit Download
540 B lrw-rw-rw- 2025-09-17 06:53:03
Edit Download
4.01 KB lrw-rw-rw- 2025-09-17 06:53:03
Edit Download
652 B lrw-rw-rw- 2025-09-17 06:53:03
Edit Download
2.05 KB lrw-rw-rw- 2025-09-17 06:53:03
Edit Download
2.37 KB lrw-rw-rw- 2025-09-17 06:53:03
Edit Download
1.84 KB lrw-rw-rw- 2025-09-17 06:53:03
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).