Back | Home
الـ Path الحالي: /home/picotech/domains/instantly.picotech.app/public_html/public/./../app/.././../../finland.picotech.app/public_html/storage/../vendor/./nikic/../dompdf/../alexandr-mironov/../monolog/../unicodeveloper/../dragonmantank/../nunomaduro/../mockery/../phar-io/../mockery/../laravel/prompts/../octane/src/RoadRunner/.././Contracts
الملفات الموجودة في هذا الـ Path:
.
..
Client.php
DispatchesCoroutines.php
DispatchesTasks.php
OperationTerminated.php
ServerProcessInspector.php
ServesStaticFiles.php
StoppableClient.php
Worker.php

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

<?php

namespace Laravel\Octane\Contracts;

use Illuminate\Http\Request;
use Laravel\Octane\RequestContext;

interface ServesStaticFiles
{
    /**
     * Determine if the request can be served as a static file.
     */
    public function canServeRequestAsStaticFile(Request $request, RequestContext $context): bool;

    /**
     * Serve the static file that was requested.
     */
    public function serveStaticFile(Request $request, RequestContext $context): void;
}