Updates to 03-2025

This commit is contained in:
Kevin Adametz 2025-04-01 10:36:47 +02:00
parent bfa3bb1df4
commit 9ae662f63e
243 changed files with 12580 additions and 12018 deletions

View file

@ -4,7 +4,7 @@
/**
* A helper file for Laravel, to provide autocomplete information to your IDE
* Generated for Laravel 8.83.27.
* Generated for Laravel 8.83.29.
*
* This file should not be included in your code, only analyzed by your IDE!
*
@ -712,7 +712,7 @@
* @param int $code
* @param string $message
* @param array $headers
* @return \Illuminate\Foundation\never
* @return never
* @throws \Symfony\Component\HttpKernel\Exception\HttpException
* @throws \Symfony\Component\HttpKernel\Exception\NotFoundHttpException
* @static
@ -1173,7 +1173,7 @@
* Resolve all of the bindings for a given tag.
*
* @param string $tag
* @return \Illuminate\Container\iterable
* @return iterable
* @static
*/
public static function tagged($tag)
@ -3503,10 +3503,10 @@
/**
* Obtains multiple cache items by their unique keys.
*
* @return \Illuminate\Cache\iterable
* @param \Psr\SimpleCache\iterable $keys A list of keys that can obtained in a single operation.
* @return iterable
* @param iterable $keys A list of keys that can obtained in a single operation.
* @param mixed $default Default value to return for keys that do not exist.
* @return \Psr\SimpleCache\iterable A list of key => value pairs. Cache keys that do not exist or are stale will have $default as value.
* @return iterable A list of key => value pairs. Cache keys that do not exist or are stale will have $default as value.
* @throws \Psr\SimpleCache\InvalidArgumentException
* MUST be thrown if $keys is neither an array nor a Traversable,
* or if any of the $keys are not a legal value.
@ -3580,7 +3580,7 @@
* Persists a set of key => value pairs in the cache, with an optional TTL.
*
* @return bool
* @param \Psr\SimpleCache\iterable $values A list of key => value pairs for a multiple-set operation.
* @param iterable $values A list of key => value pairs for a multiple-set operation.
* @param null|int|\DateInterval $ttl Optional. The TTL value of this item. If no value is sent and
* the driver supports TTL then the library may set a default value
* for it or let the driver take care of that.
@ -3719,7 +3719,7 @@
* Deletes multiple cache items in a single operation.
*
* @return bool
* @param \Psr\SimpleCache\iterable $keys A list of string-based keys to be deleted.
* @param iterable $keys A list of string-based keys to be deleted.
* @return bool True if the items were successfully removed. False if there was an error.
* @throws \Psr\SimpleCache\InvalidArgumentException
* MUST be thrown if $keys is neither an array nor a Traversable,
@ -6587,7 +6587,7 @@
/**
* Determine if all of the given abilities should be granted for the current user.
*
* @param \Illuminate\Auth\Access\iterable|string $abilities
* @param iterable|string $abilities
* @param array|mixed $arguments
* @return bool
* @static
@ -6600,7 +6600,7 @@
/**
* Determine if any one of the given abilities should be granted for the current user.
*
* @param \Illuminate\Auth\Access\iterable|string $abilities
* @param iterable|string $abilities
* @param array|mixed $arguments
* @return bool
* @static
@ -6613,7 +6613,7 @@
/**
* Determine if all of the given abilities should be denied for the current user.
*
* @param \Illuminate\Auth\Access\iterable|string $abilities
* @param iterable|string $abilities
* @param array|mixed $arguments
* @return bool
* @static
@ -9596,6 +9596,7 @@
* @param array $server The server parameters ($_SERVER)
* @param string|resource|null $content The raw body data
* @return static
* @throws BadRequestException When the URI is invalid
* @static
*/
public static function create($uri, $method = 'GET', $parameters = [], $cookies = [], $files = [], $server = [], $content = null)
@ -9765,7 +9766,7 @@
*
*
* @internal
* @param \Symfony\Component\HttpFoundation\callable(): SessionInterface $factory
* @param callable(): SessionInterface $factory
* @static
*/
public static function setSessionFactory($factory)
@ -17682,9 +17683,10 @@
/**
*
*
* @param string|null $disk Fallback for usage with named properties
* @param object $export
* @param string $filePath
* @param string|null $disk
* @param string|null $diskName
* @param string $writerType
* @param mixed $diskOptions
* @return bool
@ -17692,10 +17694,10 @@
* @throws \PhpOffice\PhpSpreadsheet\Writer\Exception
* @static
*/
public static function store($export, $filePath, $diskName = null, $writerType = null, $diskOptions = [])
public static function store($export, $filePath, $diskName = null, $writerType = null, $diskOptions = [], $disk = null)
{
/** @var \Maatwebsite\Excel\Excel $instance */
return $instance->store($export, $filePath, $diskName, $writerType, $diskOptions);
return $instance->store($export, $filePath, $diskName, $writerType, $diskOptions, $disk);
}
/**
*
@ -17785,6 +17787,52 @@
{
/** @var \Maatwebsite\Excel\Excel $instance */
return $instance->queueImport($import, $filePath, $disk, $readerType);
}
/**
* Register a custom macro.
*
* @param string $name
* @param object|callable $macro
* @return void
* @static
*/
public static function macro($name, $macro)
{
\Maatwebsite\Excel\Excel::macro($name, $macro);
}
/**
* Mix another object into the class.
*
* @param object $mixin
* @param bool $replace
* @return void
* @throws \ReflectionException
* @static
*/
public static function mixin($mixin, $replace = true)
{
\Maatwebsite\Excel\Excel::mixin($mixin, $replace);
}
/**
* Checks if macro is registered.
*
* @param string $name
* @return bool
* @static
*/
public static function hasMacro($name)
{
return \Maatwebsite\Excel\Excel::hasMacro($name);
}
/**
* Flush the existing macros.
*
* @return void
* @static
*/
public static function flushMacros()
{
\Maatwebsite\Excel\Excel::flushMacros();
}
/**
*
@ -18180,7 +18228,7 @@
*
* @static
*/
public static function setShippingCountryWithPrice($shipping_country_id, $shipping_is_for = 'ot')
public static function setShippingCountryWithPrice($shipping_country_id, $shipping_is_for = 'ot-member')
{
/** @var \App\Services\Yard $instance */
return $instance->setShippingCountryWithPrice($shipping_country_id, $shipping_is_for);
@ -18715,10 +18763,10 @@
* @return void
* @static
*/
public static function restore($identifier, $eventOptions = [])
public static function restore($identifier, $eventOptions = [], $delteStoredCart = true)
{ //Method inherited from \Gloudemans\Shoppingcart\Cart
/** @var \App\Services\Yard $instance */
$instance->restore($identifier, $eventOptions);
$instance->restore($identifier, $eventOptions, $delteStoredCart);
}
/**
* Gets a specific fee from the fees array.
@ -18817,6 +18865,28 @@
{ //Method inherited from \Gloudemans\Shoppingcart\Cart
/** @var \App\Services\Yard $instance */
return $instance->fromArray($array);
}
/**
* Deletes the stored cart with given identifier
*
* @param mixed $identifier
* @static
*/
public static function deleteStoredCart($identifier)
{ //Method inherited from \Gloudemans\Shoppingcart\Cart
/** @var \App\Services\Yard $instance */
return $instance->deleteStoredCart($identifier);
}
/**
* Get the carts content, if there is no cart content set yet, return a new empty Collection
*
* @return \Illuminate\Support\Collection
* @static
*/
public static function getContent()
{ //Method inherited from \Gloudemans\Shoppingcart\Cart
/** @var \App\Services\Yard $instance */
return $instance->getContent();
}
}
@ -19093,7 +19163,7 @@
/**
* Returns an array of all data collectors
*
* @return \DebugBar\array[DataCollectorInterface]
* @return array[DataCollectorInterface]
* @static
*/
public static function getCollectors()
@ -19364,17 +19434,23 @@
/**
*
*
* @method static \Barryvdh\DomPDF\PDF setPaper($paper, $orientation = 'portrait')
* @method static \Barryvdh\DomPDF\PDF setBaseHost(string $baseHost)
* @method static \Barryvdh\DomPDF\PDF setProtocol(string $protocol)
* @method static \Barryvdh\DomPDF\PDF setHttpContext($httpContext)
* @method static \Barryvdh\DomPDF\PDF setCallbacks(array $callbacks)
* @method static BasePDF setBaseHost(string $baseHost)
* @method static BasePDF setBasePath(string $basePath)
* @method static BasePDF setCanvas(\Dompdf\Canvas $canvas)
* @method static BasePDF setCallbacks(array $callbacks)
* @method static BasePDF setCss(\Dompdf\Css\Stylesheet $css)
* @method static BasePDF setDefaultView(string $defaultView, array $options)
* @method static BasePDF setDom(\DOMDocument $dom)
* @method static BasePDF setFontMetrics(\Dompdf\FontMetrics $fontMetrics)
* @method static BasePDF setHttpContext(resource|array $httpContext)
* @method static BasePDF setPaper(string|float[] $paper, string $orientation = 'portrait')
* @method static BasePDF setProtocol(string $protocol)
* @method static BasePDF setTree(\Dompdf\Frame\FrameTree $tree)
*/
class Pdf {
/**
* Get the DomPDF instance
*
* @return \Dompdf\Dompdf
* @static
*/
public static function getDomPDF()
@ -19417,7 +19493,6 @@
* Add metadata info
*
* @param array<string, string> $info
* @return static
* @static
*/
public static function addInfo($info)
@ -19443,7 +19518,6 @@
*
* @param array<string, mixed>|string $attribute
* @param null|mixed $value
* @return \Barryvdh\DomPDF\PDF
* @static
*/
public static function setOption($attribute, $value = null)
@ -19454,14 +19528,13 @@
/**
* 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.
@ -19536,17 +19609,23 @@
/**
*
*
* @method static \Barryvdh\DomPDF\PDF setPaper($paper, $orientation = 'portrait')
* @method static \Barryvdh\DomPDF\PDF setBaseHost(string $baseHost)
* @method static \Barryvdh\DomPDF\PDF setProtocol(string $protocol)
* @method static \Barryvdh\DomPDF\PDF setHttpContext($httpContext)
* @method static \Barryvdh\DomPDF\PDF setCallbacks(array $callbacks)
* @method static BasePDF setBaseHost(string $baseHost)
* @method static BasePDF setBasePath(string $basePath)
* @method static BasePDF setCanvas(\Dompdf\Canvas $canvas)
* @method static BasePDF setCallbacks(array $callbacks)
* @method static BasePDF setCss(\Dompdf\Css\Stylesheet $css)
* @method static BasePDF setDefaultView(string $defaultView, array $options)
* @method static BasePDF setDom(\DOMDocument $dom)
* @method static BasePDF setFontMetrics(\Dompdf\FontMetrics $fontMetrics)
* @method static BasePDF setHttpContext(resource|array $httpContext)
* @method static BasePDF setPaper(string|float[] $paper, string $orientation = 'portrait')
* @method static BasePDF setProtocol(string $protocol)
* @method static BasePDF setTree(\Dompdf\Frame\FrameTree $tree)
*/
class Pdf {
/**
* Get the DomPDF instance
*
* @return \Dompdf\Dompdf
* @static
*/
public static function getDomPDF()
@ -19589,7 +19668,6 @@
* Add metadata info
*
* @param array<string, string> $info
* @return static
* @static
*/
public static function addInfo($info)
@ -19615,7 +19693,6 @@
*
* @param array<string, mixed>|string $attribute
* @param null|mixed $value
* @return \Barryvdh\DomPDF\PDF
* @static
*/
public static function setOption($attribute, $value = null)
@ -19626,14 +19703,13 @@
/**
* 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.
@ -20239,7 +20315,7 @@
/**
*
*
* @see \Maatwebsite\Excel\Mixins\DownloadCollection::downloadExcel()
* @see \Maatwebsite\Excel\Mixins\DownloadCollectionMixin::downloadExcel()
* @param string $fileName
* @param string|null $writerType
* @param mixed $withHeadings
@ -20253,7 +20329,7 @@
/**
*
*
* @see \Maatwebsite\Excel\Mixins\StoreCollection::storeExcel()
* @see \Maatwebsite\Excel\Mixins\StoreCollectionMixin::storeExcel()
* @param string $filePath
* @param string|null $disk
* @param string|null $writerType
@ -21766,6 +21842,64 @@ namespace {
return $instance->unless($value, $callback, $default);
}
/**
*
*
* @see \Maatwebsite\Excel\Mixins\DownloadQueryMacro::__invoke()
* @param string $fileName
* @param string|null $writerType
* @param mixed $withHeadings
* @static
*/
public static function downloadExcel($fileName, $writerType = null, $withHeadings = false)
{
return \Illuminate\Database\Eloquent\Builder::downloadExcel($fileName, $writerType, $withHeadings);
}
/**
*
*
* @see \Maatwebsite\Excel\Mixins\StoreQueryMacro::__invoke()
* @param string $filePath
* @param string|null $disk
* @param string|null $writerType
* @param mixed $withHeadings
* @static
*/
public static function storeExcel($filePath, $disk = null, $writerType = null, $withHeadings = false)
{
return \Illuminate\Database\Eloquent\Builder::storeExcel($filePath, $disk, $writerType, $withHeadings);
}
/**
*
*
* @see \Maatwebsite\Excel\Mixins\ImportMacro::__invoke()
* @param string $filename
* @param string|null $disk
* @param string|null $readerType
* @static
*/
public static function import($filename, $disk = null, $readerType = null)
{
return \Illuminate\Database\Eloquent\Builder::import($filename, $disk, $readerType);
}
/**
*
*
* @see \Maatwebsite\Excel\Mixins\ImportAsMacro::__invoke()
* @param string $filename
* @param callable $mapping
* @param string|null $disk
* @param string|null $readerType
* @static
*/
public static function importAs($filename, $mapping, $disk = null, $readerType = null)
{
return \Illuminate\Database\Eloquent\Builder::importAs($filename, $mapping, $disk, $readerType);
}
/**
* Set the columns to be selected.
*
@ -23700,7 +23834,7 @@ namespace {
/**
* Die and dump the current SQL and bindings.
*
* @return \Illuminate\Database\Query\never
* @return never
* @static
*/
public static function dd()
@ -23805,8 +23939,8 @@ namespace {
class DataTables extends \Yajra\DataTables\Facades\DataTables {}
class Yard extends \App\Services\Facade\Yard {}
class Debugbar extends \Barryvdh\Debugbar\Facades\Debugbar {}
class Pdf extends \Barryvdh\DomPDF\Facade\Pdf {}
class PDF extends \Barryvdh\DomPDF\Facade\Pdf {}
class Pdf extends \Barryvdh\DomPDF\Facade\Pdf {}
class Flare extends \Facade\Ignition\Facades\Flare {}
class Flash extends \Laracasts\Flash\Flash {}
class Html extends \Collective\Html\HtmlFacade {}