/home/techb158/ileadtechnology.com/SSM/vendor/laravel/telescope/src
NameSizeModeActions
Console/-0755rm
Contracts/-0755rm
Http/-0755rm
Storage/-0755rm
Watchers/-0755rm
AuthorizesRequests.php8170644editdlrm
EntryResult.php22030644editdlrm
EntryType.php6270644editdlrm
EntryUpdate.php19600644editdlrm
ExceptionContext.php12820644editdlrm
ExtractProperties.php11980644editdlrm
ExtractsMailableTags.php6460644editdlrm
ExtractTags.php51010644editdlrm
FormatModel.php3770644editdlrm
IncomingDumpEntry.php15470644editdlrm
IncomingEntry.php54780644editdlrm
IncomingExceptionEntry.php12900644editdlrm
ListensForStorageOpportunities.php27160644editdlrm
RegistersWatchers.php11890644editdlrm
Telescope.php174720644editdlrm
TelescopeApplicationServiceProvider.php11900644editdlrm
TelescopeServiceProvider.php46270644editdlrm
Edit: /home/techb158/ileadtechnology.com/SSM/vendor/laravel/telescope/src/EntryUpdate.php (1960B)
[], 'added' => []]; /** * Create a new incoming entry instance. * * @param string $uuid * @param string $type * @param array $changes * @return void */ public function __construct($uuid, $type, array $changes) { $this->uuid = $uuid; $this->type = $type; $this->changes = $changes; } /** * Create a new entry update instance. * * @param mixed ...$arguments * @return static */ public static function make(...$arguments) { return new static(...$arguments); } /** * Set the properties that should be updated. * * @param array $changes * @return $this */ public function change(array $changes) { $this->changes = array_merge($this->changes, $changes); return $this; } /** * Add tags to the entry. * * @param array $tags * @return $this */ public function addTags(array $tags) { $this->tagsChanges['added'] = array_unique( array_merge($this->tagsChanges['added'], $tags) ); return $this; } /** * Remove tags from the entry. * * @param array $tags * @return $this */ public function removeTags(array $tags) { $this->tagsChanges['removed'] = array_unique( array_merge($this->tagsChanges['removed'], $tags) ); return $this; } }