Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
updated composer dependencies
  • Loading branch information
alexjustesen committed Nov 10, 2022
commit dad95e364983eeae880056c9fbadb0a4e08b647e
65 changes: 62 additions & 3 deletions _ide_helper.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

/**
* A helper file for Laravel, to provide autocomplete information to your IDE
* Generated for Laravel 9.38.0.
* Generated for Laravel 9.39.0.
*
* This file should not be included in your code, only analyzed by your IDE!
*
Expand Down Expand Up @@ -12990,13 +12990,13 @@ public static function apiResource($name, $controller, $options = [])
*
* @param array $attributes
* @param \Closure|array|string $routes
* @return void
* @return \Illuminate\Routing\Router
* @static
*/
public static function group($attributes, $routes)
{
/** @var \Illuminate\Routing\Router $instance */
$instance->group($attributes, $routes);
return $instance->group($attributes, $routes);
}
/**
* Merge the given array with the last group stack.
Expand Down Expand Up @@ -16830,6 +16830,65 @@ public static function callCreator($view)
{
/** @var \Illuminate\View\Factory $instance */
$instance->callCreator($view);
}
/**
* Start injecting content into a fragment.
*
* @param string $fragment
* @return void
* @static
*/
public static function startFragment($fragment)
{
/** @var \Illuminate\View\Factory $instance */
$instance->startFragment($fragment);
}
/**
* Stop injecting content into a fragment.
*
* @return string
* @throws \InvalidArgumentException
* @static
*/
public static function stopFragment()
{
/** @var \Illuminate\View\Factory $instance */
return $instance->stopFragment();
}
/**
* Get the contents of a fragment.
*
* @param string $name
* @param string|null $default
* @return mixed
* @static
*/
public static function getFragment($name, $default = null)
{
/** @var \Illuminate\View\Factory $instance */
return $instance->getFragment($name, $default);
}
/**
* Get the entire array of rendered fragments.
*
* @return array
* @static
*/
public static function getFragments()
{
/** @var \Illuminate\View\Factory $instance */
return $instance->getFragments();
}
/**
* Flush all of the fragments.
*
* @return void
* @static
*/
public static function flushFragments()
{
/** @var \Illuminate\View\Factory $instance */
$instance->flushFragments();
}
/**
* Start injecting content into a section.
Expand Down
Loading