master

laravel/framework

Last updated at: 29/12/2023 09:22

PotentiallyMissing.php

TLDR

This file defines an interface called PotentiallyMissing within the Illuminate\Http\Resources namespace. It declares a single method isMissing() that determines if an object should be considered "missing".

Methods

isMissing

Determines if the object should be considered "missing".

Classes

None

<?php

namespace Illuminate\Http\Resources;

interface PotentiallyMissing
{
    /**
     * Determine if the object should be considered "missing".
     *
     * @return bool
     */
    public function isMissing();
}