![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/syn.corals.io/Corals/modules/CMS/Exceptions/ |
<?php namespace Corals\Modules\CMS\Exceptions; use Exception; use Corals\Modules\CMS\Classes\Feed\FeedItem; class InvalidFeedItem extends Exception { /** @var \Corals\Modules\CMS\Classes\Feed\FeedItem|null */ public $subject; public static function notFeedable($subject) { return (new static('Object doesn\'t implement `Corals\Modules\CMS\Classes\Feed\Feedable`'))->withSubject($subject); } public static function notAFeedItem($subject) { return (new static('`toFeedItem` should return an instance of `Corals\Modules\CMS\Classes\Feed\Feedable`'))->withSubject($subject); } public static function missingField(FeedItem $subject, $field) { return (new static("Field `{$field}` is required"))->withSubject($subject); } protected function withSubject() { $this->subject; return $this; } }