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();
}