Fewo Mails / Booking Country Services
This commit is contained in:
parent
b9c26d06d0
commit
48a6eb2282
154 changed files with 7761 additions and 1643 deletions
386
_ide_helper.php
386
_ide_helper.php
|
|
@ -2,8 +2,8 @@
|
|||
// @formatter:off
|
||||
|
||||
/**
|
||||
* A helper file for Laravel 5, to provide autocomplete information to your IDE
|
||||
* Generated for Laravel 6.18.5 on 2020-04-23 10:42:32.
|
||||
* A helper file for Laravel, to provide autocomplete information to your IDE
|
||||
* Generated for Laravel 6.18.13 on 2020-05-28 13:02:56.
|
||||
*
|
||||
* This file should not be included in your code, only analyzed by your IDE!
|
||||
*
|
||||
|
|
@ -8726,7 +8726,7 @@ namespace Illuminate\Support\Facades {
|
|||
/**
|
||||
* Get the client user agent.
|
||||
*
|
||||
* @return string
|
||||
* @return string|null
|
||||
* @static
|
||||
*/
|
||||
public static function userAgent()
|
||||
|
|
@ -13124,7 +13124,8 @@ namespace Illuminate\Support\Facades {
|
|||
* @return bool
|
||||
* @static
|
||||
*/
|
||||
public static function prepend($path, $data, $separator = '')
|
||||
public static function prepend($path, $data, $separator = '
|
||||
')
|
||||
{
|
||||
/** @var \Illuminate\Filesystem\FilesystemAdapter $instance */
|
||||
return $instance->prepend($path, $data, $separator);
|
||||
|
|
@ -13139,7 +13140,8 @@ namespace Illuminate\Support\Facades {
|
|||
* @return bool
|
||||
* @static
|
||||
*/
|
||||
public static function append($path, $data, $separator = '')
|
||||
public static function append($path, $data, $separator = '
|
||||
')
|
||||
{
|
||||
/** @var \Illuminate\Filesystem\FilesystemAdapter $instance */
|
||||
return $instance->append($path, $data, $separator);
|
||||
|
|
@ -15204,7 +15206,7 @@ namespace Illuminate\Support\Facades {
|
|||
/**
|
||||
* Get the client user agent.
|
||||
*
|
||||
* @return string
|
||||
* @return string|null
|
||||
* @static
|
||||
*/
|
||||
public static function userAgent()
|
||||
|
|
@ -19070,7 +19072,7 @@ namespace Maatwebsite\Excel\Facades {
|
|||
* @param string $event
|
||||
* @static
|
||||
*/
|
||||
public static function extend($concern, $handler, $event = 'Maatwebsite\Excel\Events\BeforeWriting')
|
||||
public static function extend($concern, $handler, $event = 'Maatwebsite\\Excel\\Events\\BeforeWriting')
|
||||
{
|
||||
return \Maatwebsite\Excel\Excel::extend($concern, $handler, $event);
|
||||
}
|
||||
|
|
@ -19344,6 +19346,188 @@ namespace Yajra\DataTables\Facades {
|
|||
|
||||
}
|
||||
|
||||
namespace Barryvdh\DomPDF {
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
*/
|
||||
class Facade {
|
||||
|
||||
/**
|
||||
* Get the DomPDF instance
|
||||
*
|
||||
* @return \Barryvdh\DomPDF\Dompdf
|
||||
* @static
|
||||
*/
|
||||
public static function getDomPDF()
|
||||
{
|
||||
/** @var \Barryvdh\DomPDF\PDF $instance */
|
||||
return $instance->getDomPDF();
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the paper size (default A4)
|
||||
*
|
||||
* @param string $paper
|
||||
* @param string $orientation
|
||||
* @return \Barryvdh\DomPDF\PDF
|
||||
* @static
|
||||
*/
|
||||
public static function setPaper($paper, $orientation = 'portrait')
|
||||
{
|
||||
/** @var \Barryvdh\DomPDF\PDF $instance */
|
||||
return $instance->setPaper($paper, $orientation);
|
||||
}
|
||||
|
||||
/**
|
||||
* Show or hide warnings
|
||||
*
|
||||
* @param bool $warnings
|
||||
* @return \Barryvdh\DomPDF\PDF
|
||||
* @static
|
||||
*/
|
||||
public static function setWarnings($warnings)
|
||||
{
|
||||
/** @var \Barryvdh\DomPDF\PDF $instance */
|
||||
return $instance->setWarnings($warnings);
|
||||
}
|
||||
|
||||
/**
|
||||
* Load a HTML string
|
||||
*
|
||||
* @param string $string
|
||||
* @param string $encoding Not used yet
|
||||
* @return static
|
||||
* @static
|
||||
*/
|
||||
public static function loadHTML($string, $encoding = null)
|
||||
{
|
||||
/** @var \Barryvdh\DomPDF\PDF $instance */
|
||||
return $instance->loadHTML($string, $encoding);
|
||||
}
|
||||
|
||||
/**
|
||||
* Load a HTML file
|
||||
*
|
||||
* @param string $file
|
||||
* @return static
|
||||
* @static
|
||||
*/
|
||||
public static function loadFile($file)
|
||||
{
|
||||
/** @var \Barryvdh\DomPDF\PDF $instance */
|
||||
return $instance->loadFile($file);
|
||||
}
|
||||
|
||||
/**
|
||||
* Add metadata info
|
||||
*
|
||||
* @param array $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 string $view
|
||||
* @param array $data
|
||||
* @param array $mergeData
|
||||
* @param string $encoding Not used yet
|
||||
* @return static
|
||||
* @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 in DomPdf
|
||||
*
|
||||
* @param array $options
|
||||
* @return static
|
||||
* @static
|
||||
*/
|
||||
public static function setOptions($options)
|
||||
{
|
||||
/** @var \Barryvdh\DomPDF\PDF $instance */
|
||||
return $instance->setOptions($options);
|
||||
}
|
||||
|
||||
/**
|
||||
* Output the PDF as a string.
|
||||
*
|
||||
* @return string The rendered PDF as string
|
||||
* @static
|
||||
*/
|
||||
public static function output()
|
||||
{
|
||||
/** @var \Barryvdh\DomPDF\PDF $instance */
|
||||
return $instance->output();
|
||||
}
|
||||
|
||||
/**
|
||||
* Save the PDF to a file
|
||||
*
|
||||
* @param $filename
|
||||
* @return static
|
||||
* @static
|
||||
*/
|
||||
public static function save($filename)
|
||||
{
|
||||
/** @var \Barryvdh\DomPDF\PDF $instance */
|
||||
return $instance->save($filename);
|
||||
}
|
||||
|
||||
/**
|
||||
* Make the PDF downloadable by the user
|
||||
*
|
||||
* @param string $filename
|
||||
* @return \Illuminate\Http\Response
|
||||
* @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
|
||||
*
|
||||
* @param string $filename
|
||||
* @return \Illuminate\Http\Response
|
||||
* @static
|
||||
*/
|
||||
public static function stream($filename = 'document.pdf')
|
||||
{
|
||||
/** @var \Barryvdh\DomPDF\PDF $instance */
|
||||
return $instance->stream($filename);
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @static
|
||||
*/
|
||||
public static function setEncryption($password)
|
||||
{
|
||||
/** @var \Barryvdh\DomPDF\PDF $instance */
|
||||
return $instance->setEncryption($password);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
namespace Barryvdh\Debugbar {
|
||||
|
||||
/**
|
||||
|
|
@ -19950,188 +20134,6 @@ namespace Barryvdh\Debugbar {
|
|||
|
||||
}
|
||||
|
||||
namespace Barryvdh\DomPDF {
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
*/
|
||||
class Facade {
|
||||
|
||||
/**
|
||||
* Get the DomPDF instance
|
||||
*
|
||||
* @return \Barryvdh\DomPDF\Dompdf
|
||||
* @static
|
||||
*/
|
||||
public static function getDomPDF()
|
||||
{
|
||||
/** @var \Barryvdh\DomPDF\PDF $instance */
|
||||
return $instance->getDomPDF();
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the paper size (default A4)
|
||||
*
|
||||
* @param string $paper
|
||||
* @param string $orientation
|
||||
* @return \Barryvdh\DomPDF\PDF
|
||||
* @static
|
||||
*/
|
||||
public static function setPaper($paper, $orientation = 'portrait')
|
||||
{
|
||||
/** @var \Barryvdh\DomPDF\PDF $instance */
|
||||
return $instance->setPaper($paper, $orientation);
|
||||
}
|
||||
|
||||
/**
|
||||
* Show or hide warnings
|
||||
*
|
||||
* @param bool $warnings
|
||||
* @return \Barryvdh\DomPDF\PDF
|
||||
* @static
|
||||
*/
|
||||
public static function setWarnings($warnings)
|
||||
{
|
||||
/** @var \Barryvdh\DomPDF\PDF $instance */
|
||||
return $instance->setWarnings($warnings);
|
||||
}
|
||||
|
||||
/**
|
||||
* Load a HTML string
|
||||
*
|
||||
* @param string $string
|
||||
* @param string $encoding Not used yet
|
||||
* @return static
|
||||
* @static
|
||||
*/
|
||||
public static function loadHTML($string, $encoding = null)
|
||||
{
|
||||
/** @var \Barryvdh\DomPDF\PDF $instance */
|
||||
return $instance->loadHTML($string, $encoding);
|
||||
}
|
||||
|
||||
/**
|
||||
* Load a HTML file
|
||||
*
|
||||
* @param string $file
|
||||
* @return static
|
||||
* @static
|
||||
*/
|
||||
public static function loadFile($file)
|
||||
{
|
||||
/** @var \Barryvdh\DomPDF\PDF $instance */
|
||||
return $instance->loadFile($file);
|
||||
}
|
||||
|
||||
/**
|
||||
* Add metadata info
|
||||
*
|
||||
* @param array $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 string $view
|
||||
* @param array $data
|
||||
* @param array $mergeData
|
||||
* @param string $encoding Not used yet
|
||||
* @return static
|
||||
* @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 in DomPdf
|
||||
*
|
||||
* @param array $options
|
||||
* @return static
|
||||
* @static
|
||||
*/
|
||||
public static function setOptions($options)
|
||||
{
|
||||
/** @var \Barryvdh\DomPDF\PDF $instance */
|
||||
return $instance->setOptions($options);
|
||||
}
|
||||
|
||||
/**
|
||||
* Output the PDF as a string.
|
||||
*
|
||||
* @return string The rendered PDF as string
|
||||
* @static
|
||||
*/
|
||||
public static function output()
|
||||
{
|
||||
/** @var \Barryvdh\DomPDF\PDF $instance */
|
||||
return $instance->output();
|
||||
}
|
||||
|
||||
/**
|
||||
* Save the PDF to a file
|
||||
*
|
||||
* @param $filename
|
||||
* @return static
|
||||
* @static
|
||||
*/
|
||||
public static function save($filename)
|
||||
{
|
||||
/** @var \Barryvdh\DomPDF\PDF $instance */
|
||||
return $instance->save($filename);
|
||||
}
|
||||
|
||||
/**
|
||||
* Make the PDF downloadable by the user
|
||||
*
|
||||
* @param string $filename
|
||||
* @return \Illuminate\Http\Response
|
||||
* @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
|
||||
*
|
||||
* @param string $filename
|
||||
* @return \Illuminate\Http\Response
|
||||
* @static
|
||||
*/
|
||||
public static function stream($filename = 'document.pdf')
|
||||
{
|
||||
/** @var \Barryvdh\DomPDF\PDF $instance */
|
||||
return $instance->stream($filename);
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @static
|
||||
*/
|
||||
public static function setEncryption($password)
|
||||
{
|
||||
/** @var \Barryvdh\DomPDF\PDF $instance */
|
||||
return $instance->setEncryption($password);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
namespace Laracasts\Flash {
|
||||
|
||||
/**
|
||||
|
|
@ -22443,7 +22445,7 @@ namespace {
|
|||
/**
|
||||
* Add an "order by" clause to the query.
|
||||
*
|
||||
* @param \Closure|\Illuminate\Database\Query\Builder|string $column
|
||||
* @param \Closure|\Illuminate\Database\Query\Builder|\Illuminate\Database\Query\Expression|string $column
|
||||
* @param string $direction
|
||||
* @return \Illuminate\Database\Query\Builder
|
||||
* @throws \InvalidArgumentException
|
||||
|
|
@ -23199,10 +23201,10 @@ namespace {
|
|||
|
||||
class DataTables extends \Yajra\DataTables\Facades\DataTables {}
|
||||
|
||||
class Debugbar extends \Barryvdh\Debugbar\Facade {}
|
||||
|
||||
class PDF extends \Barryvdh\DomPDF\Facade {}
|
||||
|
||||
class Debugbar extends \Barryvdh\Debugbar\Facade {}
|
||||
|
||||
class Flash extends \Laracasts\Flash\Flash {}
|
||||
|
||||
class Html extends \Collective\Html\HtmlFacade {}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue