Skip to content

Commit

Permalink
Prod assets and library updates
Browse files Browse the repository at this point in the history
  • Loading branch information
barryo committed May 24, 2024
1 parent 0dcc8ae commit 9e0dc29
Show file tree
Hide file tree
Showing 25 changed files with 986 additions and 35,489 deletions.
1 change: 1 addition & 0 deletions .idea/IXP-Manager.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

44 changes: 33 additions & 11 deletions .phpstorm.meta.php/laravel.meta.php

Large diffs are not rendered by default.

166 changes: 86 additions & 80 deletions _ide_helper.php
Original file line number Diff line number Diff line change
Expand Up @@ -3839,6 +3839,26 @@
{
/** @var \Illuminate\Cache\Repository $instance */
return $instance->macroCall($method, $parameters);
}
/**
* Remove all items from the cache.
*
* @return bool
* @static
*/ public static function flush()
{
/** @var \Illuminate\Cache\ArrayStore $instance */
return $instance->flush();
}
/**
* Get the cache key prefix.
*
* @return string
* @static
*/ public static function getPrefix()
{
/** @var \Illuminate\Cache\ArrayStore $instance */
return $instance->getPrefix();
}
/**
* Get a lock instance.
Expand All @@ -3850,7 +3870,7 @@
* @static
*/ public static function lock($name, $seconds = 0, $owner = null)
{
/** @var \Illuminate\Cache\NullStore $instance */
/** @var \Illuminate\Cache\ArrayStore $instance */
return $instance->lock($name, $seconds, $owner);
}
/**
Expand All @@ -3862,28 +3882,8 @@
* @static
*/ public static function restoreLock($name, $owner)
{
/** @var \Illuminate\Cache\NullStore $instance */
/** @var \Illuminate\Cache\ArrayStore $instance */
return $instance->restoreLock($name, $owner);
}
/**
* Remove all items from the cache.
*
* @return bool
* @static
*/ public static function flush()
{
/** @var \Illuminate\Cache\NullStore $instance */
return $instance->flush();
}
/**
* Get the cache key prefix.
*
* @return string
* @static
*/ public static function getPrefix()
{
/** @var \Illuminate\Cache\NullStore $instance */
return $instance->getPrefix();
}
}
/**
Expand Down Expand Up @@ -16307,13 +16307,12 @@
/**
* Replace all the Options from DomPDF
*
* @deprecated Use setOption to override individual options.
* @param array<string, mixed> $options
* @static
*/ public static function setOptions($options)
*/ public static function setOptions($options, $mergeWithDefaults = false)
{
/** @var \Barryvdh\DomPDF\PDF $instance */
return $instance->setOptions($options);
return $instance->setOptions($options, $mergeWithDefaults);
}
/**
* Output the PDF as a string.
Expand Down Expand Up @@ -16467,13 +16466,12 @@
/**
* Replace all the Options from DomPDF
*
* @deprecated Use setOption to override individual options.
* @param array<string, mixed> $options
* @static
*/ public static function setOptions($options)
*/ public static function setOptions($options, $mergeWithDefaults = false)
{
/** @var \Barryvdh\DomPDF\PDF $instance */
return $instance->setOptions($options);
return $instance->setOptions($options, $mergeWithDefaults);
}
/**
* Output the PDF as a string.
Expand Down Expand Up @@ -20312,6 +20310,10 @@
/**
*
*
* @method array getScopes()
* @method \Laravel\Socialite\Contracts\Provider scopes(array|string $scopes)
* @method \Laravel\Socialite\Contracts\Provider setScopes(array|string $scopes)
* @method \Laravel\Socialite\Contracts\Provider redirectUrl(string $url)
* @see \Laravel\Socialite\SocialiteManager
*/ class Socialite {
/**
Expand Down Expand Up @@ -20632,10 +20634,10 @@
*
*
* @static
*/ public static function registerErrorHandler()
*/ public static function registerErrorHandler($errorLevels = null)
{
/** @var \Spatie\FlareClient\Flare $instance */
return $instance->registerErrorHandler();
return $instance->registerErrorHandler($errorLevels);
}
/**
*
Expand Down Expand Up @@ -20703,10 +20705,19 @@
*
*
* @static
*/ public static function report($throwable, $callback = null, $report = null)
*/ public static function report($throwable, $callback = null, $report = null, $handled = null)
{
/** @var \Spatie\FlareClient\Flare $instance */
return $instance->report($throwable, $callback, $report, $handled);
}
/**
*
*
* @static
*/ public static function reportHandled($throwable)
{
/** @var \Spatie\FlareClient\Flare $instance */
return $instance->report($throwable, $callback, $report);
return $instance->reportHandled($throwable);
}
/**
*
Expand Down Expand Up @@ -20827,52 +20838,6 @@
}
}

namespace Illuminate\Support {
/**
*
*
* @template TKey of array-key
* @template TValue
* @implements \ArrayAccess<TKey, TValue>
* @implements \Illuminate\Support\Enumerable<TKey, TValue>
*/ class Collection {
/**
*
*
* @see \Barryvdh\Debugbar\ServiceProvider::register()
* @static
*/ public static function debug()
{
return \Illuminate\Support\Collection::debug();
}
/**
*
*
* @see \Spatie\LaravelRay\RayServiceProvider::registerMacros()
* @param string $description
* @static
*/ public static function ray($description = '')
{
return \Illuminate\Support\Collection::ray($description);
}
}
/**
*
*
*/ class Stringable {
/**
*
*
* @see \Spatie\LaravelRay\RayServiceProvider::registerMacros()
* @param string $description
* @static
*/ public static function ray($description = '')
{
return \Illuminate\Support\Stringable::ray($description);
}
}
}

namespace Illuminate\Http {
/**
*
Expand Down Expand Up @@ -20934,12 +20899,53 @@
}
}

namespace Illuminate\Testing {
namespace Illuminate\Support {
/**
*
*
* @template TKey of array-key
* @template TValue
* @implements \ArrayAccess<TKey, TValue>
* @implements \Illuminate\Support\Enumerable<TKey, TValue>
*/ class Collection {
/**
*
*
* @see \Barryvdh\Debugbar\ServiceProvider::register()
* @static
*/ public static function debug()
{
return \Illuminate\Support\Collection::debug();
}
/**
*
*
* @see \Spatie\LaravelRay\RayServiceProvider::registerMacros()
* @param string $description
* @static
*/ public static function ray($description = '')
{
return \Illuminate\Support\Collection::ray($description);
}
}
/**
*
*
*/ class LoggedExceptionCollection {
*/ class Stringable {
/**
*
*
* @see \Spatie\LaravelRay\RayServiceProvider::registerMacros()
* @param string $description
* @static
*/ public static function ray($description = '')
{
return \Illuminate\Support\Stringable::ray($description);
}
}
}

namespace Illuminate\Testing {
/**
*
*
Expand Down
12 changes: 6 additions & 6 deletions app/Models/Aggregators/CustomerAggregator.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,9 @@
* IXP\Models\Aggregators\CustomerAggregator
*
* @property int $id
* @property int|null $irrdb
* @property int|null $company_registered_detail_id
* @property int|null $company_billing_details_id
* @property int|null $reseller
* @property string|null $name
* @property int|null $type
* @property string|null $shortname
* @property string|null $abbreviatedName
* @property int|null $autsys
* @property int|null $maxprefixes
* @property string|null $peeringemail
Expand All @@ -59,8 +54,8 @@
* @property string|null $nocemail
* @property string|null $nochours
* @property string|null $nocwww
* @property int|null $irrdb
* @property string|null $peeringmacro
* @property string|null $peeringmacrov6
* @property string|null $peeringpolicy
* @property string|null $corpwww
* @property \Illuminate\Support\Carbon|null $datejoin
Expand All @@ -69,7 +64,12 @@
* @property int|null $activepeeringmatrix
* @property int|null $lastupdatedby
* @property string|null $creator
* @property int|null $company_registered_detail_id
* @property int|null $company_billing_details_id
* @property string|null $peeringmacrov6
* @property string|null $abbreviatedName
* @property string|null $MD5Support
* @property int|null $reseller
* @property int $isReseller
* @property int $in_manrs
* @property int $in_peeringdb
Expand Down
4 changes: 2 additions & 2 deletions app/Models/Aggregators/RouterAggregator.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,15 +52,15 @@
* @property string $template
* @property bool $skip_md5
* @property \Illuminate\Support\Carbon|null $last_update_started
* @property \Illuminate\Support\Carbon|null $last_updated
* @property int $pause_updates
* @property bool $rpki
* @property string|null $software_version
* @property string|null $operating_system
* @property string|null $operating_system_version
* @property int $rfc1997_passthru
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property \Illuminate\Support\Carbon|null $last_updated
* @property int $pause_updates
* @property-read Router|null $pair
* @property-read \IXP\Models\Vlan $vlan
* @method static Builder|Router hasApi()
Expand Down
8 changes: 4 additions & 4 deletions app/Models/Aggregators/SwitcherAggregator.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,22 +36,22 @@
* IXP\Models\Aggregators\SwitcherAggregator
*
* @property int $id
* @property int|null $infrastructure
* @property int|null $cabinetid
* @property int|null $vendorid
* @property string|null $name
* @property string|null $hostname
* @property string|null $ipv4addr
* @property string|null $ipv6addr
* @property string|null $snmppasswd
* @property int|null $infrastructure
* @property string|null $model
* @property bool|null $active
* @property string|null $notes
* @property string|null $hostname
* @property string|null $os
* @property string|null $osDate
* @property string|null $osVersion
* @property string|null $lastPolled
* @property string|null $notes
* @property string|null $serialNumber
* @property string|null $lastPolled
* @property int|null $mauSupported
* @property int|null $asn
* @property string|null $loopback_ip
Expand Down
2 changes: 1 addition & 1 deletion app/Models/Aggregators/UserAggregator.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@
* @property string|null $name
* @property int|null $peeringdb_id
* @property array|null $extra_attributes
* @property array|null $prefs
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property array|null $prefs
* @property-read \Illuminate\Database\Eloquent\Collection<int, \IXP\Models\ApiKey> $apiKeys
* @property-read int|null $api_keys_count
* @property-read Customer|null $customer
Expand Down
4 changes: 2 additions & 2 deletions app/Models/Aggregators/VlanAggregator.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@
* IXP\Models\Aggregators\VlanAggregator
*
* @property int $id
* @property int $infrastructureid
* @property string|null $name
* @property int|null $number
* @property bool $private
* @property string|null $notes
* @property bool $private
* @property int $infrastructureid
* @property int $peering_matrix
* @property int $peering_manager
* @property bool $export_to_ixf
Expand Down
4 changes: 2 additions & 2 deletions app/Models/Contact.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,17 +38,17 @@
* @property int $id
* @property int|null $custid
* @property string $name
* @property string|null $position
* @property string|null $email
* @property string|null $phone
* @property string|null $mobile
* @property bool $facilityaccess
* @property bool $mayauthorize
* @property string|null $notes
* @property \Illuminate\Support\Carbon|null $updated_at
* @property int|null $lastupdatedby
* @property string|null $creator
* @property \Illuminate\Support\Carbon|null $created_at
* @property string|null $position
* @property string|null $notes
* @property-read \Illuminate\Database\Eloquent\Collection<int, \IXP\Models\ContactGroup> $contactGroups
* @property-read int|null $contact_groups_count
* @property-read \Illuminate\Database\Eloquent\Collection<int, \IXP\Models\ContactGroup> $contactGroupsAll
Expand Down
Loading

0 comments on commit 9e0dc29

Please sign in to comment.