last changes since 6-2023
This commit is contained in:
parent
0341c9c189
commit
04d677d37a
142 changed files with 7895 additions and 2855 deletions
294
_ide_helper.php
294
_ide_helper.php
|
|
@ -4,7 +4,7 @@
|
|||
|
||||
/**
|
||||
* A helper file for Laravel, to provide autocomplete information to your IDE
|
||||
* Generated for Laravel 8.83.3.
|
||||
* Generated for Laravel 8.83.27.
|
||||
*
|
||||
* This file should not be included in your code, only analyzed by your IDE!
|
||||
*
|
||||
|
|
@ -2167,6 +2167,17 @@
|
|||
{
|
||||
/** @var \Illuminate\Auth\SessionGuard $instance */
|
||||
return $instance->setRequest($request);
|
||||
}
|
||||
/**
|
||||
* Get the timebox instance used by the guard.
|
||||
*
|
||||
* @return \Illuminate\Support\Timebox
|
||||
* @static
|
||||
*/
|
||||
public static function getTimebox()
|
||||
{
|
||||
/** @var \Illuminate\Auth\SessionGuard $instance */
|
||||
return $instance->getTimebox();
|
||||
}
|
||||
/**
|
||||
* Determine if the current user is authenticated. If not, throw an exception.
|
||||
|
|
@ -9338,12 +9349,12 @@
|
|||
* Clones a request and overrides some of its parameters.
|
||||
*
|
||||
* @return static
|
||||
* @param array $query The GET parameters
|
||||
* @param array $request The POST parameters
|
||||
* @param array $attributes The request attributes (parameters parsed from the PATH_INFO, ...)
|
||||
* @param array $cookies The COOKIE parameters
|
||||
* @param array $files The FILES parameters
|
||||
* @param array $server The SERVER parameters
|
||||
* @param array|null $query The GET parameters
|
||||
* @param array|null $request The POST parameters
|
||||
* @param array|null $attributes The request attributes (parameters parsed from the PATH_INFO, ...)
|
||||
* @param array|null $cookies The COOKIE parameters
|
||||
* @param array|null $files The FILES parameters
|
||||
* @param array|null $server The SERVER parameters
|
||||
* @return static
|
||||
* @static
|
||||
*/
|
||||
|
|
@ -11346,6 +11357,7 @@
|
|||
* @method static \Illuminate\Routing\RouteRegistrar prefix(string $prefix)
|
||||
* @method static \Illuminate\Routing\RouteRegistrar scopeBindings()
|
||||
* @method static \Illuminate\Routing\RouteRegistrar where(array $where)
|
||||
* @method static \Illuminate\Routing\RouteRegistrar withoutMiddleware(array|string $middleware)
|
||||
* @see \Illuminate\Routing\Router
|
||||
*/
|
||||
class Route {
|
||||
|
|
@ -17604,8 +17616,8 @@
|
|||
* @method string longRelativeToNowDiffForHumans(DateTimeInterface $other = null, int $parts = 1) Get the difference (long format, 'RelativeToNow' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.)
|
||||
* @method string shortRelativeToOtherDiffForHumans(DateTimeInterface $other = null, int $parts = 1) Get the difference (short format, 'RelativeToOther' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.)
|
||||
* @method string longRelativeToOtherDiffForHumans(DateTimeInterface $other = null, int $parts = 1) Get the difference (long format, 'RelativeToOther' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.)
|
||||
* @method static Carbon|false createFromFormat(string $format, string $time, string|DateTimeZone $timezone = null) Parse a string into a new Carbon object according to the specified format.
|
||||
* @method static Carbon __set_state(array $array) https://php.net/manual/en/datetime.set-state.php
|
||||
* @method static static|false createFromFormat(string $format, string $time, string|DateTimeZone $timezone = null) Parse a string into a new Carbon object according to the specified format.
|
||||
* @method static static __set_state(array $array) https://php.net/manual/en/datetime.set-state.php
|
||||
*
|
||||
* </autodoc>
|
||||
*/
|
||||
|
|
@ -17961,7 +17973,7 @@
|
|||
* DataTables using Query.
|
||||
*
|
||||
* @param \Illuminate\Database\Query\Builder|mixed $builder
|
||||
* @return \Yajra\DataTables\DataTableAbstract|\Yajra\DataTables\QueryDataTable
|
||||
* @return \Yajra\DataTables\QueryDataTable|\Yajra\DataTables\DataTableAbstract
|
||||
* @static
|
||||
*/
|
||||
public static function query($builder)
|
||||
|
|
@ -17973,7 +17985,7 @@
|
|||
* DataTables using Eloquent Builder.
|
||||
*
|
||||
* @param \Illuminate\Database\Eloquent\Builder|mixed $builder
|
||||
* @return \Yajra\DataTables\DataTableAbstract|\Yajra\DataTables\EloquentDataTable
|
||||
* @return \Yajra\DataTables\EloquentDataTable|\Yajra\DataTables\DataTableAbstract
|
||||
* @static
|
||||
*/
|
||||
public static function eloquent($builder)
|
||||
|
|
@ -17985,7 +17997,7 @@
|
|||
* DataTables using Collection.
|
||||
*
|
||||
* @param \Illuminate\Support\Collection|array $collection
|
||||
* @return \Yajra\DataTables\DataTableAbstract|\Yajra\DataTables\CollectionDataTable
|
||||
* @return \Yajra\DataTables\CollectionDataTable|\Yajra\DataTables\DataTableAbstract
|
||||
* @static
|
||||
*/
|
||||
public static function collection($collection)
|
||||
|
|
@ -17997,7 +18009,7 @@
|
|||
* DataTables using Collection.
|
||||
*
|
||||
* @param \Illuminate\Http\Resources\Json\AnonymousResourceCollection|array $collection
|
||||
* @return \Yajra\DataTables\DataTableAbstract|\Yajra\DataTables\ApiResourceDataTable
|
||||
* @return \Yajra\DataTables\ApiResourceDataTable|\Yajra\DataTables\DataTableAbstract
|
||||
* @static
|
||||
*/
|
||||
public static function resource($resource)
|
||||
|
|
@ -18212,6 +18224,16 @@
|
|||
{
|
||||
/** @var \App\Services\Yard $instance */
|
||||
return $instance->getUserTaxFree();
|
||||
}
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @static
|
||||
*/
|
||||
public static function getShippingFree()
|
||||
{
|
||||
/** @var \App\Services\Yard $instance */
|
||||
return $instance->getShippingFree();
|
||||
}
|
||||
/**
|
||||
*
|
||||
|
|
@ -18286,6 +18308,16 @@
|
|||
*
|
||||
* @static
|
||||
*/
|
||||
public static function weightByFreeShipping($decimals = null, $decimalPoint = null, $thousandSeperator = null)
|
||||
{
|
||||
/** @var \App\Services\Yard $instance */
|
||||
return $instance->weightByFreeShipping($decimals, $decimalPoint, $thousandSeperator);
|
||||
}
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @static
|
||||
*/
|
||||
public static function points()
|
||||
{
|
||||
/** @var \App\Services\Yard $instance */
|
||||
|
|
@ -18462,6 +18494,16 @@
|
|||
{
|
||||
/** @var \App\Services\Yard $instance */
|
||||
return $instance->getContentByOrder();
|
||||
}
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @static
|
||||
*/
|
||||
public static function myStore($identifier, $eventOptions = [])
|
||||
{
|
||||
/** @var \App\Services\Yard $instance */
|
||||
return $instance->myStore($identifier, $eventOptions);
|
||||
}
|
||||
/**
|
||||
* Set the current cart instance.
|
||||
|
|
@ -19302,6 +19344,11 @@
|
|||
/**
|
||||
*
|
||||
*
|
||||
* @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)
|
||||
*/
|
||||
class Pdf {
|
||||
/**
|
||||
|
|
@ -19314,17 +19361,6 @@
|
|||
{
|
||||
/** @var \Barryvdh\DomPDF\PDF $instance */
|
||||
return $instance->getDomPDF();
|
||||
}
|
||||
/**
|
||||
* Set the paper size (default A4)
|
||||
*
|
||||
* @param string|\Barryvdh\DomPDF\array<string> $paper
|
||||
* @static
|
||||
*/
|
||||
public static function setPaper($paper, $orientation = 'portrait')
|
||||
{
|
||||
/** @var \Barryvdh\DomPDF\PDF $instance */
|
||||
return $instance->setPaper($paper, $orientation);
|
||||
}
|
||||
/**
|
||||
* Show or hide warnings
|
||||
|
|
@ -19383,8 +19419,22 @@
|
|||
return $instance->loadView($view, $data, $mergeData, $encoding);
|
||||
}
|
||||
/**
|
||||
* Set/Change an option in DomPdf
|
||||
* Set/Change an option (or array of options) in Dompdf
|
||||
*
|
||||
* @param \Barryvdh\DomPDF\array<string, mixed>|string $attribute
|
||||
* @param null|mixed $value
|
||||
* @return \Barryvdh\DomPDF\PDF
|
||||
* @static
|
||||
*/
|
||||
public static function setOption($attribute, $value = null)
|
||||
{
|
||||
/** @var \Barryvdh\DomPDF\PDF $instance */
|
||||
return $instance->setOption($attribute, $value);
|
||||
}
|
||||
/**
|
||||
* Replace all the Options from DomPDF
|
||||
*
|
||||
* @deprecated Use setOption to override individual options.
|
||||
* @param \Barryvdh\DomPDF\array<string, mixed> $options
|
||||
* @static
|
||||
*/
|
||||
|
|
@ -19415,10 +19465,10 @@
|
|||
*
|
||||
* @static
|
||||
*/
|
||||
public static function save($filename)
|
||||
public static function save($filename, $disk = null)
|
||||
{
|
||||
/** @var \Barryvdh\DomPDF\PDF $instance */
|
||||
return $instance->save($filename);
|
||||
return $instance->save($filename, $disk);
|
||||
}
|
||||
/**
|
||||
* Make the PDF downloadable by the user
|
||||
|
|
@ -19453,7 +19503,179 @@
|
|||
/**
|
||||
*
|
||||
*
|
||||
* @param \Barryvdh\DomPDF\array<string> $pc
|
||||
* @param array<string> $pc
|
||||
* @static
|
||||
*/
|
||||
public static function setEncryption($password, $ownerpassword = '', $pc = [])
|
||||
{
|
||||
/** @var \Barryvdh\DomPDF\PDF $instance */
|
||||
return $instance->setEncryption($password, $ownerpassword, $pc);
|
||||
}
|
||||
|
||||
}
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @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)
|
||||
*/
|
||||
class Pdf {
|
||||
/**
|
||||
* Get the DomPDF instance
|
||||
*
|
||||
* @return \Dompdf\Dompdf
|
||||
* @static
|
||||
*/
|
||||
public static function getDomPDF()
|
||||
{
|
||||
/** @var \Barryvdh\DomPDF\PDF $instance */
|
||||
return $instance->getDomPDF();
|
||||
}
|
||||
/**
|
||||
* Show or hide warnings
|
||||
*
|
||||
* @static
|
||||
*/
|
||||
public static function setWarnings($warnings)
|
||||
{
|
||||
/** @var \Barryvdh\DomPDF\PDF $instance */
|
||||
return $instance->setWarnings($warnings);
|
||||
}
|
||||
/**
|
||||
* Load a HTML string
|
||||
*
|
||||
* @param string|null $encoding Not used yet
|
||||
* @static
|
||||
*/
|
||||
public static function loadHTML($string, $encoding = null)
|
||||
{
|
||||
/** @var \Barryvdh\DomPDF\PDF $instance */
|
||||
return $instance->loadHTML($string, $encoding);
|
||||
}
|
||||
/**
|
||||
* Load a HTML file
|
||||
*
|
||||
* @static
|
||||
*/
|
||||
public static function loadFile($file)
|
||||
{
|
||||
/** @var \Barryvdh\DomPDF\PDF $instance */
|
||||
return $instance->loadFile($file);
|
||||
}
|
||||
/**
|
||||
* Add metadata info
|
||||
*
|
||||
* @param \Barryvdh\DomPDF\array<string, string> $info
|
||||
* @return static
|
||||
* @static
|
||||
*/
|
||||
public static function addInfo($info)
|
||||
{
|
||||
/** @var \Barryvdh\DomPDF\PDF $instance */
|
||||
return $instance->addInfo($info);
|
||||
}
|
||||
/**
|
||||
* Load a View and convert to HTML
|
||||
*
|
||||
* @param \Barryvdh\DomPDF\array<string, mixed> $data
|
||||
* @param \Barryvdh\DomPDF\array<string, mixed> $mergeData
|
||||
* @param string|null $encoding Not used yet
|
||||
* @static
|
||||
*/
|
||||
public static function loadView($view, $data = [], $mergeData = [], $encoding = null)
|
||||
{
|
||||
/** @var \Barryvdh\DomPDF\PDF $instance */
|
||||
return $instance->loadView($view, $data, $mergeData, $encoding);
|
||||
}
|
||||
/**
|
||||
* Set/Change an option (or array of options) in Dompdf
|
||||
*
|
||||
* @param \Barryvdh\DomPDF\array<string, mixed>|string $attribute
|
||||
* @param null|mixed $value
|
||||
* @return \Barryvdh\DomPDF\PDF
|
||||
* @static
|
||||
*/
|
||||
public static function setOption($attribute, $value = null)
|
||||
{
|
||||
/** @var \Barryvdh\DomPDF\PDF $instance */
|
||||
return $instance->setOption($attribute, $value);
|
||||
}
|
||||
/**
|
||||
* Replace all the Options from DomPDF
|
||||
*
|
||||
* @deprecated Use setOption to override individual options.
|
||||
* @param \Barryvdh\DomPDF\array<string, mixed> $options
|
||||
* @static
|
||||
*/
|
||||
public static function setOptions($options)
|
||||
{
|
||||
/** @var \Barryvdh\DomPDF\PDF $instance */
|
||||
return $instance->setOptions($options);
|
||||
}
|
||||
/**
|
||||
* Output the PDF as a string.
|
||||
*
|
||||
* The options parameter controls the output. Accepted options are:
|
||||
*
|
||||
* 'compress' = > 1 or 0 - apply content stream compression, this is
|
||||
* on (1) by default
|
||||
*
|
||||
* @param \Barryvdh\DomPDF\array<string, int> $options
|
||||
* @return string The rendered PDF as string
|
||||
* @static
|
||||
*/
|
||||
public static function output($options = [])
|
||||
{
|
||||
/** @var \Barryvdh\DomPDF\PDF $instance */
|
||||
return $instance->output($options);
|
||||
}
|
||||
/**
|
||||
* Save the PDF to a file
|
||||
*
|
||||
* @static
|
||||
*/
|
||||
public static function save($filename, $disk = null)
|
||||
{
|
||||
/** @var \Barryvdh\DomPDF\PDF $instance */
|
||||
return $instance->save($filename, $disk);
|
||||
}
|
||||
/**
|
||||
* Make the PDF downloadable by the user
|
||||
*
|
||||
* @static
|
||||
*/
|
||||
public static function download($filename = 'document.pdf')
|
||||
{
|
||||
/** @var \Barryvdh\DomPDF\PDF $instance */
|
||||
return $instance->download($filename);
|
||||
}
|
||||
/**
|
||||
* Return a response with the PDF to show in the browser
|
||||
*
|
||||
* @static
|
||||
*/
|
||||
public static function stream($filename = 'document.pdf')
|
||||
{
|
||||
/** @var \Barryvdh\DomPDF\PDF $instance */
|
||||
return $instance->stream($filename);
|
||||
}
|
||||
/**
|
||||
* Render the PDF
|
||||
*
|
||||
* @static
|
||||
*/
|
||||
public static function render()
|
||||
{
|
||||
/** @var \Barryvdh\DomPDF\PDF $instance */
|
||||
return $instance->render();
|
||||
}
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @param array<string> $pc
|
||||
* @static
|
||||
*/
|
||||
public static function setEncryption($password, $ownerpassword = '', $pc = [])
|
||||
|
|
@ -19868,6 +20090,16 @@
|
|||
{
|
||||
/** @var \Facade\FlareClient\Flare $instance */
|
||||
return $instance->filterExceptionsUsing($filterExceptionsCallable);
|
||||
}
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @static
|
||||
*/
|
||||
public static function filterReportsUsing($filterReportsCallable)
|
||||
{
|
||||
/** @var \Facade\FlareClient\Flare $instance */
|
||||
return $instance->filterReportsUsing($filterReportsCallable);
|
||||
}
|
||||
/**
|
||||
*
|
||||
|
|
@ -20348,11 +20580,12 @@
|
|||
* @param string $fileName
|
||||
* @param string|null $writerType
|
||||
* @param mixed $withHeadings
|
||||
* @param array $responseHeaders
|
||||
* @static
|
||||
*/
|
||||
public static function downloadExcel($fileName, $writerType = null, $withHeadings = false)
|
||||
public static function downloadExcel($fileName, $writerType = null, $withHeadings = false, $responseHeaders = [])
|
||||
{
|
||||
return \Illuminate\Support\Collection::downloadExcel($fileName, $writerType, $withHeadings);
|
||||
return \Illuminate\Support\Collection::downloadExcel($fileName, $writerType, $withHeadings, $responseHeaders);
|
||||
}
|
||||
/**
|
||||
*
|
||||
|
|
@ -23913,7 +24146,6 @@ namespace {
|
|||
class Cart extends \Gloudemans\Shoppingcart\Facades\Cart {}
|
||||
class Flare extends \Facade\Ignition\Facades\Flare {}
|
||||
class Flash extends \Laracasts\Flash\Flash {}
|
||||
class Html extends \Collective\Html\HtmlFacade {}
|
||||
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue