diff --git a/.cursor/mcp.json b/.cursor/mcp.json
new file mode 100644
index 0000000..3cceeb6
--- /dev/null
+++ b/.cursor/mcp.json
@@ -0,0 +1,27 @@
+{
+ "mcpServers": {
+ "laravel-boost": {
+ "command": "php",
+ "args": [
+ "artisan",
+ "boost:mcp"
+ ]
+ },
+ "context7": {
+ "command": "npx",
+ "args": [
+ "-y",
+ "@upstash/context7-mcp",
+ "--api-key",
+ "ctx7sk-119cd4ab-8983-4229-8702-e84c59c34fc9"
+ ]
+ },
+ "sequential-thinking": {
+ "command": "npx",
+ "args": [
+ "-y",
+ "@modelcontextprotocol/server-sequential-thinking"
+ ]
+ }
+ }
+}
\ No newline at end of file
diff --git a/.cursor/rules/laravel-boost.mdc b/.cursor/rules/laravel-boost.mdc
new file mode 100644
index 0000000..df47bea
--- /dev/null
+++ b/.cursor/rules/laravel-boost.mdc
@@ -0,0 +1,248 @@
+---
+alwaysApply: true
+---
+
+=== foundation rules ===
+
+# Laravel Boost Guidelines
+
+The Laravel Boost guidelines are specifically curated by Laravel maintainers for this application. These guidelines should be followed closely to enhance the user's satisfaction building Laravel applications.
+
+## Foundational Context
+This application is a Laravel application and its main Laravel ecosystems package & versions are below. You are an expert with them all. Ensure you abide by these specific packages & versions.
+
+- php - 8.4.1
+- laravel/framework (LARAVEL) - v11
+- laravel/prompts (PROMPTS) - v0
+- laravel/pint (PINT) - v1
+- pestphp/pest (PEST) - v2
+
+
+## Conventions
+- You must follow all existing code conventions used in this application. When creating or editing a file, check sibling files for the correct structure, approach, naming.
+- Use descriptive names for variables and methods. For example, `isRegisteredForDiscounts`, not `discount()`.
+- Check for existing components to reuse before writing a new one.
+
+## Verification Scripts
+- Do not create verification scripts or tinker when tests cover that functionality and prove it works. Unit and feature tests are more important.
+
+## Application Structure & Architecture
+- Stick to existing directory structure - don't create new base folders without approval.
+- Do not change the application's dependencies without approval.
+
+## Frontend Bundling
+- If the user doesn't see a frontend change reflected in the UI, it could mean they need to run `npm run build`, `npm run dev`, or `composer run dev`. Ask them.
+
+## Replies
+- Be concise in your explanations - focus on what's important rather than explaining obvious details.
+
+## Documentation Files
+- You must only create documentation files if explicitly requested by the user.
+
+
+=== boost rules ===
+
+## Laravel Boost
+- Laravel Boost is an MCP server that comes with powerful tools designed specifically for this application. Use them.
+
+## Artisan
+- Use the `list-artisan-commands` tool when you need to call an Artisan command to double check the available parameters.
+
+## URLs
+- Whenever you share a project URL with the user you should use the `get-absolute-url` tool to ensure you're using the correct scheme, domain / IP, and port.
+
+## Tinker / Debugging
+- You should use the `tinker` tool when you need to execute PHP to debug code or query Eloquent models directly.
+- Use the `database-query` tool when you only need to read from the database.
+
+## Reading Browser Logs With the `browser-logs` Tool
+- You can read browser logs, errors, and exceptions using the `browser-logs` tool from Boost.
+- Only recent browser logs will be useful - ignore old logs.
+
+## Searching Documentation (Critically Important)
+- Boost comes with a powerful `search-docs` tool you should use before any other approaches. This tool automatically passes a list of installed packages and their versions to the remote Boost API, so it returns only version-specific documentation specific for the user's circumstance. You should pass an array of packages to filter on if you know you need docs for particular packages.
+- The 'search-docs' tool is perfect for all Laravel related packages, including Laravel, Inertia, Livewire, Filament, Tailwind, Pest, Nova, Nightwatch, etc.
+- You must use this tool to search for Laravel-ecosystem documentation before falling back to other approaches.
+- Search the documentation before making code changes to ensure we are taking the correct approach.
+- Use multiple, broad, simple, topic based queries to start. For example: `['rate limiting', 'routing rate limiting', 'routing']`.
+- Do not add package names to queries - package information is already shared. For example, use `test resource table`, not `filament 4 test resource table`.
+
+### Available Search Syntax
+- You can and should pass multiple queries at once. The most relevant results will be returned first.
+
+1. Simple Word Searches with auto-stemming - query=authentication - finds 'authenticate' and 'auth'
+2. Multiple Words (AND Logic) - query=rate limit - finds knowledge containing both "rate" AND "limit"
+3. Quoted Phrases (Exact Position) - query="infinite scroll" - Words must be adjacent and in that order
+4. Mixed Queries - query=middleware "rate limit" - "middleware" AND exact phrase "rate limit"
+5. Multiple Queries - queries=["authentication", "middleware"] - ANY of these terms
+
+
+=== php rules ===
+
+## PHP
+
+- Always use curly braces for control structures, even if it has one line.
+
+### Constructors
+- Use PHP 8 constructor property promotion in `__construct()`.
+ - public function __construct(public GitHub $github) { }
+- Do not allow empty `__construct()` methods with zero parameters.
+
+### Type Declarations
+- Always use explicit return type declarations for methods and functions.
+- Use appropriate PHP type hints for method parameters.
+
+
+protected function isAccessible(User $user, ?string $path = null): bool
+{
+ ...
+}
+
+
+## Comments
+- Prefer PHPDoc blocks over comments. Never use comments within the code itself unless there is something _very_ complex going on.
+
+## PHPDoc Blocks
+- Add useful array shape type definitions for arrays when appropriate.
+
+## Enums
+- Typically, keys in an Enum should be TitleCase. For example: `FavoritePerson`, `BestLake`, `Monthly`.
+
+
+=== laravel/core rules ===
+
+## Do Things the Laravel Way
+
+- Use `php artisan make:` commands to create new files (i.e. migrations, controllers, models, etc.). You can list available Artisan commands using the `list-artisan-commands` tool.
+- If you're creating a generic PHP class, use `artisan make:class`.
+- Pass `--no-interaction` to all Artisan commands to ensure they work without user input. You should also pass the correct `--options` to ensure correct behavior.
+
+### Database
+- Always use proper Eloquent relationship methods with return type hints. Prefer relationship methods over raw queries or manual joins.
+- Use Eloquent models and relationships before suggesting raw database queries
+- Avoid `DB::`; prefer `Model::query()`. Generate code that leverages Laravel's ORM capabilities rather than bypassing them.
+- Generate code that prevents N+1 query problems by using eager loading.
+- Use Laravel's query builder for very complex database operations.
+
+### Model Creation
+- When creating new models, create useful factories and seeders for them too. Ask the user if they need any other things, using `list-artisan-commands` to check the available options to `php artisan make:model`.
+
+### APIs & Eloquent Resources
+- For APIs, default to using Eloquent API Resources and API versioning unless existing API routes do not, then you should follow existing application convention.
+
+### Controllers & Validation
+- Always create Form Request classes for validation rather than inline validation in controllers. Include both validation rules and custom error messages.
+- Check sibling Form Requests to see if the application uses array or string based validation rules.
+
+### Queues
+- Use queued jobs for time-consuming operations with the `ShouldQueue` interface.
+
+### Authentication & Authorization
+- Use Laravel's built-in authentication and authorization features (gates, policies, Sanctum, etc.).
+
+### URL Generation
+- When generating links to other pages, prefer named routes and the `route()` function.
+
+### Configuration
+- Use environment variables only in configuration files - never use the `env()` function directly outside of config files. Always use `config('app.name')`, not `env('APP_NAME')`.
+
+### Testing
+- When creating models for tests, use the factories for the models. Check if the factory has custom states that can be used before manually setting up the model.
+- Faker: Use methods such as `$this->faker->word()` or `fake()->randomDigit()`. Follow existing conventions whether to use `$this->faker` or `fake()`.
+- When creating tests, make use of `php artisan make:test [options] ` to create a feature test, and pass `--unit` to create a unit test. Most tests should be feature tests.
+
+### Vite Error
+- If you receive an "Illuminate\Foundation\ViteException: Unable to locate file in Vite manifest" error, you can run `npm run build` or ask the user to run `npm run dev` or `composer run dev`.
+
+
+=== laravel/v11 rules ===
+
+## Laravel 11
+
+- Use the `search-docs` tool to get version specific documentation.
+- This project upgraded from Laravel 10 without migrating to the new streamlined Laravel 11 file structure.
+- This is **perfectly fine** and recommended by Laravel. Follow the existing structure from Laravel 10. We do not to need migrate to the Laravel 11 structure unless the user explicitly requests that.
+
+### Laravel 10 Structure
+- Middleware typically live in `app/Http/Middleware/` and service providers in `app/Providers/`.
+- There is no `bootstrap/app.php` application configuration in a Laravel 10 structure:
+ - Middleware registration is in `app/Http/Kernel.php`
+ - Exception handling is in `app/Exceptions/Handler.php`
+ - Console commands and schedule registration is in `app/Console/Kernel.php`
+ - Rate limits likely exist in `RouteServiceProvider` or `app/Http/Kernel.php`
+
+### Database
+- When modifying a column, the migration must include all of the attributes that were previously defined on the column. Otherwise, they will be dropped and lost.
+- Laravel 11 allows limiting eagerly loaded records natively, without external packages: `$query->latest()->limit(10);`.
+
+### Models
+- Casts can and likely should be set in a `casts()` method on a model rather than the `$casts` property. Follow existing conventions from other models.
+
+### New Artisan Commands
+- List Artisan commands using Boost's MCP tool, if available. New commands available in Laravel 11:
+ - `php artisan make:enum`
+ - `php artisan make:class`
+ - `php artisan make:interface`
+
+
+=== pint/core rules ===
+
+## Laravel Pint Code Formatter
+
+- You must run `vendor/bin/pint --dirty` before finalizing changes to ensure your code matches the project's expected style.
+- Do not run `vendor/bin/pint --test`, simply run `vendor/bin/pint` to fix any formatting issues.
+
+
+=== pest/core rules ===
+
+## Pest
+
+### Testing
+- If you need to verify a feature is working, write or update a Unit / Feature test.
+
+### Pest Tests
+- All tests must be written using Pest. Use `php artisan make:test --pest `.
+- You must not remove any tests or test files from the tests directory without approval. These are not temporary or helper files - these are core to the application.
+- Tests should test all of the happy paths, failure paths, and weird paths.
+- Tests live in the `tests/Feature` and `tests/Unit` directories.
+- Pest tests look and behave like this:
+
+it('is true', function () {
+ expect(true)->toBeTrue();
+});
+
+
+### Running Tests
+- Run the minimal number of tests using an appropriate filter before finalizing code edits.
+- To run all tests: `php artisan test`.
+- To run all tests in a file: `php artisan test tests/Feature/ExampleTest.php`.
+- To filter on a particular test name: `php artisan test --filter=testName` (recommended after making a change to a related file).
+- When the tests relating to your changes are passing, ask the user if they would like to run the entire test suite to ensure everything is still passing.
+
+### Pest Assertions
+- When asserting status codes on a response, use the specific method like `assertForbidden` and `assertNotFound` instead of using `assertStatus(403)` or similar, e.g.:
+
+it('returns all', function () {
+ $response = $this->postJson('/api/docs', []);
+
+ $response->assertSuccessful();
+});
+
+
+### Mocking
+- Mocking can be very helpful when appropriate.
+- When mocking, you can use the `Pest\Laravel\mock` Pest function, but always import it via `use function Pest\Laravel\mock;` before using it. Alternatively, you can use `$this->mock()` if existing tests do.
+- You can also create partial mocks using the same import or self method.
+
+### Datasets
+- Use datasets in Pest to simplify tests which have a lot of duplicated data. This is often the case when testing validation rules, so consider going with this solution when writing tests for validation rules.
+
+
+it('has emails', function (string $email) {
+ expect($email)->not->toBeEmpty();
+})->with([
+ 'james' => 'james@laravel.com',
+ 'taylor' => 'taylor@laravel.com',
+]);
+
+
\ No newline at end of file
diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json
new file mode 100644
index 0000000..d64a26b
--- /dev/null
+++ b/.devcontainer/devcontainer.json
@@ -0,0 +1,44 @@
+{
+ "name": "Partner Grüne Seele (Dev Container)",
+ "dockerComposeFile": [
+ "../docker-compose.yml"
+ ],
+ "service": "laravel.test",
+ "workspaceFolder": "/var/www/html",
+ "remoteUser": "sail",
+ "features": {},
+ "customizations": {
+ "vscode": {
+ "extensions": [
+ "bmewburn.vscode-intelephense-client",
+ "onecentlin.laravel-blade",
+ "shufo.vscode-blade-formatter",
+ "bradlc.vscode-tailwindcss",
+ "Anthropic.claude-code",
+ "onecentlin.laravel-extension-pack"
+ ]
+ }
+ },
+ // WICHTIG: Nur noch den Haupt-Container starten!
+ "runServices": [
+ "laravel.test"
+ ],
+ "containerEnv": {
+ "WWWUSER": "501",
+ "WWWGROUP": "20",
+ "LARAVEL_SAIL": "1"
+ },
+ "mounts": [
+ "source=${localWorkspaceFolder},target=/var/www/html,type=bind,consistency=cached"
+ ],
+ // WICHTIG: Nur noch den Vite-Port weiterleiten
+ "forwardPorts": [
+ 5179
+ ],
+ "portsAttributes": {
+ "5179": {
+ "label": "Vite Dev Server",
+ "onAutoForward": "notify"
+ }
+ }
+}
\ No newline at end of file
diff --git a/.env b/.env
index 26f1aa7..8797e9f 100644
--- a/.env
+++ b/.env
@@ -27,15 +27,15 @@ LOG_CHANNEL=stack
LOG_LEVEL=debug
DB_CONNECTION=mysql
-DB_HOST=192.168.1.8
+DB_HOST=mysql
DB_PORT=3306
-DB_DATABASE=grueneseele
-DB_USERNAME=kadmin
-DB_PASSWORD=KT32vQ7ix
+DB_DATABASE=partner_gruene_seele
+DB_USERNAME=root
+DB_PASSWORD=password
#DB_CONNECTION=mysql
-#DB_HOST=localhost
+#DB_HOST=mysql
#DB_PORT=3306
#DB_DATABASE=web28_db4
#DB_USERNAME=web28_4
@@ -51,16 +51,21 @@ MEMCACHED_HOST=127.0.0.1
REDIS_HOST=127.0.0.1
REDIS_PASSWORD=null
-REDIS_PORT=6379
+REDIS_PORT=6384
+#REDIS_PORT=6379
MAIL_DRIVER=smtp
-MAIL_HOST=w017e534.kasserver.com
-MAIL_PORT=587
-MAIL_USERNAME=m0496c96
-MAIL_PASSWORD=mZtVp7WQcs6DC3hf
-MAIL_ENCRYPTION=null
-MAIL_FROM_ADDRESS=dev@adametz.media
-MAIL_FROM_NAME="DEV Grüne Seele"
+MAIL_HOST=mailpit
+MAIL_PORT=1029
+
+#MAIL_DRIVER=smtp
+#MAIL_HOST=w017e534.kasserver.com
+#MAIL_PORT=587
+#MAIL_USERNAME=m0496c96
+#MAIL_PASSWORD=mZtVp7WQcs6DC3hf
+#MAIL_ENCRYPTION=null
+#MAIL_FROM_ADDRESS=dev@adametz.media
+#MAIL_FROM_NAME="DEV Grüne Seele"
#MAIL_MAILER=smtp
#MAIL_HOST=s182.goserver.host
diff --git a/.mcp.json b/.mcp.json
new file mode 100644
index 0000000..3cceeb6
--- /dev/null
+++ b/.mcp.json
@@ -0,0 +1,27 @@
+{
+ "mcpServers": {
+ "laravel-boost": {
+ "command": "php",
+ "args": [
+ "artisan",
+ "boost:mcp"
+ ]
+ },
+ "context7": {
+ "command": "npx",
+ "args": [
+ "-y",
+ "@upstash/context7-mcp",
+ "--api-key",
+ "ctx7sk-119cd4ab-8983-4229-8702-e84c59c34fc9"
+ ]
+ },
+ "sequential-thinking": {
+ "command": "npx",
+ "args": [
+ "-y",
+ "@modelcontextprotocol/server-sequential-thinking"
+ ]
+ }
+ }
+}
\ No newline at end of file
diff --git a/.phpstorm.meta.php b/.phpstorm.meta.php
index e5375f2..3bb0ac0 100644
--- a/.phpstorm.meta.php
+++ b/.phpstorm.meta.php
@@ -41,7 +41,6 @@ namespace PHPSTORM_META {
'blade.compiler' => \Illuminate\View\Compilers\BladeCompiler::class,
'cache' => \Illuminate\Cache\CacheManager::class,
'cache.store' => \Illuminate\Cache\Repository::class,
- 'command.debugbar.clear' => \Barryvdh\Debugbar\Console\ClearCommand::class,
'command.tinker' => \Laravel\Tinker\Console\TinkerCommand::class,
'composer' => \Illuminate\Support\Composer::class,
'cookie' => \Illuminate\Cookie\CookieJar::class,
@@ -123,7 +122,6 @@ namespace PHPSTORM_META {
'blade.compiler' => \Illuminate\View\Compilers\BladeCompiler::class,
'cache' => \Illuminate\Cache\CacheManager::class,
'cache.store' => \Illuminate\Cache\Repository::class,
- 'command.debugbar.clear' => \Barryvdh\Debugbar\Console\ClearCommand::class,
'command.tinker' => \Laravel\Tinker\Console\TinkerCommand::class,
'composer' => \Illuminate\Support\Composer::class,
'cookie' => \Illuminate\Cookie\CookieJar::class,
@@ -205,7 +203,6 @@ namespace PHPSTORM_META {
'blade.compiler' => \Illuminate\View\Compilers\BladeCompiler::class,
'cache' => \Illuminate\Cache\CacheManager::class,
'cache.store' => \Illuminate\Cache\Repository::class,
- 'command.debugbar.clear' => \Barryvdh\Debugbar\Console\ClearCommand::class,
'command.tinker' => \Laravel\Tinker\Console\TinkerCommand::class,
'composer' => \Illuminate\Support\Composer::class,
'cookie' => \Illuminate\Cookie\CookieJar::class,
@@ -287,7 +284,6 @@ namespace PHPSTORM_META {
'blade.compiler' => \Illuminate\View\Compilers\BladeCompiler::class,
'cache' => \Illuminate\Cache\CacheManager::class,
'cache.store' => \Illuminate\Cache\Repository::class,
- 'command.debugbar.clear' => \Barryvdh\Debugbar\Console\ClearCommand::class,
'command.tinker' => \Laravel\Tinker\Console\TinkerCommand::class,
'composer' => \Illuminate\Support\Composer::class,
'cookie' => \Illuminate\Cookie\CookieJar::class,
@@ -369,7 +365,6 @@ namespace PHPSTORM_META {
'blade.compiler' => \Illuminate\View\Compilers\BladeCompiler::class,
'cache' => \Illuminate\Cache\CacheManager::class,
'cache.store' => \Illuminate\Cache\Repository::class,
- 'command.debugbar.clear' => \Barryvdh\Debugbar\Console\ClearCommand::class,
'command.tinker' => \Laravel\Tinker\Console\TinkerCommand::class,
'composer' => \Illuminate\Support\Composer::class,
'cookie' => \Illuminate\Cookie\CookieJar::class,
@@ -451,7 +446,6 @@ namespace PHPSTORM_META {
'blade.compiler' => \Illuminate\View\Compilers\BladeCompiler::class,
'cache' => \Illuminate\Cache\CacheManager::class,
'cache.store' => \Illuminate\Cache\Repository::class,
- 'command.debugbar.clear' => \Barryvdh\Debugbar\Console\ClearCommand::class,
'command.tinker' => \Laravel\Tinker\Console\TinkerCommand::class,
'composer' => \Illuminate\Support\Composer::class,
'cookie' => \Illuminate\Cookie\CookieJar::class,
@@ -533,7 +527,6 @@ namespace PHPSTORM_META {
'blade.compiler' => \Illuminate\View\Compilers\BladeCompiler::class,
'cache' => \Illuminate\Cache\CacheManager::class,
'cache.store' => \Illuminate\Cache\Repository::class,
- 'command.debugbar.clear' => \Barryvdh\Debugbar\Console\ClearCommand::class,
'command.tinker' => \Laravel\Tinker\Console\TinkerCommand::class,
'composer' => \Illuminate\Support\Composer::class,
'cookie' => \Illuminate\Cookie\CookieJar::class,
@@ -615,7 +608,6 @@ namespace PHPSTORM_META {
'blade.compiler' => \Illuminate\View\Compilers\BladeCompiler::class,
'cache' => \Illuminate\Cache\CacheManager::class,
'cache.store' => \Illuminate\Cache\Repository::class,
- 'command.debugbar.clear' => \Barryvdh\Debugbar\Console\ClearCommand::class,
'command.tinker' => \Laravel\Tinker\Console\TinkerCommand::class,
'composer' => \Illuminate\Support\Composer::class,
'cookie' => \Illuminate\Cookie\CookieJar::class,
@@ -697,7 +689,6 @@ namespace PHPSTORM_META {
'blade.compiler' => \Illuminate\View\Compilers\BladeCompiler::class,
'cache' => \Illuminate\Cache\CacheManager::class,
'cache.store' => \Illuminate\Cache\Repository::class,
- 'command.debugbar.clear' => \Barryvdh\Debugbar\Console\ClearCommand::class,
'command.tinker' => \Laravel\Tinker\Console\TinkerCommand::class,
'composer' => \Illuminate\Support\Composer::class,
'cookie' => \Illuminate\Cookie\CookieJar::class,
@@ -779,7 +770,6 @@ namespace PHPSTORM_META {
'blade.compiler' => \Illuminate\View\Compilers\BladeCompiler::class,
'cache' => \Illuminate\Cache\CacheManager::class,
'cache.store' => \Illuminate\Cache\Repository::class,
- 'command.debugbar.clear' => \Barryvdh\Debugbar\Console\ClearCommand::class,
'command.tinker' => \Laravel\Tinker\Console\TinkerCommand::class,
'composer' => \Illuminate\Support\Composer::class,
'cookie' => \Illuminate\Cookie\CookieJar::class,
@@ -861,7 +851,6 @@ namespace PHPSTORM_META {
'blade.compiler' => \Illuminate\View\Compilers\BladeCompiler::class,
'cache' => \Illuminate\Cache\CacheManager::class,
'cache.store' => \Illuminate\Cache\Repository::class,
- 'command.debugbar.clear' => \Barryvdh\Debugbar\Console\ClearCommand::class,
'command.tinker' => \Laravel\Tinker\Console\TinkerCommand::class,
'composer' => \Illuminate\Support\Composer::class,
'cookie' => \Illuminate\Cookie\CookieJar::class,
@@ -934,6 +923,7 @@ namespace PHPSTORM_META {
]));
override(\config(), map([
+ 'concurrency.default' => 'string',
'app.name' => 'string',
'app.env' => 'string',
'app.debug' => 'boolean',
@@ -1010,6 +1000,7 @@ namespace PHPSTORM_META {
'app.main_tax_rate' => 'string',
'app.main_user_id' => 'string',
'app.exception_mail' => 'string',
+ 'app.logistic_mail' => 'string',
'auth.defaults.guard' => 'string',
'auth.defaults.passwords' => 'string',
'auth.guards.web.driver' => 'string',
@@ -1170,7 +1161,7 @@ namespace PHPSTORM_META {
'debugbar.storage.provider' => 'string',
'debugbar.editor' => 'string',
'debugbar.remote_sites_path' => 'NULL',
- 'debugbar.local_sites_path' => 'NULL',
+ 'debugbar.local_sites_path' => 'string',
'debugbar.include_vendors' => 'boolean',
'debugbar.capture_ajax' => 'boolean',
'debugbar.add_ajax_timing' => 'boolean',
@@ -1178,6 +1169,7 @@ namespace PHPSTORM_META {
'debugbar.ajax_handler_enable_tab' => 'boolean',
'debugbar.defer_datasets' => 'boolean',
'debugbar.error_handler' => 'boolean',
+ 'debugbar.error_level' => 'integer',
'debugbar.clockwork' => 'boolean',
'debugbar.collectors.phpinfo' => 'boolean',
'debugbar.collectors.messages' => 'boolean',
@@ -1281,7 +1273,7 @@ namespace PHPSTORM_META {
'filesystems.disks.import.driver' => 'string',
'filesystems.disks.import.root' => 'string',
'filesystems.disks.import.url' => 'string',
- 'filesystems.links./Users/kadmin/Websites/partner.gruene-seele.bio/public/storage' => 'string',
+ 'filesystems.links./var/www/html/public/storage' => 'string',
'filesystems.cloud' => 'string',
'hashing.driver' => 'string',
'hashing.bcrypt.rounds' => 'integer',
@@ -1297,6 +1289,7 @@ namespace PHPSTORM_META {
'ide-helper.write_model_magic_where' => 'boolean',
'ide-helper.write_model_external_builder_methods' => 'boolean',
'ide-helper.write_model_relation_count_properties' => 'boolean',
+ 'ide-helper.write_model_relation_exists_properties' => 'boolean',
'ide-helper.write_eloquent_model_mixins' => 'boolean',
'ide-helper.include_helpers' => 'boolean',
'ide-helper.helper_files' => 'array',
@@ -1313,11 +1306,11 @@ namespace PHPSTORM_META {
'ide-helper.include_class_docblocks' => 'boolean',
'ide-helper.force_fqn' => 'boolean',
'ide-helper.use_generics_annotations' => 'boolean',
+ 'ide-helper.macro_default_return_types.Illuminate\Http\Client\Factory' => 'string',
'ide-helper.additional_relation_types' => 'array',
'ide-helper.additional_relation_return_types' => 'array',
'ide-helper.enforce_nullable_relationships' => 'boolean',
'ide-helper.post_migrate' => 'array',
- 'ide-helper.macroable_traits' => 'array',
'ide-helper.custom_db_types' => 'array',
'localization.supportedLocales.de.name' => 'string',
'localization.supportedLocales.de.script' => 'string',
@@ -1357,13 +1350,19 @@ namespace PHPSTORM_META {
'logging.channels.null.driver' => 'string',
'logging.channels.null.handler' => 'string',
'logging.channels.emergency.path' => 'string',
+ 'logging.channels.browser.driver' => 'string',
+ 'logging.channels.browser.path' => 'string',
+ 'logging.channels.browser.level' => 'string',
+ 'logging.channels.browser.days' => 'integer',
+ 'logging.channels.deprecations.driver' => 'string',
+ 'logging.channels.deprecations.handler' => 'string',
'mail.default' => 'string',
'mail.mailers.smtp.transport' => 'string',
'mail.mailers.smtp.host' => 'string',
'mail.mailers.smtp.port' => 'string',
- 'mail.mailers.smtp.encryption' => 'NULL',
- 'mail.mailers.smtp.username' => 'string',
- 'mail.mailers.smtp.password' => 'string',
+ 'mail.mailers.smtp.encryption' => 'string',
+ 'mail.mailers.smtp.username' => 'NULL',
+ 'mail.mailers.smtp.password' => 'NULL',
'mail.mailers.ses.transport' => 'string',
'mail.mailers.postmark.transport' => 'string',
'mail.mailers.resend.transport' => 'string',
@@ -1451,7 +1450,7 @@ namespace PHPSTORM_META {
'profanity.strReplace.x' => 'string',
'profanity.strReplace.y' => 'string',
'profanity.strReplace.z' => 'string',
- 'profanity.defaults' => 'array',
+ 'profanity.full_word_check' => 'array',
'queue.default' => 'string',
'queue.connections.sync.driver' => 'string',
'queue.connections.database.driver' => 'string',
@@ -1522,7 +1521,6 @@ namespace PHPSTORM_META {
'view.paths' => 'array',
'view.compiled' => 'string',
'view.expires' => 'boolean',
- 'concurrency.default' => 'string',
'translation.driver' => 'string',
'translation.route_group_config.middleware' => 'string',
'translation.translation_methods' => 'array',
@@ -1531,6 +1529,13 @@ namespace PHPSTORM_META {
'translation.database.connection' => 'string',
'translation.database.languages_table' => 'string',
'translation.database.translations_table' => 'string',
+ 'boost.enabled' => 'boolean',
+ 'boost.browser_logs_watcher' => 'boolean',
+ 'boost.executable_paths.php' => 'NULL',
+ 'boost.executable_paths.composer' => 'NULL',
+ 'boost.executable_paths.npm' => 'NULL',
+ 'boost.executable_paths.vendor_bin' => 'NULL',
+ 'mcp.redirect_domains' => 'array',
'passport.guard' => 'string',
'passport.private_key' => 'NULL',
'passport.public_key' => 'NULL',
@@ -1631,8 +1636,10 @@ namespace PHPSTORM_META {
'tinker.commands' => 'array',
'tinker.alias' => 'array',
'tinker.dont_alias' => 'array',
+ 'tinker.trust_project' => 'string',
]));
override(\Illuminate\Config\Repository::get(), map([
+ 'concurrency.default' => 'string',
'app.name' => 'string',
'app.env' => 'string',
'app.debug' => 'boolean',
@@ -1709,6 +1716,7 @@ namespace PHPSTORM_META {
'app.main_tax_rate' => 'string',
'app.main_user_id' => 'string',
'app.exception_mail' => 'string',
+ 'app.logistic_mail' => 'string',
'auth.defaults.guard' => 'string',
'auth.defaults.passwords' => 'string',
'auth.guards.web.driver' => 'string',
@@ -1869,7 +1877,7 @@ namespace PHPSTORM_META {
'debugbar.storage.provider' => 'string',
'debugbar.editor' => 'string',
'debugbar.remote_sites_path' => 'NULL',
- 'debugbar.local_sites_path' => 'NULL',
+ 'debugbar.local_sites_path' => 'string',
'debugbar.include_vendors' => 'boolean',
'debugbar.capture_ajax' => 'boolean',
'debugbar.add_ajax_timing' => 'boolean',
@@ -1877,6 +1885,7 @@ namespace PHPSTORM_META {
'debugbar.ajax_handler_enable_tab' => 'boolean',
'debugbar.defer_datasets' => 'boolean',
'debugbar.error_handler' => 'boolean',
+ 'debugbar.error_level' => 'integer',
'debugbar.clockwork' => 'boolean',
'debugbar.collectors.phpinfo' => 'boolean',
'debugbar.collectors.messages' => 'boolean',
@@ -1980,7 +1989,7 @@ namespace PHPSTORM_META {
'filesystems.disks.import.driver' => 'string',
'filesystems.disks.import.root' => 'string',
'filesystems.disks.import.url' => 'string',
- 'filesystems.links./Users/kadmin/Websites/partner.gruene-seele.bio/public/storage' => 'string',
+ 'filesystems.links./var/www/html/public/storage' => 'string',
'filesystems.cloud' => 'string',
'hashing.driver' => 'string',
'hashing.bcrypt.rounds' => 'integer',
@@ -1996,6 +2005,7 @@ namespace PHPSTORM_META {
'ide-helper.write_model_magic_where' => 'boolean',
'ide-helper.write_model_external_builder_methods' => 'boolean',
'ide-helper.write_model_relation_count_properties' => 'boolean',
+ 'ide-helper.write_model_relation_exists_properties' => 'boolean',
'ide-helper.write_eloquent_model_mixins' => 'boolean',
'ide-helper.include_helpers' => 'boolean',
'ide-helper.helper_files' => 'array',
@@ -2012,11 +2022,11 @@ namespace PHPSTORM_META {
'ide-helper.include_class_docblocks' => 'boolean',
'ide-helper.force_fqn' => 'boolean',
'ide-helper.use_generics_annotations' => 'boolean',
+ 'ide-helper.macro_default_return_types.Illuminate\Http\Client\Factory' => 'string',
'ide-helper.additional_relation_types' => 'array',
'ide-helper.additional_relation_return_types' => 'array',
'ide-helper.enforce_nullable_relationships' => 'boolean',
'ide-helper.post_migrate' => 'array',
- 'ide-helper.macroable_traits' => 'array',
'ide-helper.custom_db_types' => 'array',
'localization.supportedLocales.de.name' => 'string',
'localization.supportedLocales.de.script' => 'string',
@@ -2056,13 +2066,19 @@ namespace PHPSTORM_META {
'logging.channels.null.driver' => 'string',
'logging.channels.null.handler' => 'string',
'logging.channels.emergency.path' => 'string',
+ 'logging.channels.browser.driver' => 'string',
+ 'logging.channels.browser.path' => 'string',
+ 'logging.channels.browser.level' => 'string',
+ 'logging.channels.browser.days' => 'integer',
+ 'logging.channels.deprecations.driver' => 'string',
+ 'logging.channels.deprecations.handler' => 'string',
'mail.default' => 'string',
'mail.mailers.smtp.transport' => 'string',
'mail.mailers.smtp.host' => 'string',
'mail.mailers.smtp.port' => 'string',
- 'mail.mailers.smtp.encryption' => 'NULL',
- 'mail.mailers.smtp.username' => 'string',
- 'mail.mailers.smtp.password' => 'string',
+ 'mail.mailers.smtp.encryption' => 'string',
+ 'mail.mailers.smtp.username' => 'NULL',
+ 'mail.mailers.smtp.password' => 'NULL',
'mail.mailers.ses.transport' => 'string',
'mail.mailers.postmark.transport' => 'string',
'mail.mailers.resend.transport' => 'string',
@@ -2150,7 +2166,7 @@ namespace PHPSTORM_META {
'profanity.strReplace.x' => 'string',
'profanity.strReplace.y' => 'string',
'profanity.strReplace.z' => 'string',
- 'profanity.defaults' => 'array',
+ 'profanity.full_word_check' => 'array',
'queue.default' => 'string',
'queue.connections.sync.driver' => 'string',
'queue.connections.database.driver' => 'string',
@@ -2221,7 +2237,6 @@ namespace PHPSTORM_META {
'view.paths' => 'array',
'view.compiled' => 'string',
'view.expires' => 'boolean',
- 'concurrency.default' => 'string',
'translation.driver' => 'string',
'translation.route_group_config.middleware' => 'string',
'translation.translation_methods' => 'array',
@@ -2230,6 +2245,13 @@ namespace PHPSTORM_META {
'translation.database.connection' => 'string',
'translation.database.languages_table' => 'string',
'translation.database.translations_table' => 'string',
+ 'boost.enabled' => 'boolean',
+ 'boost.browser_logs_watcher' => 'boolean',
+ 'boost.executable_paths.php' => 'NULL',
+ 'boost.executable_paths.composer' => 'NULL',
+ 'boost.executable_paths.npm' => 'NULL',
+ 'boost.executable_paths.vendor_bin' => 'NULL',
+ 'mcp.redirect_domains' => 'array',
'passport.guard' => 'string',
'passport.private_key' => 'NULL',
'passport.public_key' => 'NULL',
@@ -2330,8 +2352,10 @@ namespace PHPSTORM_META {
'tinker.commands' => 'array',
'tinker.alias' => 'array',
'tinker.dont_alias' => 'array',
+ 'tinker.trust_project' => 'string',
]));
override(\Illuminate\Support\Facades\Config::get(), map([
+ 'concurrency.default' => 'string',
'app.name' => 'string',
'app.env' => 'string',
'app.debug' => 'boolean',
@@ -2408,6 +2432,7 @@ namespace PHPSTORM_META {
'app.main_tax_rate' => 'string',
'app.main_user_id' => 'string',
'app.exception_mail' => 'string',
+ 'app.logistic_mail' => 'string',
'auth.defaults.guard' => 'string',
'auth.defaults.passwords' => 'string',
'auth.guards.web.driver' => 'string',
@@ -2568,7 +2593,7 @@ namespace PHPSTORM_META {
'debugbar.storage.provider' => 'string',
'debugbar.editor' => 'string',
'debugbar.remote_sites_path' => 'NULL',
- 'debugbar.local_sites_path' => 'NULL',
+ 'debugbar.local_sites_path' => 'string',
'debugbar.include_vendors' => 'boolean',
'debugbar.capture_ajax' => 'boolean',
'debugbar.add_ajax_timing' => 'boolean',
@@ -2576,6 +2601,7 @@ namespace PHPSTORM_META {
'debugbar.ajax_handler_enable_tab' => 'boolean',
'debugbar.defer_datasets' => 'boolean',
'debugbar.error_handler' => 'boolean',
+ 'debugbar.error_level' => 'integer',
'debugbar.clockwork' => 'boolean',
'debugbar.collectors.phpinfo' => 'boolean',
'debugbar.collectors.messages' => 'boolean',
@@ -2679,7 +2705,7 @@ namespace PHPSTORM_META {
'filesystems.disks.import.driver' => 'string',
'filesystems.disks.import.root' => 'string',
'filesystems.disks.import.url' => 'string',
- 'filesystems.links./Users/kadmin/Websites/partner.gruene-seele.bio/public/storage' => 'string',
+ 'filesystems.links./var/www/html/public/storage' => 'string',
'filesystems.cloud' => 'string',
'hashing.driver' => 'string',
'hashing.bcrypt.rounds' => 'integer',
@@ -2695,6 +2721,7 @@ namespace PHPSTORM_META {
'ide-helper.write_model_magic_where' => 'boolean',
'ide-helper.write_model_external_builder_methods' => 'boolean',
'ide-helper.write_model_relation_count_properties' => 'boolean',
+ 'ide-helper.write_model_relation_exists_properties' => 'boolean',
'ide-helper.write_eloquent_model_mixins' => 'boolean',
'ide-helper.include_helpers' => 'boolean',
'ide-helper.helper_files' => 'array',
@@ -2711,11 +2738,11 @@ namespace PHPSTORM_META {
'ide-helper.include_class_docblocks' => 'boolean',
'ide-helper.force_fqn' => 'boolean',
'ide-helper.use_generics_annotations' => 'boolean',
+ 'ide-helper.macro_default_return_types.Illuminate\Http\Client\Factory' => 'string',
'ide-helper.additional_relation_types' => 'array',
'ide-helper.additional_relation_return_types' => 'array',
'ide-helper.enforce_nullable_relationships' => 'boolean',
'ide-helper.post_migrate' => 'array',
- 'ide-helper.macroable_traits' => 'array',
'ide-helper.custom_db_types' => 'array',
'localization.supportedLocales.de.name' => 'string',
'localization.supportedLocales.de.script' => 'string',
@@ -2755,13 +2782,19 @@ namespace PHPSTORM_META {
'logging.channels.null.driver' => 'string',
'logging.channels.null.handler' => 'string',
'logging.channels.emergency.path' => 'string',
+ 'logging.channels.browser.driver' => 'string',
+ 'logging.channels.browser.path' => 'string',
+ 'logging.channels.browser.level' => 'string',
+ 'logging.channels.browser.days' => 'integer',
+ 'logging.channels.deprecations.driver' => 'string',
+ 'logging.channels.deprecations.handler' => 'string',
'mail.default' => 'string',
'mail.mailers.smtp.transport' => 'string',
'mail.mailers.smtp.host' => 'string',
'mail.mailers.smtp.port' => 'string',
- 'mail.mailers.smtp.encryption' => 'NULL',
- 'mail.mailers.smtp.username' => 'string',
- 'mail.mailers.smtp.password' => 'string',
+ 'mail.mailers.smtp.encryption' => 'string',
+ 'mail.mailers.smtp.username' => 'NULL',
+ 'mail.mailers.smtp.password' => 'NULL',
'mail.mailers.ses.transport' => 'string',
'mail.mailers.postmark.transport' => 'string',
'mail.mailers.resend.transport' => 'string',
@@ -2849,7 +2882,7 @@ namespace PHPSTORM_META {
'profanity.strReplace.x' => 'string',
'profanity.strReplace.y' => 'string',
'profanity.strReplace.z' => 'string',
- 'profanity.defaults' => 'array',
+ 'profanity.full_word_check' => 'array',
'queue.default' => 'string',
'queue.connections.sync.driver' => 'string',
'queue.connections.database.driver' => 'string',
@@ -2920,7 +2953,6 @@ namespace PHPSTORM_META {
'view.paths' => 'array',
'view.compiled' => 'string',
'view.expires' => 'boolean',
- 'concurrency.default' => 'string',
'translation.driver' => 'string',
'translation.route_group_config.middleware' => 'string',
'translation.translation_methods' => 'array',
@@ -2929,6 +2961,13 @@ namespace PHPSTORM_META {
'translation.database.connection' => 'string',
'translation.database.languages_table' => 'string',
'translation.database.translations_table' => 'string',
+ 'boost.enabled' => 'boolean',
+ 'boost.browser_logs_watcher' => 'boolean',
+ 'boost.executable_paths.php' => 'NULL',
+ 'boost.executable_paths.composer' => 'NULL',
+ 'boost.executable_paths.npm' => 'NULL',
+ 'boost.executable_paths.vendor_bin' => 'NULL',
+ 'mcp.redirect_domains' => 'array',
'passport.guard' => 'string',
'passport.private_key' => 'NULL',
'passport.public_key' => 'NULL',
@@ -3029,6 +3068,7 @@ namespace PHPSTORM_META {
'tinker.commands' => 'array',
'tinker.alias' => 'array',
'tinker.dont_alias' => 'array',
+ 'tinker.trust_project' => 'string',
]));
@@ -3071,91 +3111,93 @@ namespace PHPSTORM_META {
'getModelClass','viewAny','view','create','update',
'delete','isOwner','denyWithStatus','denyAsNotFound',);
registerArgumentsSet('configs',
-'app.name','app.env','app.debug','app.url','app.frontend_url',
-'app.asset_url','app.timezone','app.locale','app.fallback_locale','app.faker_locale',
-'app.cipher','app.key','app.previous_keys','app.maintenance.driver','app.maintenance.store',
-'app.providers','app.aliases.App','app.aliases.Arr','app.aliases.Artisan','app.aliases.Auth',
-'app.aliases.Blade','app.aliases.Broadcast','app.aliases.Bus','app.aliases.Cache','app.aliases.Config',
-'app.aliases.Cookie','app.aliases.Crypt','app.aliases.DB','app.aliases.Eloquent','app.aliases.Event',
-'app.aliases.File','app.aliases.Gate','app.aliases.Hash','app.aliases.Http','app.aliases.Lang',
-'app.aliases.Log','app.aliases.Mail','app.aliases.Notification','app.aliases.Password','app.aliases.Queue',
-'app.aliases.Redirect','app.aliases.Redis','app.aliases.Request','app.aliases.Response','app.aliases.Route',
-'app.aliases.Schema','app.aliases.Session','app.aliases.Storage','app.aliases.Str','app.aliases.URL',
-'app.aliases.Validator','app.aliases.View','app.aliases.Form','app.aliases.HTML','app.aliases.Image',
-'app.aliases.Carbon','app.aliases.Date','app.aliases.HTMLHelper','app.aliases.Util','app.aliases.Excel',
-'app.aliases.DataTables','app.aliases.Yard','app.api_domain','app.domain','app.promo_url',
-'app.promo_domain','app.shop_url','app.shop_domain','app.checkout_mail','app.checkout_test_mail',
-'app.info_mail','app.info_test_mail','app.main_tax','app.main_tax_rate','app.main_user_id',
-'app.exception_mail','auth.defaults.guard','auth.defaults.passwords','auth.guards.web.driver','auth.guards.web.provider',
-'auth.guards.user.driver','auth.guards.user.provider','auth.guards.api.driver','auth.guards.api.provider','auth.providers.users.driver',
-'auth.providers.users.model','auth.passwords.users.provider','auth.passwords.users.table','auth.passwords.users.expire','auth.passwords.users.throttle',
-'auth.password_timeout','broadcasting.default','broadcasting.connections.reverb.driver','broadcasting.connections.reverb.key','broadcasting.connections.reverb.secret',
-'broadcasting.connections.reverb.app_id','broadcasting.connections.reverb.options.host','broadcasting.connections.reverb.options.port','broadcasting.connections.reverb.options.scheme','broadcasting.connections.reverb.options.useTLS',
-'broadcasting.connections.reverb.client_options','broadcasting.connections.pusher.driver','broadcasting.connections.pusher.key','broadcasting.connections.pusher.secret','broadcasting.connections.pusher.app_id',
-'broadcasting.connections.pusher.options.cluster','broadcasting.connections.pusher.options.useTLS','broadcasting.connections.ably.driver','broadcasting.connections.ably.key','broadcasting.connections.log.driver',
-'broadcasting.connections.null.driver','broadcasting.connections.redis.driver','broadcasting.connections.redis.connection','cache.default','cache.stores.array.driver',
-'cache.stores.database.driver','cache.stores.database.table','cache.stores.database.connection','cache.stores.file.driver','cache.stores.file.path',
-'cache.stores.memcached.driver','cache.stores.memcached.persistent_id','cache.stores.memcached.sasl','cache.stores.memcached.options','cache.stores.memcached.servers.0.host',
-'cache.stores.memcached.servers.0.port','cache.stores.memcached.servers.0.weight','cache.stores.redis.driver','cache.stores.redis.connection','cache.stores.dynamodb.driver',
-'cache.stores.dynamodb.key','cache.stores.dynamodb.secret','cache.stores.dynamodb.region','cache.stores.dynamodb.table','cache.stores.dynamodb.endpoint',
-'cache.stores.octane.driver','cache.stores.apc.driver','cache.prefix','cart.tax','cart.database.connection',
-'cart.database.table','cart.destroy_on_logout','cart.format.decimals','cart.format.decimal_point','cart.format.thousand_seperator',
-'cart.discountOnFees','cors.paths','cors.allowed_methods','cors.allowed_origins','cors.allowed_origins_patterns',
-'cors.allowed_headers','cors.exposed_headers','cors.max_age','cors.supports_credentials','database.default',
-'database.connections.sqlite.driver','database.connections.sqlite.url','database.connections.sqlite.database','database.connections.sqlite.prefix','database.connections.sqlite.foreign_key_constraints',
-'database.connections.mysql.driver','database.connections.mysql.url','database.connections.mysql.host','database.connections.mysql.port','database.connections.mysql.database',
-'database.connections.mysql.username','database.connections.mysql.password','database.connections.mysql.unix_socket','database.connections.mysql.charset','database.connections.mysql.collation',
-'database.connections.mysql.prefix','database.connections.mysql.prefix_indexes','database.connections.mysql.strict','database.connections.mysql.engine','database.connections.mysql.options',
-'database.connections.mariadb.driver','database.connections.mariadb.url','database.connections.mariadb.host','database.connections.mariadb.port','database.connections.mariadb.database',
-'database.connections.mariadb.username','database.connections.mariadb.password','database.connections.mariadb.unix_socket','database.connections.mariadb.charset','database.connections.mariadb.collation',
-'database.connections.mariadb.prefix','database.connections.mariadb.prefix_indexes','database.connections.mariadb.strict','database.connections.mariadb.engine','database.connections.mariadb.options',
-'database.connections.pgsql.driver','database.connections.pgsql.url','database.connections.pgsql.host','database.connections.pgsql.port','database.connections.pgsql.database',
-'database.connections.pgsql.username','database.connections.pgsql.password','database.connections.pgsql.charset','database.connections.pgsql.prefix','database.connections.pgsql.prefix_indexes',
-'database.connections.pgsql.schema','database.connections.pgsql.sslmode','database.connections.sqlsrv.driver','database.connections.sqlsrv.url','database.connections.sqlsrv.host',
-'database.connections.sqlsrv.port','database.connections.sqlsrv.database','database.connections.sqlsrv.username','database.connections.sqlsrv.password','database.connections.sqlsrv.charset',
-'database.connections.sqlsrv.prefix','database.connections.sqlsrv.prefix_indexes','database.migrations','database.redis.client','database.redis.options.cluster',
-'database.redis.options.prefix','database.redis.default.url','database.redis.default.host','database.redis.default.password','database.redis.default.port',
-'database.redis.default.database','database.redis.cache.url','database.redis.cache.host','database.redis.cache.password','database.redis.cache.port',
-'database.redis.cache.database','debugbar.enabled','debugbar.hide_empty_tabs','debugbar.except','debugbar.storage.enabled',
-'debugbar.storage.driver','debugbar.storage.path','debugbar.storage.connection','debugbar.storage.provider','debugbar.editor',
-'debugbar.remote_sites_path','debugbar.local_sites_path','debugbar.include_vendors','debugbar.capture_ajax','debugbar.add_ajax_timing',
-'debugbar.ajax_handler_auto_show','debugbar.ajax_handler_enable_tab','debugbar.defer_datasets','debugbar.error_handler','debugbar.clockwork',
-'debugbar.collectors.phpinfo','debugbar.collectors.messages','debugbar.collectors.time','debugbar.collectors.memory','debugbar.collectors.exceptions',
-'debugbar.collectors.log','debugbar.collectors.db','debugbar.collectors.views','debugbar.collectors.route','debugbar.collectors.auth',
-'debugbar.collectors.gate','debugbar.collectors.session','debugbar.collectors.symfony_request','debugbar.collectors.mail','debugbar.collectors.laravel',
-'debugbar.collectors.events','debugbar.collectors.default_request','debugbar.collectors.logs','debugbar.collectors.files','debugbar.collectors.config',
-'debugbar.collectors.cache','debugbar.collectors.models','debugbar.collectors.livewire','debugbar.options.auth.show_name','debugbar.options.db.with_params',
-'debugbar.options.db.backtrace','debugbar.options.db.backtrace_exclude_paths','debugbar.options.db.timeline','debugbar.options.db.explain.enabled','debugbar.options.db.explain.types',
-'debugbar.options.db.hints','debugbar.options.db.show_copy','debugbar.options.mail.full_log','debugbar.options.views.data','debugbar.options.route.label',
-'debugbar.options.logs.file','debugbar.options.cache.values','debugbar.inject','debugbar.route_prefix','debugbar.route_middleware',
-'debugbar.route_domain','debugbar.theme','debugbar.debug_backtrace_limit','dompdf.show_warnings','dompdf.public_path',
-'dompdf.convert_entities','dompdf.options.font_dir','dompdf.options.font_cache','dompdf.options.temp_dir','dompdf.options.chroot',
-'dompdf.options.allowed_protocols.file://.rules','dompdf.options.allowed_protocols.http://.rules','dompdf.options.allowed_protocols.https://.rules','dompdf.options.log_output_file','dompdf.options.enable_font_subsetting',
-'dompdf.options.pdf_backend','dompdf.options.default_media_type','dompdf.options.default_paper_size','dompdf.options.default_paper_orientation','dompdf.options.default_font',
-'dompdf.options.dpi','dompdf.options.enable_php','dompdf.options.enable_javascript','dompdf.options.enable_remote','dompdf.options.font_height_ratio',
-'dompdf.options.enable_html5_parser','dompdf.orientation','dompdf.defines.font_dir','dompdf.defines.font_cache','dompdf.defines.temp_dir',
-'dompdf.defines.chroot','dompdf.defines.enable_font_subsetting','dompdf.defines.pdf_backend','dompdf.defines.default_media_type','dompdf.defines.default_paper_size',
-'dompdf.defines.default_font','dompdf.defines.dpi','dompdf.defines.enable_php','dompdf.defines.enable_javascript','dompdf.defines.enable_remote',
-'dompdf.defines.font_height_ratio','dompdf.defines.enable_html5_parser','filesystems.default','filesystems.disks.local.driver','filesystems.disks.local.root',
-'filesystems.disks.public.driver','filesystems.disks.public.root','filesystems.disks.public.url','filesystems.disks.public.visibility','filesystems.disks.s3.driver',
-'filesystems.disks.s3.key','filesystems.disks.s3.secret','filesystems.disks.s3.region','filesystems.disks.s3.bucket','filesystems.disks.s3.url',
-'filesystems.disks.user.driver','filesystems.disks.user.root','filesystems.disks.user.url','filesystems.disks.user.visibility','filesystems.disks.import.driver',
-'filesystems.disks.import.root','filesystems.disks.import.url','filesystems.links./Users/kadmin/Websites/partner.gruene-seele.bio/public/storage','filesystems.cloud','hashing.driver',
-'hashing.bcrypt.rounds','hashing.argon.memory','hashing.argon.threads','hashing.argon.time','hashing.rehash_on_login',
-'ide-helper.filename','ide-helper.models_filename','ide-helper.meta_filename','ide-helper.include_fluent','ide-helper.include_factory_builders',
-'ide-helper.write_model_magic_where','ide-helper.write_model_external_builder_methods','ide-helper.write_model_relation_count_properties','ide-helper.write_eloquent_model_mixins','ide-helper.include_helpers',
-'ide-helper.helper_files','ide-helper.model_locations','ide-helper.ignored_models','ide-helper.model_hooks','ide-helper.extra.Eloquent',
-'ide-helper.extra.Session','ide-helper.magic','ide-helper.interfaces','ide-helper.model_camel_case_properties','ide-helper.type_overrides.integer',
-'ide-helper.type_overrides.boolean','ide-helper.include_class_docblocks','ide-helper.force_fqn','ide-helper.use_generics_annotations','ide-helper.additional_relation_types',
-'ide-helper.additional_relation_return_types','ide-helper.enforce_nullable_relationships','ide-helper.post_migrate','ide-helper.macroable_traits','ide-helper.custom_db_types',
-'localization.supportedLocales.de.name','localization.supportedLocales.de.script','localization.supportedLocales.de.native','localization.supportedLocales.de.regional','logging.default',
-'logging.deprecations.channel','logging.deprecations.trace','logging.channels.stack.driver','logging.channels.stack.channels','logging.channels.stack.ignore_exceptions',
-'logging.channels.single.driver','logging.channels.single.path','logging.channels.single.level','logging.channels.daily.driver','logging.channels.daily.path',
-'logging.channels.daily.level','logging.channels.daily.days','logging.channels.slack.driver','logging.channels.slack.url','logging.channels.slack.username',
-'logging.channels.slack.emoji','logging.channels.slack.level','logging.channels.papertrail.driver','logging.channels.papertrail.level','logging.channels.papertrail.handler',
-'logging.channels.papertrail.handler_with.host','logging.channels.papertrail.handler_with.port','logging.channels.stderr.driver','logging.channels.stderr.handler','logging.channels.stderr.formatter',
-'logging.channels.stderr.with.stream','logging.channels.syslog.driver','logging.channels.syslog.level','logging.channels.errorlog.driver','logging.channels.errorlog.level',
-'logging.channels.null.driver','logging.channels.null.handler','logging.channels.emergency.path','mail.default','mail.mailers.smtp.transport',
+'concurrency.default','app.name','app.env','app.debug','app.url',
+'app.frontend_url','app.asset_url','app.timezone','app.locale','app.fallback_locale',
+'app.faker_locale','app.cipher','app.key','app.previous_keys','app.maintenance.driver',
+'app.maintenance.store','app.providers','app.aliases.App','app.aliases.Arr','app.aliases.Artisan',
+'app.aliases.Auth','app.aliases.Blade','app.aliases.Broadcast','app.aliases.Bus','app.aliases.Cache',
+'app.aliases.Config','app.aliases.Cookie','app.aliases.Crypt','app.aliases.DB','app.aliases.Eloquent',
+'app.aliases.Event','app.aliases.File','app.aliases.Gate','app.aliases.Hash','app.aliases.Http',
+'app.aliases.Lang','app.aliases.Log','app.aliases.Mail','app.aliases.Notification','app.aliases.Password',
+'app.aliases.Queue','app.aliases.Redirect','app.aliases.Redis','app.aliases.Request','app.aliases.Response',
+'app.aliases.Route','app.aliases.Schema','app.aliases.Session','app.aliases.Storage','app.aliases.Str',
+'app.aliases.URL','app.aliases.Validator','app.aliases.View','app.aliases.Form','app.aliases.HTML',
+'app.aliases.Image','app.aliases.Carbon','app.aliases.Date','app.aliases.HTMLHelper','app.aliases.Util',
+'app.aliases.Excel','app.aliases.DataTables','app.aliases.Yard','app.api_domain','app.domain',
+'app.promo_url','app.promo_domain','app.shop_url','app.shop_domain','app.checkout_mail',
+'app.checkout_test_mail','app.info_mail','app.info_test_mail','app.main_tax','app.main_tax_rate',
+'app.main_user_id','app.exception_mail','app.logistic_mail','auth.defaults.guard','auth.defaults.passwords',
+'auth.guards.web.driver','auth.guards.web.provider','auth.guards.user.driver','auth.guards.user.provider','auth.guards.api.driver',
+'auth.guards.api.provider','auth.providers.users.driver','auth.providers.users.model','auth.passwords.users.provider','auth.passwords.users.table',
+'auth.passwords.users.expire','auth.passwords.users.throttle','auth.password_timeout','broadcasting.default','broadcasting.connections.reverb.driver',
+'broadcasting.connections.reverb.key','broadcasting.connections.reverb.secret','broadcasting.connections.reverb.app_id','broadcasting.connections.reverb.options.host','broadcasting.connections.reverb.options.port',
+'broadcasting.connections.reverb.options.scheme','broadcasting.connections.reverb.options.useTLS','broadcasting.connections.reverb.client_options','broadcasting.connections.pusher.driver','broadcasting.connections.pusher.key',
+'broadcasting.connections.pusher.secret','broadcasting.connections.pusher.app_id','broadcasting.connections.pusher.options.cluster','broadcasting.connections.pusher.options.useTLS','broadcasting.connections.ably.driver',
+'broadcasting.connections.ably.key','broadcasting.connections.log.driver','broadcasting.connections.null.driver','broadcasting.connections.redis.driver','broadcasting.connections.redis.connection',
+'cache.default','cache.stores.array.driver','cache.stores.database.driver','cache.stores.database.table','cache.stores.database.connection',
+'cache.stores.file.driver','cache.stores.file.path','cache.stores.memcached.driver','cache.stores.memcached.persistent_id','cache.stores.memcached.sasl',
+'cache.stores.memcached.options','cache.stores.memcached.servers.0.host','cache.stores.memcached.servers.0.port','cache.stores.memcached.servers.0.weight','cache.stores.redis.driver',
+'cache.stores.redis.connection','cache.stores.dynamodb.driver','cache.stores.dynamodb.key','cache.stores.dynamodb.secret','cache.stores.dynamodb.region',
+'cache.stores.dynamodb.table','cache.stores.dynamodb.endpoint','cache.stores.octane.driver','cache.stores.apc.driver','cache.prefix',
+'cart.tax','cart.database.connection','cart.database.table','cart.destroy_on_logout','cart.format.decimals',
+'cart.format.decimal_point','cart.format.thousand_seperator','cart.discountOnFees','cors.paths','cors.allowed_methods',
+'cors.allowed_origins','cors.allowed_origins_patterns','cors.allowed_headers','cors.exposed_headers','cors.max_age',
+'cors.supports_credentials','database.default','database.connections.sqlite.driver','database.connections.sqlite.url','database.connections.sqlite.database',
+'database.connections.sqlite.prefix','database.connections.sqlite.foreign_key_constraints','database.connections.mysql.driver','database.connections.mysql.url','database.connections.mysql.host',
+'database.connections.mysql.port','database.connections.mysql.database','database.connections.mysql.username','database.connections.mysql.password','database.connections.mysql.unix_socket',
+'database.connections.mysql.charset','database.connections.mysql.collation','database.connections.mysql.prefix','database.connections.mysql.prefix_indexes','database.connections.mysql.strict',
+'database.connections.mysql.engine','database.connections.mysql.options','database.connections.mariadb.driver','database.connections.mariadb.url','database.connections.mariadb.host',
+'database.connections.mariadb.port','database.connections.mariadb.database','database.connections.mariadb.username','database.connections.mariadb.password','database.connections.mariadb.unix_socket',
+'database.connections.mariadb.charset','database.connections.mariadb.collation','database.connections.mariadb.prefix','database.connections.mariadb.prefix_indexes','database.connections.mariadb.strict',
+'database.connections.mariadb.engine','database.connections.mariadb.options','database.connections.pgsql.driver','database.connections.pgsql.url','database.connections.pgsql.host',
+'database.connections.pgsql.port','database.connections.pgsql.database','database.connections.pgsql.username','database.connections.pgsql.password','database.connections.pgsql.charset',
+'database.connections.pgsql.prefix','database.connections.pgsql.prefix_indexes','database.connections.pgsql.schema','database.connections.pgsql.sslmode','database.connections.sqlsrv.driver',
+'database.connections.sqlsrv.url','database.connections.sqlsrv.host','database.connections.sqlsrv.port','database.connections.sqlsrv.database','database.connections.sqlsrv.username',
+'database.connections.sqlsrv.password','database.connections.sqlsrv.charset','database.connections.sqlsrv.prefix','database.connections.sqlsrv.prefix_indexes','database.migrations',
+'database.redis.client','database.redis.options.cluster','database.redis.options.prefix','database.redis.default.url','database.redis.default.host',
+'database.redis.default.password','database.redis.default.port','database.redis.default.database','database.redis.cache.url','database.redis.cache.host',
+'database.redis.cache.password','database.redis.cache.port','database.redis.cache.database','debugbar.enabled','debugbar.hide_empty_tabs',
+'debugbar.except','debugbar.storage.enabled','debugbar.storage.driver','debugbar.storage.path','debugbar.storage.connection',
+'debugbar.storage.provider','debugbar.editor','debugbar.remote_sites_path','debugbar.local_sites_path','debugbar.include_vendors',
+'debugbar.capture_ajax','debugbar.add_ajax_timing','debugbar.ajax_handler_auto_show','debugbar.ajax_handler_enable_tab','debugbar.defer_datasets',
+'debugbar.error_handler','debugbar.error_level','debugbar.clockwork','debugbar.collectors.phpinfo','debugbar.collectors.messages',
+'debugbar.collectors.time','debugbar.collectors.memory','debugbar.collectors.exceptions','debugbar.collectors.log','debugbar.collectors.db',
+'debugbar.collectors.views','debugbar.collectors.route','debugbar.collectors.auth','debugbar.collectors.gate','debugbar.collectors.session',
+'debugbar.collectors.symfony_request','debugbar.collectors.mail','debugbar.collectors.laravel','debugbar.collectors.events','debugbar.collectors.default_request',
+'debugbar.collectors.logs','debugbar.collectors.files','debugbar.collectors.config','debugbar.collectors.cache','debugbar.collectors.models',
+'debugbar.collectors.livewire','debugbar.options.auth.show_name','debugbar.options.db.with_params','debugbar.options.db.backtrace','debugbar.options.db.backtrace_exclude_paths',
+'debugbar.options.db.timeline','debugbar.options.db.explain.enabled','debugbar.options.db.explain.types','debugbar.options.db.hints','debugbar.options.db.show_copy',
+'debugbar.options.mail.full_log','debugbar.options.views.data','debugbar.options.route.label','debugbar.options.logs.file','debugbar.options.cache.values',
+'debugbar.inject','debugbar.route_prefix','debugbar.route_middleware','debugbar.route_domain','debugbar.theme',
+'debugbar.debug_backtrace_limit','dompdf.show_warnings','dompdf.public_path','dompdf.convert_entities','dompdf.options.font_dir',
+'dompdf.options.font_cache','dompdf.options.temp_dir','dompdf.options.chroot','dompdf.options.allowed_protocols.file://.rules','dompdf.options.allowed_protocols.http://.rules',
+'dompdf.options.allowed_protocols.https://.rules','dompdf.options.log_output_file','dompdf.options.enable_font_subsetting','dompdf.options.pdf_backend','dompdf.options.default_media_type',
+'dompdf.options.default_paper_size','dompdf.options.default_paper_orientation','dompdf.options.default_font','dompdf.options.dpi','dompdf.options.enable_php',
+'dompdf.options.enable_javascript','dompdf.options.enable_remote','dompdf.options.font_height_ratio','dompdf.options.enable_html5_parser','dompdf.orientation',
+'dompdf.defines.font_dir','dompdf.defines.font_cache','dompdf.defines.temp_dir','dompdf.defines.chroot','dompdf.defines.enable_font_subsetting',
+'dompdf.defines.pdf_backend','dompdf.defines.default_media_type','dompdf.defines.default_paper_size','dompdf.defines.default_font','dompdf.defines.dpi',
+'dompdf.defines.enable_php','dompdf.defines.enable_javascript','dompdf.defines.enable_remote','dompdf.defines.font_height_ratio','dompdf.defines.enable_html5_parser',
+'filesystems.default','filesystems.disks.local.driver','filesystems.disks.local.root','filesystems.disks.public.driver','filesystems.disks.public.root',
+'filesystems.disks.public.url','filesystems.disks.public.visibility','filesystems.disks.s3.driver','filesystems.disks.s3.key','filesystems.disks.s3.secret',
+'filesystems.disks.s3.region','filesystems.disks.s3.bucket','filesystems.disks.s3.url','filesystems.disks.user.driver','filesystems.disks.user.root',
+'filesystems.disks.user.url','filesystems.disks.user.visibility','filesystems.disks.import.driver','filesystems.disks.import.root','filesystems.disks.import.url',
+'filesystems.links./var/www/html/public/storage','filesystems.cloud','hashing.driver','hashing.bcrypt.rounds','hashing.argon.memory',
+'hashing.argon.threads','hashing.argon.time','hashing.rehash_on_login','ide-helper.filename','ide-helper.models_filename',
+'ide-helper.meta_filename','ide-helper.include_fluent','ide-helper.include_factory_builders','ide-helper.write_model_magic_where','ide-helper.write_model_external_builder_methods',
+'ide-helper.write_model_relation_count_properties','ide-helper.write_model_relation_exists_properties','ide-helper.write_eloquent_model_mixins','ide-helper.include_helpers','ide-helper.helper_files',
+'ide-helper.model_locations','ide-helper.ignored_models','ide-helper.model_hooks','ide-helper.extra.Eloquent','ide-helper.extra.Session',
+'ide-helper.magic','ide-helper.interfaces','ide-helper.model_camel_case_properties','ide-helper.type_overrides.integer','ide-helper.type_overrides.boolean',
+'ide-helper.include_class_docblocks','ide-helper.force_fqn','ide-helper.use_generics_annotations','ide-helper.macro_default_return_types.Illuminate\\Http\\Client\\Factory','ide-helper.additional_relation_types',
+'ide-helper.additional_relation_return_types','ide-helper.enforce_nullable_relationships','ide-helper.post_migrate','ide-helper.custom_db_types','localization.supportedLocales.de.name',
+'localization.supportedLocales.de.script','localization.supportedLocales.de.native','localization.supportedLocales.de.regional','logging.default','logging.deprecations.channel',
+'logging.deprecations.trace','logging.channels.stack.driver','logging.channels.stack.channels','logging.channels.stack.ignore_exceptions','logging.channels.single.driver',
+'logging.channels.single.path','logging.channels.single.level','logging.channels.daily.driver','logging.channels.daily.path','logging.channels.daily.level',
+'logging.channels.daily.days','logging.channels.slack.driver','logging.channels.slack.url','logging.channels.slack.username','logging.channels.slack.emoji',
+'logging.channels.slack.level','logging.channels.papertrail.driver','logging.channels.papertrail.level','logging.channels.papertrail.handler','logging.channels.papertrail.handler_with.host',
+'logging.channels.papertrail.handler_with.port','logging.channels.stderr.driver','logging.channels.stderr.handler','logging.channels.stderr.formatter','logging.channels.stderr.with.stream',
+'logging.channels.syslog.driver','logging.channels.syslog.level','logging.channels.errorlog.driver','logging.channels.errorlog.level','logging.channels.null.driver',
+'logging.channels.null.handler','logging.channels.emergency.path','logging.channels.browser.driver','logging.channels.browser.path','logging.channels.browser.level',
+'logging.channels.browser.days','logging.channels.deprecations.driver','logging.channels.deprecations.handler','mail.default','mail.mailers.smtp.transport',
'mail.mailers.smtp.host','mail.mailers.smtp.port','mail.mailers.smtp.encryption','mail.mailers.smtp.username','mail.mailers.smtp.password',
'mail.mailers.ses.transport','mail.mailers.postmark.transport','mail.mailers.resend.transport','mail.mailers.sendmail.transport','mail.mailers.sendmail.path',
'mail.mailers.log.transport','mail.mailers.log.channel','mail.mailers.array.transport','mail.mailers.failover.transport','mail.mailers.failover.mailers',
@@ -3174,7 +3216,7 @@ namespace PHPSTORM_META {
'profanity.strReplace.j','profanity.strReplace.k','profanity.strReplace.l','profanity.strReplace.m','profanity.strReplace.n',
'profanity.strReplace.o','profanity.strReplace.p','profanity.strReplace.q','profanity.strReplace.r','profanity.strReplace.s',
'profanity.strReplace.t','profanity.strReplace.u','profanity.strReplace.v','profanity.strReplace.w','profanity.strReplace.x',
-'profanity.strReplace.y','profanity.strReplace.z','profanity.defaults','queue.default','queue.connections.sync.driver',
+'profanity.strReplace.y','profanity.strReplace.z','profanity.full_word_check','queue.default','queue.connections.sync.driver',
'queue.connections.database.driver','queue.connections.database.table','queue.connections.database.queue','queue.connections.database.retry_after','queue.connections.beanstalkd.driver',
'queue.connections.beanstalkd.host','queue.connections.beanstalkd.queue','queue.connections.beanstalkd.retry_after','queue.connections.beanstalkd.block_for','queue.connections.sqs.driver',
'queue.connections.sqs.key','queue.connections.sqs.secret','queue.connections.sqs.prefix','queue.connections.sqs.queue','queue.connections.sqs.region',
@@ -3188,29 +3230,30 @@ namespace PHPSTORM_META {
'session.http_only','session.same_site','session.partitioned','sluggable.source','sluggable.maxLength',
'sluggable.maxLengthKeepWords','sluggable.method','sluggable.separator','sluggable.unique','sluggable.uniqueSuffix',
'sluggable.firstUniqueSuffix','sluggable.includeTrashed','sluggable.reserved','sluggable.onUpdate','sluggable.slugEngineOptions',
-'view.paths','view.compiled','view.expires','concurrency.default','translation.driver',
-'translation.route_group_config.middleware','translation.translation_methods','translation.scan_paths','translation.ui_url','translation.database.connection',
-'translation.database.languages_table','translation.database.translations_table','passport.guard','passport.private_key','passport.public_key',
-'passport.connection','passport.client_uuids','passport.personal_access_client.id','passport.personal_access_client.secret','excel.exports.chunk_size',
-'excel.exports.pre_calculate_formulas','excel.exports.strict_null_comparison','excel.exports.csv.delimiter','excel.exports.csv.enclosure','excel.exports.csv.line_ending',
-'excel.exports.csv.use_bom','excel.exports.csv.include_separator_line','excel.exports.csv.excel_compatibility','excel.exports.csv.output_encoding','excel.exports.csv.test_auto_detect',
-'excel.exports.properties.creator','excel.exports.properties.lastModifiedBy','excel.exports.properties.title','excel.exports.properties.description','excel.exports.properties.subject',
-'excel.exports.properties.keywords','excel.exports.properties.category','excel.exports.properties.manager','excel.exports.properties.company','excel.imports.read_only',
-'excel.imports.ignore_empty','excel.imports.heading_row.formatter','excel.imports.csv.delimiter','excel.imports.csv.enclosure','excel.imports.csv.escape_character',
-'excel.imports.csv.contiguous','excel.imports.csv.input_encoding','excel.imports.properties.creator','excel.imports.properties.lastModifiedBy','excel.imports.properties.title',
-'excel.imports.properties.description','excel.imports.properties.subject','excel.imports.properties.keywords','excel.imports.properties.category','excel.imports.properties.manager',
-'excel.imports.properties.company','excel.imports.cells.middleware','excel.extension_detector.xlsx','excel.extension_detector.xlsm','excel.extension_detector.xltx',
-'excel.extension_detector.xltm','excel.extension_detector.xls','excel.extension_detector.xlt','excel.extension_detector.ods','excel.extension_detector.ots',
-'excel.extension_detector.slk','excel.extension_detector.xml','excel.extension_detector.gnumeric','excel.extension_detector.htm','excel.extension_detector.html',
-'excel.extension_detector.csv','excel.extension_detector.tsv','excel.extension_detector.pdf','excel.value_binder.default','excel.cache.driver',
-'excel.cache.batch.memory_limit','excel.cache.illuminate.store','excel.cache.default_ttl','excel.transactions.handler','excel.transactions.db.connection',
-'excel.temporary_files.local_path','excel.temporary_files.local_permissions','excel.temporary_files.remote_disk','excel.temporary_files.remote_prefix','excel.temporary_files.force_resync_remote',
-'flare.key','flare.flare_middleware','flare.flare_middleware.Spatie\\LaravelIgnition\\FlareMiddleware\\AddLogs.maximum_number_of_collected_logs','flare.flare_middleware.Spatie\\LaravelIgnition\\FlareMiddleware\\AddQueries.maximum_number_of_collected_queries','flare.flare_middleware.Spatie\\LaravelIgnition\\FlareMiddleware\\AddQueries.report_query_bindings',
-'flare.flare_middleware.Spatie\\LaravelIgnition\\FlareMiddleware\\AddJobs.max_chained_job_reporting_depth','flare.flare_middleware.Spatie\\FlareClient\\FlareMiddleware\\CensorRequestBodyFields.censor_fields','flare.flare_middleware.Spatie\\FlareClient\\FlareMiddleware\\CensorRequestHeaders.headers','flare.send_logs_as_events','ignition.editor',
-'ignition.theme','ignition.enable_share_button','ignition.register_commands','ignition.solution_providers','ignition.ignored_solution_providers',
-'ignition.enable_runnable_solutions','ignition.remote_sites_path','ignition.local_sites_path','ignition.housekeeping_endpoint_prefix','ignition.settings_file_path',
-'ignition.recorders','ignition.open_ai_key','ignition.with_stack_frame_arguments','ignition.argument_reducers','tinker.commands',
-'tinker.alias','tinker.dont_alias',);
+'view.paths','view.compiled','view.expires','translation.driver','translation.route_group_config.middleware',
+'translation.translation_methods','translation.scan_paths','translation.ui_url','translation.database.connection','translation.database.languages_table',
+'translation.database.translations_table','boost.enabled','boost.browser_logs_watcher','boost.executable_paths.php','boost.executable_paths.composer',
+'boost.executable_paths.npm','boost.executable_paths.vendor_bin','mcp.redirect_domains','passport.guard','passport.private_key',
+'passport.public_key','passport.connection','passport.client_uuids','passport.personal_access_client.id','passport.personal_access_client.secret',
+'excel.exports.chunk_size','excel.exports.pre_calculate_formulas','excel.exports.strict_null_comparison','excel.exports.csv.delimiter','excel.exports.csv.enclosure',
+'excel.exports.csv.line_ending','excel.exports.csv.use_bom','excel.exports.csv.include_separator_line','excel.exports.csv.excel_compatibility','excel.exports.csv.output_encoding',
+'excel.exports.csv.test_auto_detect','excel.exports.properties.creator','excel.exports.properties.lastModifiedBy','excel.exports.properties.title','excel.exports.properties.description',
+'excel.exports.properties.subject','excel.exports.properties.keywords','excel.exports.properties.category','excel.exports.properties.manager','excel.exports.properties.company',
+'excel.imports.read_only','excel.imports.ignore_empty','excel.imports.heading_row.formatter','excel.imports.csv.delimiter','excel.imports.csv.enclosure',
+'excel.imports.csv.escape_character','excel.imports.csv.contiguous','excel.imports.csv.input_encoding','excel.imports.properties.creator','excel.imports.properties.lastModifiedBy',
+'excel.imports.properties.title','excel.imports.properties.description','excel.imports.properties.subject','excel.imports.properties.keywords','excel.imports.properties.category',
+'excel.imports.properties.manager','excel.imports.properties.company','excel.imports.cells.middleware','excel.extension_detector.xlsx','excel.extension_detector.xlsm',
+'excel.extension_detector.xltx','excel.extension_detector.xltm','excel.extension_detector.xls','excel.extension_detector.xlt','excel.extension_detector.ods',
+'excel.extension_detector.ots','excel.extension_detector.slk','excel.extension_detector.xml','excel.extension_detector.gnumeric','excel.extension_detector.htm',
+'excel.extension_detector.html','excel.extension_detector.csv','excel.extension_detector.tsv','excel.extension_detector.pdf','excel.value_binder.default',
+'excel.cache.driver','excel.cache.batch.memory_limit','excel.cache.illuminate.store','excel.cache.default_ttl','excel.transactions.handler',
+'excel.transactions.db.connection','excel.temporary_files.local_path','excel.temporary_files.local_permissions','excel.temporary_files.remote_disk','excel.temporary_files.remote_prefix',
+'excel.temporary_files.force_resync_remote','flare.key','flare.flare_middleware','flare.flare_middleware.Spatie\\LaravelIgnition\\FlareMiddleware\\AddLogs.maximum_number_of_collected_logs','flare.flare_middleware.Spatie\\LaravelIgnition\\FlareMiddleware\\AddQueries.maximum_number_of_collected_queries',
+'flare.flare_middleware.Spatie\\LaravelIgnition\\FlareMiddleware\\AddQueries.report_query_bindings','flare.flare_middleware.Spatie\\LaravelIgnition\\FlareMiddleware\\AddJobs.max_chained_job_reporting_depth','flare.flare_middleware.Spatie\\FlareClient\\FlareMiddleware\\CensorRequestBodyFields.censor_fields','flare.flare_middleware.Spatie\\FlareClient\\FlareMiddleware\\CensorRequestHeaders.headers','flare.send_logs_as_events',
+'ignition.editor','ignition.theme','ignition.enable_share_button','ignition.register_commands','ignition.solution_providers',
+'ignition.ignored_solution_providers','ignition.enable_runnable_solutions','ignition.remote_sites_path','ignition.local_sites_path','ignition.housekeeping_endpoint_prefix',
+'ignition.settings_file_path','ignition.recorders','ignition.open_ai_key','ignition.with_stack_frame_arguments','ignition.argument_reducers',
+'tinker.commands','tinker.alias','tinker.dont_alias','tinker.trust_project',);
registerArgumentsSet('middleware',
'web','api','auth','auth.basic','copyreader',
'admin','superadmin','sysadmin','bindings','active.account',
@@ -3219,56 +3262,57 @@ namespace PHPSTORM_META {
registerArgumentsSet('routes',
'debugbar.openhandler','debugbar.clockwork','debugbar.assets.css','debugbar.assets.js','debugbar.cache.delete',
'debugbar.queries.explain','languages.index','languages.create','languages.store','languages.translations.index',
-'languages.translations.update','languages.translations.create','languages.translations.store','passport.token','passport.authorizations.authorize',
-'passport.token.refresh','passport.authorizations.approve','passport.authorizations.deny','passport.tokens.index','passport.tokens.destroy',
-'passport.clients.index','passport.clients.store','passport.clients.update','passport.clients.destroy','passport.scopes.index',
-'passport.personal.tokens.index','passport.personal.tokens.store','passport.personal.tokens.destroy','ignition.healthCheck','ignition.executeSolution',
-'ignition.updateConfig','product_image','response_file',
-'iq_image','locale','login','logout',
-'register.form','password.request','password.email','password.reset',
-'password.update','password.confirm','logout','user_register',
-'user_register_again','register.consent','register.consent.accept','user_register_finish','register_verify',
-'register_user_member','status_register','status_verify','status_error','not_found',
-'loading_modal','user_check_mail','home','cron_jobs_action','user_update_email_confirm',
-'user_blocked','wizard_create','wizard_register','wizard_store_create','wizard_store_register',
-'wizard_payment','wizard_store_payment','wizard_delete_file','storage_file','storage',
-'home','modal_load','user_edit','user_edit','user_data_store',
-'user_profile','user_profile','user_profile_image_upload','user_profile_image_delete','user_update_password',
-'user_update_password','user_update_password_first','user_update_password_first','user_update_email','user_update_email',
-'user_delete_account','user_delete_account','user_data_accepted_form','user_data_free','user_data_free_form',
-'user_sales','user_sales_detail','user_sales_datatable','user_team_members','user_customers',
-'user_customer_detail','user_customer_edit','user_customer_add','user_customer_edit','user_customer_datatable',
-'user_myorders','user_myorder_datatable','user_myorder_detail','user_order_my_delivery','user_order_my_delivery',
-'user_order_my_list','user_order_my_list','user_order_my_payment','user_order_my_datatable','user_order_my_perform_request',
-'user_membership','user_membership_store','user_shop','user_shop_store','user_shop_load',
-'user_shop_translate','user_shop_tanslate_store','user_payment_paycredit','user_payment_paycredit_datatable','user_payment_credit',
-'user_payment_credit_datatable','user_payment_revenue','user_payment_revenue','user_checkout','user_checkout_store',
-'user_checkout_final','user_promotion','user_promotion_detail','user_promotion_detail','user_promotion_load',
-'user_promotion_delete','admin_product_show','admin_product_store','admin_product_edit','admin_product_copy',
-'admin_product_delete','admin_product_image_upload','admin_product_image_delete','admin_product_image_attribute','admin_product_categories',
-'admin_product_category_edit','admin_product_category_store','admin_product_category_delete','admin_product_ingredients','admin_product_ingredient_edit',
-'admin_product_ingredient_store','admin_product_ingredient_delete','admin_product_category_image_upload','admin_product_category_image_delete','admin_product_category_image_attribute',
-'admin_product_attributes','admin_product_attribute_store','admin_product_attribute_delete','admin_translate_all','admin_translate_all_edit',
-'admin_translate_all_update','admin_translate_file','admin_translate_file_edit','admin_translate_file_update','admin_sites',
-'admin_sites_store','admin_sites_image_upload','admin_sites_image_delete','admin_sites_image_attribute','admin_stats_sales_volumes',
-'admin_stats_sales_volumes_download','admin_stats_sales_volumes_datatable','admin_leads','admin_lead_edit','admin_lead_edit',
-'admin_customers','admin_customer_detail','admin_customer_edit','admin_customer_edit','admin_customer_datatable',
-'admin_lead_change_mail','admin_lead_change_mail','admin_lead_new_mail_verified','admin_lead_released','admin_lead_released',
-'admin_lead_delete_file','admin_lead_store','admin_leads_datatable','admin_lead_download','admin_lead_update',
-'admin_lead_remove','admin_sales_users','admin_sales_users_detail','admin_sales_users_detail','admin_sales_users_datatable',
-'admin_sales_customers','admin_sales_customers_detail','admin_sales_customers_detail','admin_sales_customers_datatable','admin_sales_store',
-'admin_sales_invoice','admin_payments_credit','admin_payments_credit','admin_payments_credit_datatable','admin_payments_credit_create',
-'admin_payments_credit_delete','admin_payments_paycredit','admin_payments_paycredit','admin_payments_paycredit_datatable','admin_payments_paycredit_delete',
-'admin_payments_invoice','admin_payments_invoice','admin_payments_invoice_datatable','admin_promotions','admin_promotion_detail',
-'admin_promotion_detail','admin_promotion_delete','admin_promotion_show','admin_promotion_datatable','admin_users',
-'admin_user_edit','admin_user_store','admin_user_delete','admin_user_login_as','admin_shippings',
-'admin_shipping_edit','admin_shipping_store','admin_shipping_delete','admin_shipping_price_delete','admin_shipping_country_delete',
-'data_table','data_table_users','admin_payment_methods','admin_payment_method_store','admin_lead_types',
-'admin_lead_types_store','admin_countries','admin_country_edit','admin_country_store','admin_levels',
-'admin_level_edit','admin_level_store','admin_level_delete','admin_settings','admin_setting_store',
-'sysadmin_tools','sysadmin_tools','web_promotion_modal_load','web_promotion_store',
-'web_promotion_goto','success.paypal_payment','cancel.paypal_payment',
-'web_shop_modal_load','web_shop_store','web_shop_goto','success.paypal_payment','cancel.paypal_payment',);
+'languages.translations.update','languages.translations.create','languages.translations.store','boost.browser-logs','passport.token',
+'passport.authorizations.authorize','passport.token.refresh','passport.authorizations.approve','passport.authorizations.deny','passport.tokens.index',
+'passport.tokens.destroy','passport.clients.index','passport.clients.store','passport.clients.update','passport.clients.destroy',
+'passport.scopes.index','passport.personal.tokens.index','passport.personal.tokens.store','passport.personal.tokens.destroy','ignition.healthCheck',
+'ignition.executeSolution','ignition.updateConfig','product_image',
+'response_file','iq_image','locale','login',
+'logout','register.form','password.request','password.email',
+'password.reset','password.update','password.confirm','logout',
+'user_register','user_register_again','register.consent','register.consent.accept','user_register_finish',
+'register_verify','register_user_member','status_register','status_verify','status_error',
+'not_found','loading_modal','user_check_mail','home','cron_jobs_action',
+'user_update_email_confirm','user_blocked','wizard_create','wizard_register','wizard_store_create',
+'wizard_store_register','wizard_payment','wizard_store_payment','wizard_delete_file','storage_file',
+'storage','home','modal_load','user_edit','user_edit',
+'user_data_store','user_profile','user_profile','user_profile_image_upload','user_profile_image_delete',
+'user_update_password','user_update_password','user_update_password_first','user_update_password_first','user_update_email',
+'user_update_email','user_delete_account','user_delete_account','user_data_accepted_form','user_data_free',
+'user_data_free_form','user_sales','user_sales_detail','user_sales_datatable','user_team_members',
+'user_customers','user_customer_detail','user_customer_edit','user_customer_add','user_customer_edit',
+'user_customer_datatable','user_myorders','user_myorder_datatable','user_myorder_detail','user_order_my_delivery',
+'user_order_my_delivery','user_order_my_list','user_order_my_list','user_order_my_payment','user_order_my_datatable',
+'user_order_my_perform_request','user_membership','user_membership_store','user_shop','user_shop_store',
+'user_shop_load','user_shop_translate','user_shop_tanslate_store','user_payment_paycredit','user_payment_paycredit_datatable',
+'user_payment_credit','user_payment_credit_datatable','user_payment_revenue','user_payment_revenue','user_checkout',
+'user_checkout_store','user_checkout_final','user_promotion','user_promotion_detail','user_promotion_detail',
+'user_promotion_load','user_promotion_delete','admin_product_show','admin_product_store','admin_product_edit',
+'admin_product_copy','admin_product_delete','admin_product_image_upload','admin_product_image_delete','admin_product_image_attribute',
+'admin_product_categories','admin_product_category_edit','admin_product_category_store','admin_product_category_delete','admin_product_ingredients',
+'admin_product_ingredient_edit','admin_product_ingredient_store','admin_product_ingredient_delete','admin_product_category_image_upload','admin_product_category_image_delete',
+'admin_product_category_image_attribute','admin_product_attributes','admin_product_attribute_store','admin_product_attribute_delete','admin_translate_all',
+'admin_translate_all_edit','admin_translate_all_update','admin_translate_file','admin_translate_file_edit','admin_translate_file_update',
+'admin_sites','admin_sites_store','admin_sites_image_upload','admin_sites_image_delete','admin_sites_image_attribute',
+'admin_stats_sales_volumes','admin_stats_sales_volumes_download','admin_stats_sales_volumes_datatable','admin_leads','admin_lead_edit',
+'admin_lead_edit','admin_customers','admin_customer_detail','admin_customer_edit','admin_customer_edit',
+'admin_customer_datatable','admin_lead_change_mail','admin_lead_change_mail','admin_lead_new_mail_verified','admin_lead_released',
+'admin_lead_released','admin_lead_delete_file','admin_lead_store','admin_leads_datatable','admin_lead_download',
+'admin_lead_update','admin_lead_remove','admin_sales','admin_sales_detail','admin_sales_detail',
+'admin_sales_datatable','admin_sales_send_logistic_mail','admin_sales_store','admin_sales_invoice','admin_sales_invoice_cancellation',
+'admin_payments_credit','admin_payments_credit','admin_payments_credit_datatable','admin_payments_credit_create','admin_payments_credit_delete',
+'admin_payments_paycredit','admin_payments_paycredit','admin_payments_paycredit_datatable','admin_payments_paycredit_delete','admin_payments_invoice',
+'admin_payments_invoice','admin_payments_invoice_datatable','admin_payments_reminder','admin_payments_reminder_create','admin_payments_reminder_edit',
+'admin_payments_reminder_store','admin_payments_reminder_action','admin_payments_reminder_logs','admin_payments_reminder_delete','admin_promotions',
+'admin_promotion_detail','admin_promotion_detail','admin_promotion_delete','admin_promotion_show','admin_promotion_datatable',
+'admin_users','admin_user_edit','admin_user_store','admin_user_delete','admin_user_login_as',
+'admin_shippings','admin_shipping_edit','admin_shipping_store','admin_shipping_delete','admin_shipping_price_delete',
+'admin_shipping_country_delete','data_table','data_table_users','admin_payment_methods','admin_payment_method_store',
+'admin_lead_types','admin_lead_types_store','admin_countries','admin_country_edit','admin_country_store',
+'admin_levels','admin_level_edit','admin_level_store','admin_level_delete','admin_settings',
+'admin_setting_store','sysadmin_tools','sysadmin_tools','web_promotion_modal_load',
+'web_promotion_store','web_promotion_goto','success.paypal_payment','cancel.paypal_payment','web_shop_modal_load','web_shop_store','web_shop_goto','success.paypal_payment',
+'cancel.paypal_payment',);
registerArgumentsSet('views',
'_bak.home','_bak.layouts.app','_bak.layouts.application','_bak.layouts.auth','_bak.layouts.includes.layout-footer',
'_bak.layouts.includes.layout-navbar','_bak.layouts.includes.layout-navbar-without','_bak.layouts.includes.layout-sidenav','_bak.layouts.layout-1','_bak.layouts.layout-1-flex',
@@ -3284,164 +3328,165 @@ namespace PHPSTORM_META {
'admin.category.edit','admin.category.form','admin.category.images','admin.category.index','admin.category.products',
'admin.change_email','admin.country.edit','admin.country.form','admin.country.index','admin.customer._customer_detail',
'admin.customer._detail','admin.customer._edit','admin.customer.detail','admin.customer.edit','admin.customer.index',
-'admin.evaluation.salesvolume','admin.index','admin.ingredient.edit','admin.ingredient.form','admin.ingredient.index',
-'admin.lead.edit','admin.lead.index','admin.lead.m_data_form','admin.lead.m_data_form_edit','admin.lead.m_register_data',
-'admin.lead.m_white_label','admin.lead.types','admin.level.edit','admin.level.index','admin.modal.add_credit',
-'admin.modal.add_pay_credit','admin.modal.is_like_member','admin.modal.member','admin.modal.promotion-product','admin.modal.promotion-products',
-'admin.modal.show_product','admin.modal.show_user_customers','admin.modal.user-credit-status','admin.modal.user_level_margin','admin.modal.user_pay_credits',
-'admin.payment.credit.credits-entry','admin.payment.credit.index','admin.payment.credit.index_bak','admin.payment.invoice.index','admin.payment.pay_credit.index',
-'admin.payment_method.index','admin.product.edit','admin.product.form','admin.product.images','admin.product.index',
-'admin.product.upload_whitelabel','admin.promotion.detail','admin.promotion.form','admin.promotion.index','admin.promotion.show',
-'admin.sales._detail','admin.sales._detail_homparty','admin.sales._detail_homparty_total','admin.sales.customer_detail','admin.sales.customers',
-'admin.sales.user_detail','admin.sales.users','admin.settings.index','admin.shipping.edit','admin.shipping.index',
-'admin.site.edit','admin.site.form','admin.site.images','admin.stats.salesvolume','admin.user.edit',
-'admin.user.index','auth.existing','auth.finish','auth.login','auth.passwords.confirm',
-'auth.passwords.email','auth.passwords.reset','auth.recaptcha-consent','auth.register','auth.verify',
-'dashboard','emails._auth','emails._checkout_product_list','emails.auth','emails.blank',
-'emails.checkout','emails.checkout_status','emails.contact','emails.custom','emails.info',
-'emails.sys','errors.402','errors.404','flash::message','flash::modal',
-'layouts.app','layouts.application','layouts.auth','layouts.includes.layout-footer','layouts.includes.layout-navbar',
-'layouts.includes.layout-sidenav','layouts.layout-1','layouts.layout-1-flex','layouts.layout-2','layouts.layout-2-flex',
-'layouts.layout-blank','layouts.layout-horizontal-sidenav','layouts.layout-without-navbar','layouts.layout-without-navbar-flex','layouts.layout-without-sidenav',
-'legal._agb','legal._data_protected','legal._imprint','legal.agb','legal.agb_de',
-'legal.data_protect_de','legal.data_protected','legal.imprint','legal.imprint_de','legal.shop_term_of_use',
-'legal.shop_term_of_use_de','notifications::email','pagination::bootstrap-4','pagination::default','pagination::semantic-ui',
-'pagination::simple-bootstrap-4','pagination::simple-default','pdf.credit','pdf.delivery','pdf.invoice',
-'status.not_found','status.status_error','status.status_register','status.status_verify','status.user_blocked',
-'status.verify','sys.admin.cronjobs','sys.admin.customers','sys.admin.domain-ssl','sys.admin.export_vp',
-'sys.admin.import','sys.admin.import-show','sys.admin.index','sys.admin.shopping-orders','sys.settings.index',
-'translation._index','translation.eloquent_index','translation.index','translation.index_file','translation.translation_row',
-'user._user_form','user.checkout.checkout','user.checkout.final','user.components.user_shop_edit','user.components.user_shop_image',
-'user.components.user_shop_on_site','user.components.user_shop_register','user.customer.add','user.customer.detail','user.customer.edit',
-'user.customer.index','user.data_confirm','user.data_verify','user.delete_account','user.edit',
-'user.form','user.homeparty._address','user.homeparty._edit','user.homeparty.detail','user.homeparty.guest_detail',
-'user.homeparty.guests','user.homeparty.index','user.homeparty.modal_show_products','user.homeparty.order','user.homeparty.self_guest_detail',
-'user.homeparty.show_bonus','user.homeparty.show_calc_bonus_host','user.homeparty.show_products_order','user.homeparty.show_total_order','user.membership._abo_options',
-'user.membership._change','user.membership._change_level','user.membership._payment','user.membership._payment_order','user.membership._upgrade',
-'user.membership.index','user.order._bak_shipping_me','user.order._bak_shipping_ot','user.order.comp_product','user.order.delivery',
-'user.order.detail','user.order.index','user.order.list','user.order.list_form','user.order.shipping_credit',
-'user.order.shipping_me','user.order.shipping_ot','user.order.yard_view_form','user.payment.credit','user.payment.paycredit',
-'user.payment.revenue','user.profile','user.promotion.cart','user.promotion.detail','user.promotion.form',
-'user.promotion.index','user.revenue.index','user.sales.detail','user.sales.index','user.shop',
-'user.shop.detail','user.shop.form','user.shop.sales.order_detail','user.shop.sales.orders','user.team.members',
+'admin.index','admin.ingredient.edit','admin.ingredient.form','admin.ingredient.index','admin.lead.edit',
+'admin.lead.index','admin.lead.m_data_form','admin.lead.m_data_form_edit','admin.lead.m_register_data','admin.lead.m_white_label',
+'admin.lead.types','admin.level.edit','admin.level.index','admin.modal.add_credit','admin.modal.add_pay_credit',
+'admin.modal.is_like_member','admin.modal.member','admin.modal.promotion-product','admin.modal.show_product','admin.modal.show_user_customers',
+'admin.modal.user-credit-status','admin.modal.user_level_margin','admin.modal.user_pay_credits','admin.payment.credit.credits-entry','admin.payment.credit.index',
+'admin.payment.credit.index_bak','admin.payment.invoice.index','admin.payment.pay_credit.index','admin.payment.reminder.edit','admin.payment.reminder.index',
+'admin.payment.reminder.logs','admin.payment.reminder.overview','admin.payment_method.index','admin.product.edit','admin.product.form',
+'admin.product.images','admin.product.index','admin.product.upload_whitelabel','admin.promotion.detail','admin.promotion.form',
+'admin.promotion.index','admin.promotion.show','admin.sales._detail','admin.sales._detail_homparty','admin.sales._detail_homparty_total',
+'admin.sales.customer_detail','admin.sales.customers','admin.sales.detail','admin.sales.index','admin.sales.user_detail',
+'admin.sales.users','admin.settings.index','admin.shipping.edit','admin.shipping.index','admin.site.edit',
+'admin.site.form','admin.site.images','admin.stats.salesvolume','admin.user.edit','admin.user.index',
+'auth.existing','auth.finish','auth.login','auth.passwords.confirm','auth.passwords.email',
+'auth.passwords.reset','auth.recaptcha-consent','auth.register','auth.verify','dashboard',
+'emails._auth','emails._checkout_product_list','emails.auth','emails.blank','emails.checkout',
+'emails.checkout_status','emails.contact','emails.custom','emails.exception','emails.info',
+'emails.logistic','emails.payment_reminder','emails.sys','errors.401','errors.402',
+'errors.403','errors.404','errors.419','errors.429','errors.500',
+'errors.503','errors.illustrated-layout','errors.layout','errors.minimal','flash::message',
+'flash::modal','layouts.app','layouts.application','layouts.auth','layouts.includes.layout-footer',
+'layouts.includes.layout-navbar','layouts.includes.layout-sidenav','layouts.layout-1','layouts.layout-1-flex','layouts.layout-2',
+'layouts.layout-2-flex','layouts.layout-blank','layouts.layout-horizontal-sidenav','layouts.layout-without-navbar','layouts.layout-without-navbar-flex',
+'layouts.layout-without-sidenav','legal._agb','legal._data_protected','legal._imprint','legal.agb',
+'legal.agb_de','legal.data_protect_de','legal.data_protected','legal.imprint','legal.imprint_de',
+'legal.shop_term_of_use','legal.shop_term_of_use_de','notifications::email','pagination::bootstrap-4','pagination::default',
+'pagination::semantic-ui','pagination::simple-bootstrap-4','pagination::simple-default','pdf.cancellation_invoice','pdf.credit',
+'pdf.delivery','pdf.invoice','status.not_found','status.status_error','status.status_register',
+'status.status_verify','status.user_blocked','status.verify','sys.admin.cronjobs','sys.admin.customers',
+'sys.admin.domain-ssl','sys.admin.export_vp','sys.admin.import','sys.admin.import-show','sys.admin.index',
+'sys.admin.shopping-orders','sys.settings.index','translation._index','translation.eloquent_index','translation.index',
+'translation.index_file','translation.translation_row','user._user_form','user.checkout.checkout','user.checkout.final',
+'user.components.user_shop_edit','user.components.user_shop_image','user.components.user_shop_on_site','user.components.user_shop_register','user.customer.add',
+'user.customer.detail','user.customer.edit','user.customer.index','user.data_confirm','user.data_verify',
+'user.delete_account','user.edit','user.form','user.homeparty._address','user.homeparty._edit',
+'user.homeparty.detail','user.homeparty.guest_detail','user.homeparty.guests','user.homeparty.index','user.homeparty.modal_show_products',
+'user.homeparty.order','user.homeparty.self_guest_detail','user.homeparty.show_bonus','user.homeparty.show_calc_bonus_host','user.homeparty.show_products_order',
+'user.homeparty.show_total_order','user.membership._abo_options','user.membership._change','user.membership._change_level','user.membership._payment',
+'user.membership._payment_order','user.membership._upgrade','user.membership.index','user.order._bak_shipping_me','user.order._bak_shipping_ot',
+'user.order.comp_product','user.order.delivery','user.order.detail','user.order.index','user.order.list',
+'user.order.list_form','user.order.shipping_credit','user.order.shipping_me','user.order.shipping_ot','user.order.yard_view_form',
+'user.payment.credit','user.payment.index','user.payment.paycredit','user.payment.revenue','user.profile',
+'user.promotion.cart','user.promotion.detail','user.promotion.form','user.promotion.index','user.sales.detail',
+'user.sales.index','user.shop','user.shop.detail','user.shop.form','user.team.members',
'user.update_email','user.update_password','user.update_password_first','user.update_password_first_form','user.user_form',
-'user.user_form_image','user.user_new_form','user.wizard._change','user.wizard._payment','user.wizard.create',
-'user.wizard.create_release','user.wizard.register','user.wizard.register_payment','user.wizard.register_release','vendor.flash.message',
-'vendor.flash.modal','vendor.mail.html.button','vendor.mail.html.footer','vendor.mail.html.header','vendor.mail.html.layout',
-'vendor.mail.html.message','vendor.mail.html.panel','vendor.mail.html.promotion','vendor.mail.html.promotion.button','vendor.mail.html.subcopy',
-'vendor.mail.html.table','vendor.mail.markdown.button','vendor.mail.markdown.footer','vendor.mail.markdown.header','vendor.mail.markdown.layout',
-'vendor.mail.markdown.message','vendor.mail.markdown.panel','vendor.mail.markdown.promotion','vendor.mail.markdown.promotion.button','vendor.mail.markdown.subcopy',
-'vendor.mail.markdown.table','vendor.notifications.email','vendor.pagination.bootstrap-4','vendor.pagination.default','vendor.pagination.semantic-ui',
-'vendor.pagination.simple-bootstrap-4','vendor.pagination.simple-default','web.components._checkout','web.components._invoice_details','web.components._invoice_details_quick',
-'web.components._margin_cart','web.index','web.layouts.application','web.layouts.includes._layout-header','web.layouts.includes.layout-footer',
-'web.layouts.includes.layout-header','web.layouts.layout','web.legal.datenschutzerklaerung','web.legal.impressum','web.legal.versandarten',
-'web.legal.widerrufsbelehrung','web.promotion._checkout','web.promotion._fairplay','web.promotion._free_product','web.promotion._intro',
-'web.promotion._intro_thanks','web.promotion._invoice_details','web.promotion._invoice_details_quick','web.promotion._promotion_cart','web.promotion._reminder_service',
-'web.promotion._shipping','web.promotion._shop_products','web.promotion._shop_products_inner','web.promotion._show_around','web.promotion.datenschutzerklaerung',
-'web.promotion.impressum','web.promotion.index','web.promotion.outofstock','web.promotion.show_product','web.promotion.thanksorder',
-'web.promotion.thanksreminder','web.promotion.widerrufsbelehrung','web.shop._checkout','web.shop._intro','web.shop._invoice_details',
-'web.shop._invoice_details_quick','web.shop._margin_cart','web.shop._shipping','web.shop._shop_cart','web.shop._shop_products',
-'web.shop._shop_products_inner','web.shop.index','web.shop.show_product','web.shop.thanksorder','web.shop.thanksreminder',
-'flash::message','flash::modal','laravel-exceptions-renderer::components.card','laravel-exceptions-renderer::components.context','laravel-exceptions-renderer::components.editor',
-'laravel-exceptions-renderer::components.header','laravel-exceptions-renderer::components.icons.chevron-down','laravel-exceptions-renderer::components.icons.chevron-up','laravel-exceptions-renderer::components.icons.computer-desktop','laravel-exceptions-renderer::components.icons.moon',
-'laravel-exceptions-renderer::components.icons.sun','laravel-exceptions-renderer::components.layout','laravel-exceptions-renderer::components.navigation','laravel-exceptions-renderer::components.theme-switcher','laravel-exceptions-renderer::components.trace',
-'laravel-exceptions-renderer::components.trace-and-editor','laravel-exceptions-renderer::show','laravel-exceptions::401','laravel-exceptions::402','laravel-exceptions::403',
-'laravel-exceptions::404','laravel-exceptions::419','laravel-exceptions::429','laravel-exceptions::500','laravel-exceptions::503',
-'laravel-exceptions::layout','laravel-exceptions::minimal','notifications::email','pagination::bootstrap-4','pagination::bootstrap-5',
-'pagination::default','pagination::semantic-ui','pagination::simple-bootstrap-4','pagination::simple-bootstrap-5','pagination::simple-default',
-'pagination::simple-tailwind','pagination::tailwind','passport::authorize','translation::forms.search','translation::forms.select',
-'translation::forms.text','translation::icons.globe','translation::icons.translate','translation::languages.create','translation::languages.index',
-'translation::languages.translations.create','translation::languages.translations.index','translation::layout','translation::nav','translation::notifications',);
+'user.user_new_form','user.wizard._change','user.wizard._payment','user.wizard.create','user.wizard.create_release',
+'user.wizard.register','user.wizard.register_payment','user.wizard.register_release','vendor.flash.message','vendor.flash.modal',
+'vendor.mail.html.button','vendor.mail.html.footer','vendor.mail.html.header','vendor.mail.html.layout','vendor.mail.html.message',
+'vendor.mail.html.panel','vendor.mail.html.promotion','vendor.mail.html.promotion.button','vendor.mail.html.subcopy','vendor.mail.html.table',
+'vendor.mail.markdown.button','vendor.mail.markdown.footer','vendor.mail.markdown.header','vendor.mail.markdown.layout','vendor.mail.markdown.message',
+'vendor.mail.markdown.panel','vendor.mail.markdown.promotion','vendor.mail.markdown.promotion.button','vendor.mail.markdown.subcopy','vendor.mail.markdown.table',
+'vendor.notifications.email','vendor.pagination.bootstrap-4','vendor.pagination.default','vendor.pagination.semantic-ui','vendor.pagination.simple-bootstrap-4',
+'vendor.pagination.simple-default','web.components._checkout','web.components._invoice_details','web.components._invoice_details_quick','web.components._margin_cart',
+'web.index','web.layouts.application','web.layouts.includes._layout-header','web.layouts.includes.layout-footer','web.layouts.includes.layout-header',
+'web.layouts.layout','web.legal.datenschutzerklaerung','web.legal.impressum','web.legal.versandarten','web.legal.widerrufsbelehrung',
+'web.promotion._fairplay','web.promotion._free_product','web.promotion._intro','web.promotion._promotion_cart','web.promotion._reminder_service',
+'web.promotion._shipping','web.promotion._shop_products','web.promotion._shop_products_inner','web.promotion._show_around','web.promotion.index',
+'web.promotion.outofstock','web.promotion.show_product','web.promotion.thanksorder','web.promotion.thanksreminder','web.shop._checkout',
+'web.shop._intro','web.shop._shipping','web.shop._shop_cart','web.shop._shop_products','web.shop._shop_products_inner',
+'web.shop.index','web.shop.show_product','web.shop.thanksorder','web.shop.thanksreminder','flash::message',
+'flash::modal','laravel-exceptions-renderer::components.card','laravel-exceptions-renderer::components.context','laravel-exceptions-renderer::components.editor','laravel-exceptions-renderer::components.header',
+'laravel-exceptions-renderer::components.icons.chevron-down','laravel-exceptions-renderer::components.icons.chevron-up','laravel-exceptions-renderer::components.icons.computer-desktop','laravel-exceptions-renderer::components.icons.moon','laravel-exceptions-renderer::components.icons.sun',
+'laravel-exceptions-renderer::components.layout','laravel-exceptions-renderer::components.navigation','laravel-exceptions-renderer::components.theme-switcher','laravel-exceptions-renderer::components.trace','laravel-exceptions-renderer::components.trace-and-editor',
+'laravel-exceptions-renderer::show','laravel-exceptions::401','laravel-exceptions::402','laravel-exceptions::403','laravel-exceptions::404',
+'laravel-exceptions::419','laravel-exceptions::429','laravel-exceptions::500','laravel-exceptions::503','laravel-exceptions::layout',
+'laravel-exceptions::minimal','notifications::email','pagination::bootstrap-4','pagination::bootstrap-5','pagination::default',
+'pagination::semantic-ui','pagination::simple-bootstrap-4','pagination::simple-bootstrap-5','pagination::simple-default','pagination::simple-tailwind',
+'pagination::tailwind','passport::authorize','translation::forms.search','translation::forms.select','translation::forms.text',
+'translation::icons.globe','translation::icons.translate','translation::languages.create','translation::languages.index','translation::languages.translations.create',
+'translation::languages.translations.index','translation::layout','translation::nav','translation::notifications',);
registerArgumentsSet('translations',
'auth.failed','auth.password','auth.throttle','pagination.previous','pagination.next',
'passwords.reset','passwords.sent','passwords.throttled','passwords.token','passwords.user',
-'passwords.password','validation.accepted','validation.accepted_if','validation.active_url','validation.after',
-'validation.after_or_equal','validation.alpha','validation.alpha_dash','validation.alpha_num','validation.array',
-'validation.ascii','validation.before','validation.before_or_equal','validation.between.array','validation.between.file',
-'validation.between.numeric','validation.between.string','validation.boolean','validation.can','validation.confirmed',
-'validation.contains','validation.current_password','validation.date','validation.date_equals','validation.date_format',
-'validation.decimal','validation.declined','validation.declined_if','validation.different','validation.digits',
-'validation.digits_between','validation.dimensions','validation.distinct','validation.doesnt_end_with','validation.doesnt_start_with',
-'validation.email','validation.ends_with','validation.enum','validation.exists','validation.extensions',
-'validation.file','validation.filled','validation.gt.array','validation.gt.file','validation.gt.numeric',
-'validation.gt.string','validation.gte.array','validation.gte.file','validation.gte.numeric','validation.gte.string',
-'validation.hex_color','validation.image','validation.in','validation.in_array','validation.integer',
-'validation.ip','validation.ipv4','validation.ipv6','validation.json','validation.list',
-'validation.lowercase','validation.lt.array','validation.lt.file','validation.lt.numeric','validation.lt.string',
-'validation.lte.array','validation.lte.file','validation.lte.numeric','validation.lte.string','validation.mac_address',
-'validation.max.array','validation.max.file','validation.max.numeric','validation.max.string','validation.max_digits',
-'validation.mimes','validation.mimetypes','validation.min.array','validation.min.file','validation.min.numeric',
-'validation.min.string','validation.min_digits','validation.missing','validation.missing_if','validation.missing_unless',
-'validation.missing_with','validation.missing_with_all','validation.multiple_of','validation.not_in','validation.not_regex',
-'validation.numeric','validation.password.letters','validation.password.mixed','validation.password.numbers','validation.password.symbols',
-'validation.password.uncompromised','validation.present','validation.present_if','validation.present_unless','validation.present_with',
-'validation.present_with_all','validation.prohibited','validation.prohibited_if','validation.prohibited_if_accepted','validation.prohibited_if_declined',
-'validation.prohibited_unless','validation.prohibits','validation.regex','validation.required','validation.required_array_keys',
-'validation.required_if','validation.required_if_accepted','validation.required_if_declined','validation.required_unless','validation.required_with',
-'validation.required_with_all','validation.required_without','validation.required_without_all','validation.same','validation.size.array',
-'validation.size.file','validation.size.numeric','validation.size.string','validation.starts_with','validation.string',
-'validation.timezone','validation.unique','validation.uploaded','validation.uppercase','validation.url',
-'validation.ulid','validation.uuid','validation.custom.attribute-name.rule-name','de.0','account.',
-'account.BIC','account.IBAN','account.VAT_ID_number','account.VAT_copy_1','account.VAT_liability',
-'account.account_holder','account.bank_data','account.delivery_address','account.firstname_lastname','account.invoice_address',
-'account.my_credit','account.vat_data','account.info_vat_numbers','account.new_vat_validate','account.btn_vat_validate',
-'account.phone_need_error','account.phone_need_note','account.required_for_commission_payments','account.reverse_charge_action_1','account.reverse_charge_action_2',
-'account.reverse_charge_copy_1','account.reverse_charge_note_1','account.reverse_charge_procedure','account.tax_number','account.taxable_sales_1',
-'account.taxable_sales_2','account.validator_creditcard','account.validator_date','account.validator_digits','account.validator_email',
-'account.validator_equalTo','account.validator_max','account.validator_maxlength','account.validator_min','account.validator_minlength',
-'account.validator_number','account.validator_range','account.validator_rangelength','account.validator_required','account.validator_url',
-'cal.months.April','cal.months.August','cal.months.December','cal.months.February','cal.months.January',
-'cal.months.July','cal.months.June','cal.months.March','cal.months.May','cal.months.November',
-'cal.months.October','cal.months.September','cal.months.full_year','cal.months_short.Apr','cal.months_short.Aug',
-'cal.months_short.Dec','cal.months_short.Feb','cal.months_short.Jan','cal.months_short.Jul','cal.months_short.Jun',
-'cal.months_short.Mar','cal.months_short.May','cal.months_short.Nov','cal.months_short.Oct','cal.months_short.Sep',
-'cal.weekdays.Friday','cal.weekdays.Monday','cal.weekdays.Saturday','cal.weekdays.Sunday','cal.weekdays.Thursday',
-'cal.weekdays.Tuesday','cal.weekdays.Wednesday','cal.weekdays_min.Fr','cal.weekdays_min.Mo','cal.weekdays_min.Sa',
-'cal.weekdays_min.Su','cal.weekdays_min.Th','cal.weekdays_min.Tu','cal.weekdays_min.We','cal.weekdays_short.Fri',
-'cal.weekdays_short.Mon','cal.weekdays_short.Sat','cal.weekdays_short.Sun','cal.weekdays_short.Thu','cal.weekdays_short.Tue',
-'cal.weekdays_short.Wed','email.reset_passwort','email.mail_confirm','email.subject_activate','email.account_active',
-'email.subject_reset','email.dear_mrs','email.dear_sir','email.hello','email.greetings',
-'email.sender','email.request_from','email.your_request_from','email.checkout_subject','email.checkout_subject_paid',
-'email.checkout_subject_non_paid','email.checkout_subject_extern','email.change_e_mail','email.salutation','email.first_name',
-'email.last_name','email.email','email.phone','email.subject','email.message',
-'email.sales_partnership','email.sales_partnership_message','email.button_account','email.active_copy1line','email.copy2line',
-'email.copy3line','email.email_verify','email.email_subject','email.email_incomplete','email.account_incomplete_copy1line',
-'email.verify_e_mail','email.verify_copy1line','email.email_verify_copy1line','email.copy_to_browser','email.activate_copy',
-'email.account_active_copy1line','email.reset_pass_copy1line','email.checkout_copy1line','email.checkout_copy3line','email.checkout_copy3line_extern',
-'email.status_copy1line','email.invoice_title','email.credit_title','email.invoice_copy1line','email.credit_copy1line',
-'email.footer_copy1','email.footer_copy2','email.footer_copy3','email.checkout_mail_hl1','email.checkout_mail_shipping',
-'email.checkout_mail_status_info','email.checkout_mail_subtotal_ws','email.checkout_mail_tax','email.checkout_mail_tax_19','email.checkout_mail_tax_7',
-'email.checkout_mail_total','email.checkout_mail_tax_info','email.checkout_mail_pay_info','email.checkout_mail_pay_success','email.checkout_mail_pay_with',
-'email.checkout_mail_pay_ref','email.checkout_mail_your_mail','email.checkout_mail_invoice_addess','email.checkout_mail_deliver_addess','email.checkout_mail_pickup_addess',
-'email.checkout_mail_deliver_customer','email.checkout_mail_order_for_me','email.checkout_mail_order_for_ot','email.checkout_mail_order_for_extern','email.checkout_mail_order_for_wizard',
-'email.checkout_mail_order_for_membership','email.checkout_mail_same_address','email.checkout_mail_pay_error','email.checkout_mail_pay_non','email.checkout_mail_pay_pre',
-'email.checkout_mail_pay_pre_c1','email.checkout_mail_pay_pre_c2','email.checkout_mail_bank_holder','email.checkout_mail_bank_iban','email.checkout_mail_bank_bic',
-'email.checkout_mail_bank_name','email.checkout_mail_bank_total','email.checkout_mail_bank_code','email.checkout_mail_pay_approved','email.checkout_mail_pay_invoice_open',
-'email.checkout_mail_system_status','lead.Mr','lead.MS ','lead.please select','lead.further countries',
-'lead.no','lead.Company data','lead.Company name','lead.Street','lead.House number',
-'lead.Place','lead.Postcode','lead.Country','lead.Phone','lead.Homepage',
-'lead.Industry','lead.Your Data','lead.Function','lead.Salutation','lead.Title',
-'lead.First name','lead.Last Name','lead.Name','lead.Consent & Privacy','lead.Confirm Password',
-'lead.E-Mail Address','lead.Forgot Your Password?','lead.Login','lead.Logout','lead.Password',
-'lead.Register','lead.Remember Me','lead.Reset Password','lead.Send Password Reset Link','membership.home_hl',
-'membership.home_copy_alert_31','membership.home_copy_last_31','membership.home_copy_SEPA_32','membership.home_copy_last_33','membership.home_copy_SEPA_33',
-'membership.home_copy_last_34','membership.home_copy_alert_35','membership.home_copy_last_35','membership.home_copy_alert_36_today','membership.home_copy_alert_36',
-'membership.home_copy_last_36','membership.home_copy_SEPA_36','msg.shipping_country_was_not_found','msg.shipping_country_was_not_correctly','msg.shopping_cart_was_shipping_free',
-'msg.shipping_cost_cannot_be_0','msg.shipping_costs_were_not_calculated_correctly','msg.compensation_products_cannot_be_0','msg.link_for_homeparty_not_found','msg.contact_delete',
-'msg.error_occurred_with_order','msg.abo_deaktivert','msg.error_checkbox_not_confirm','msg.no_change_made','msg.booked_package_has_been_changed',
-'msg.cancel_membership_is_requested','msg.file_uploaded','msg.file_empty','msg.file_deleted','msg.file_not_found',
-'msg.country_account_has_been_changed__cost_has_been_reset','msg.your_shopping_cart_is_empty_please_add_products_first.','msg.homeparty_guest_delete','msg.homeparty_delete','msg.VATID_could_not_be_validated',
-'msg.VATID_successfully_entered','msg.reverse_charge_procedure_and_VATID_deleted','msg.no_id_card_deposited_please_upload_first','msg.no_trade_licence_deposited_please_upload_first','msg.please_enter_reason_why_you_not_need_trade_licence',
-'msg.please_select_compensation_product','msg.please_select_count_compensation_products','msg.user_not_found','msg.shopping_cart_was_not_user_shop','msg.shopping_instance_not_found',
-'msg.shopping_user_not_found','navigation.home','navigation.my_account','navigation.my_data','navigation.edit',
-'navigation.my_shop','navigation.settings','navigation.my_team','navigation.my_clients','navigation.my_orders',
-'navigation.my_homeparty','navigation.member_register','navigation.member','navigation.membership','navigation.my_membership',
-'navigation.orders','navigation.trigger','navigation.do_order','navigation.clients','navigation.products',
-'navigation.overview','navigation.categories','navigation.ingredients','navigation.attribute','navigation.contents',
-'navigation.start_site','navigation.translate','navigation.add','navigation.general','navigation.modules',
-'navigation.user_roles','navigation.manage','navigation.shipping_costs','navigation.payment_methods','navigation.career_level',
-'navigation.user_level','navigation.countries','navigation.logout','navigation.system_settings','navigation.new_register',
-'navigation.payments','navigation.credit','navigation.invoice','navigation.revenue','navigation.paycredit',
+'validation.accepted','validation.accepted_if','validation.active_url','validation.after','validation.after_or_equal',
+'validation.alpha','validation.alpha_dash','validation.alpha_num','validation.array','validation.ascii',
+'validation.before','validation.before_or_equal','validation.between.array','validation.between.file','validation.between.numeric',
+'validation.between.string','validation.boolean','validation.can','validation.confirmed','validation.contains',
+'validation.current_password','validation.date','validation.date_equals','validation.date_format','validation.decimal',
+'validation.declined','validation.declined_if','validation.different','validation.digits','validation.digits_between',
+'validation.dimensions','validation.distinct','validation.doesnt_end_with','validation.doesnt_start_with','validation.email',
+'validation.ends_with','validation.enum','validation.exists','validation.extensions','validation.file',
+'validation.filled','validation.gt.array','validation.gt.file','validation.gt.numeric','validation.gt.string',
+'validation.gte.array','validation.gte.file','validation.gte.numeric','validation.gte.string','validation.hex_color',
+'validation.image','validation.in','validation.in_array','validation.integer','validation.ip',
+'validation.ipv4','validation.ipv6','validation.json','validation.list','validation.lowercase',
+'validation.lt.array','validation.lt.file','validation.lt.numeric','validation.lt.string','validation.lte.array',
+'validation.lte.file','validation.lte.numeric','validation.lte.string','validation.mac_address','validation.max.array',
+'validation.max.file','validation.max.numeric','validation.max.string','validation.max_digits','validation.mimes',
+'validation.mimetypes','validation.min.array','validation.min.file','validation.min.numeric','validation.min.string',
+'validation.min_digits','validation.missing','validation.missing_if','validation.missing_unless','validation.missing_with',
+'validation.missing_with_all','validation.multiple_of','validation.not_in','validation.not_regex','validation.numeric',
+'validation.password.letters','validation.password.mixed','validation.password.numbers','validation.password.symbols','validation.password.uncompromised',
+'validation.present','validation.present_if','validation.present_unless','validation.present_with','validation.present_with_all',
+'validation.prohibited','validation.prohibited_if','validation.prohibited_if_accepted','validation.prohibited_if_declined','validation.prohibited_unless',
+'validation.prohibits','validation.regex','validation.required','validation.required_array_keys','validation.required_if',
+'validation.required_if_accepted','validation.required_if_declined','validation.required_unless','validation.required_with','validation.required_with_all',
+'validation.required_without','validation.required_without_all','validation.same','validation.size.array','validation.size.file',
+'validation.size.numeric','validation.size.string','validation.starts_with','validation.string','validation.timezone',
+'validation.unique','validation.uploaded','validation.uppercase','validation.url','validation.ulid',
+'validation.uuid','validation.custom.attribute-name.rule-name','account.','account.BIC','account.IBAN',
+'account.VAT_ID_number','account.VAT_copy_1','account.VAT_liability','account.account_holder','account.bank_data',
+'account.delivery_address','account.firstname_lastname','account.invoice_address','account.my_credit','account.vat_data',
+'account.info_vat_numbers','account.new_vat_validate','account.btn_vat_validate','account.phone_need_error','account.phone_need_note',
+'account.required_for_commission_payments','account.reverse_charge_action_1','account.reverse_charge_action_2','account.reverse_charge_copy_1','account.reverse_charge_note_1',
+'account.reverse_charge_procedure','account.tax_number','account.taxable_sales_1','account.taxable_sales_2','account.validator_creditcard',
+'account.validator_date','account.validator_digits','account.validator_email','account.validator_equalTo','account.validator_max',
+'account.validator_maxlength','account.validator_min','account.validator_minlength','account.validator_number','account.validator_range',
+'account.validator_rangelength','account.validator_required','account.validator_url','cal.months.April','cal.months.August',
+'cal.months.December','cal.months.February','cal.months.January','cal.months.July','cal.months.June',
+'cal.months.March','cal.months.May','cal.months.November','cal.months.October','cal.months.September',
+'cal.months.full_year','cal.months_short.Apr','cal.months_short.Aug','cal.months_short.Dec','cal.months_short.Feb',
+'cal.months_short.Jan','cal.months_short.Jul','cal.months_short.Jun','cal.months_short.Mar','cal.months_short.May',
+'cal.months_short.Nov','cal.months_short.Oct','cal.months_short.Sep','cal.weekdays.Friday','cal.weekdays.Monday',
+'cal.weekdays.Saturday','cal.weekdays.Sunday','cal.weekdays.Thursday','cal.weekdays.Tuesday','cal.weekdays.Wednesday',
+'cal.weekdays_min.Fr','cal.weekdays_min.Mo','cal.weekdays_min.Sa','cal.weekdays_min.Su','cal.weekdays_min.Th',
+'cal.weekdays_min.Tu','cal.weekdays_min.We','cal.weekdays_short.Fri','cal.weekdays_short.Mon','cal.weekdays_short.Sat',
+'cal.weekdays_short.Sun','cal.weekdays_short.Thu','cal.weekdays_short.Tue','cal.weekdays_short.Wed','email.reset_passwort',
+'email.mail_confirm','email.subject_activate','email.account_active','email.subject_reset','email.dear_mrs',
+'email.dear_sir','email.hello','email.greetings','email.sender','email.request_from',
+'email.your_request_from','email.checkout_subject','email.checkout_subject_paid','email.checkout_subject_non_paid','email.checkout_subject_extern',
+'email.change_e_mail','email.salutation','email.first_name','email.last_name','email.email',
+'email.phone','email.subject','email.message','email.sales_partnership','email.sales_partnership_message',
+'email.button_account','email.active_copy1line','email.copy2line','email.copy3line','email.email_verify',
+'email.email_subject','email.email_incomplete','email.account_incomplete_copy1line','email.verify_e_mail','email.verify_copy1line',
+'email.email_verify_copy1line','email.copy_to_browser','email.activate_copy','email.account_active_copy1line','email.reset_pass_copy1line',
+'email.checkout_copy1line','email.checkout_copy3line','email.checkout_copy3line_extern','email.status_copy1line','email.invoice_title',
+'email.credit_title','email.invoice_copy1line','email.credit_copy1line','email.footer_copy1','email.footer_copy2',
+'email.footer_copy3','email.checkout_mail_hl1','email.checkout_mail_shipping','email.checkout_mail_status_info','email.checkout_mail_subtotal_ws',
+'email.checkout_mail_tax','email.checkout_mail_tax_19','email.checkout_mail_tax_7','email.checkout_mail_total','email.checkout_mail_tax_info',
+'email.checkout_mail_pay_info','email.checkout_mail_pay_success','email.checkout_mail_pay_with','email.checkout_mail_pay_ref','email.checkout_mail_your_mail',
+'email.checkout_mail_invoice_addess','email.checkout_mail_deliver_addess','email.checkout_mail_pickup_addess','email.checkout_mail_deliver_customer','email.checkout_mail_order_for_me',
+'email.checkout_mail_order_for_ot','email.checkout_mail_order_for_extern','email.checkout_mail_order_for_wizard','email.checkout_mail_order_for_membership','email.checkout_mail_same_address',
+'email.checkout_mail_pay_error','email.checkout_mail_pay_non','email.checkout_mail_pay_pre','email.checkout_mail_pay_pre_c1','email.checkout_mail_pay_pre_c2',
+'email.checkout_mail_bank_holder','email.checkout_mail_bank_iban','email.checkout_mail_bank_bic','email.checkout_mail_bank_name','email.checkout_mail_bank_total',
+'email.checkout_mail_bank_code','email.checkout_mail_pay_approved','email.checkout_mail_pay_invoice_open','email.checkout_mail_system_status','email.my_orders',
+'lead.Mr','lead.MS ','lead.please select','lead.further countries','lead.no',
+'lead.Company data','lead.Company name','lead.Street','lead.House number','lead.Place',
+'lead.Postcode','lead.Country','lead.Phone','lead.Homepage','lead.Industry',
+'lead.Your Data','lead.Function','lead.Salutation','lead.Title','lead.First name',
+'lead.Last Name','lead.Name','lead.Consent & Privacy','lead.Confirm Password','lead.E-Mail Address',
+'lead.Forgot Your Password?','lead.Login','lead.Logout','lead.Password','lead.Register',
+'lead.Remember Me','lead.Reset Password','lead.Send Password Reset Link','membership.home_hl','membership.home_copy_alert_31',
+'membership.home_copy_last_31','membership.home_copy_SEPA_32','membership.home_copy_last_33','membership.home_copy_SEPA_33','membership.home_copy_last_34',
+'membership.home_copy_alert_35','membership.home_copy_last_35','membership.home_copy_alert_36_today','membership.home_copy_alert_36','membership.home_copy_last_36',
+'membership.home_copy_SEPA_36','msg.shipping_country_was_not_found','msg.shipping_country_was_not_correctly','msg.shopping_cart_was_shipping_free','msg.shipping_cost_cannot_be_0',
+'msg.shipping_costs_were_not_calculated_correctly','msg.compensation_products_cannot_be_0','msg.link_for_homeparty_not_found','msg.contact_delete','msg.error_occurred_with_order',
+'msg.abo_deaktivert','msg.error_checkbox_not_confirm','msg.no_change_made','msg.booked_package_has_been_changed','msg.cancel_membership_is_requested',
+'msg.file_uploaded','msg.file_empty','msg.file_deleted','msg.file_not_found','msg.country_account_has_been_changed__cost_has_been_reset',
+'msg.your_shopping_cart_is_empty_please_add_products_first.','msg.homeparty_guest_delete','msg.homeparty_delete','msg.VATID_could_not_be_validated','msg.VATID_successfully_entered',
+'msg.reverse_charge_procedure_and_VATID_deleted','msg.no_id_card_deposited_please_upload_first','msg.no_trade_licence_deposited_please_upload_first','msg.please_enter_reason_why_you_not_need_trade_licence','msg.please_select_compensation_product',
+'msg.please_select_count_compensation_products','msg.user_not_found','msg.shopping_cart_was_not_user_shop','msg.shopping_instance_not_found','msg.shopping_user_not_found',
+'navigation.home','navigation.my_account','navigation.my_data','navigation.edit','navigation.my_shop',
+'navigation.settings','navigation.my_team','navigation.my_clients','navigation.my_orders','navigation.my_homeparty',
+'navigation.member_register','navigation.member','navigation.membership','navigation.my_membership','navigation.orders',
+'navigation.trigger','navigation.do_order','navigation.clients','navigation.products','navigation.overview',
+'navigation.categories','navigation.ingredients','navigation.attribute','navigation.contents','navigation.start_site',
+'navigation.translate','navigation.add','navigation.general','navigation.modules','navigation.user_roles',
+'navigation.manage','navigation.shipping_costs','navigation.payment_methods','navigation.career_level','navigation.user_level',
+'navigation.countries','navigation.logout','navigation.system_settings','navigation.new_register','navigation.payments',
+'navigation.credit','navigation.invoice','navigation.reminder','navigation.revenue','navigation.paycredit',
'navigation.commissions','navigation.promotion','navigation.my_promotions','navigation.my_profile','navigation.recharge_credit',
'navigation.clients_orders','navigation.my','navigation.sales_volumes','navigation.evaluation','order.add_customer',
'order.advertising_material','order.adviser_collective_invoice','order.adviser_order_for_membership','order.adviser_order_for_registration','order.art_no',
@@ -3465,107 +3510,150 @@ namespace PHPSTORM_META {
'order.total_sum','order.total_sums','order.total_without_VAT','order.turnover','order.unit_price',
'order.weight','order.you_has_article_in_shopping_cart','order.excl','order.ipay','order.cpay',
'order.ipay_text','order.cpay_text','order.sum_net','order.confirm_and_send_order','order.confirm_send_order_info',
-'order.order_was_placed_successfully','order.payment_link_for_your_customer','payment.','payment.BIC','payment.IBAN',
-'payment.Mastercard','payment.VAT','payment.VISA','payment.accepted_data_checkbox_customer','payment.accepted_data_checkbox_user',
-'payment.account_holder','payment.agree_SEPA_complete_purchase','payment.auto_renewal_hl','payment.auto_renewal_line_1','payment.auto_renewal_line_2',
-'payment.automatic_SEPA_mandate_type_was_selected','payment.back_to_shop','payment.back_to_shop_shopping_cart','payment.bank','payment.billing_address',
-'payment.billing_address_can_only_changed_in_salescentre','payment.buy_now','payment.buy_now_copy','payment.c_policy','payment.checkout_ssl_server',
-'payment.country_of_delivery','payment.credit_card','payment.credit_card_number','payment.delivery_country_can_only_changed_in_salescentre','payment.delivery_country_cannot_change',
-'payment.excl','payment.firstname_lastname','payment.gtc','payment.month','payment.months',
-'payment.ordering_country','payment.owner','payment.p_policy','payment.payment_by_SEPA','payment.payment_by_SEPA_info',
-'payment.payment_by_credit_card','payment.payment_by_credit_card_info','payment.payment_by_invoice','payment.payment_by_invoice_info','payment.payment_in_advance',
-'payment.payment_method','payment.payment_method_not_enabled_please_contact','payment.paypal','payment.please_check_form_and_complete','payment.please_transfer_amount_following_account',
-'payment.prepayment','payment.purchase_on_account','payment.reason_for_payment','payment.remaining_time','payment.reverse_charge_procedure',
-'payment.select_and_proceed_to_checkout','payment.select_and_save','payment.sepa_direct_debit','payment.sofort_bank_transfer','payment.status.store_payment',
-'payment.status.checkout_payment','payment.status.payment_error','payment.status.payment_redirect','payment.status.payment_approved','payment.status.txaction_failed',
-'payment.status.txaction_appointed','payment.status.txaction_paid','payment.status.success_payment','payment.status.success','payment.status.payment_not_found',
-'payment.status.checkout_cancel','payment.status.checkout_error','payment.status.auto_renewal_hl','payment.status.auto_renewal_line_1','payment.status.auto_renewal_line_2',
-'payment.thank_you_very_much','payment.total_amount','payment.valid until','payment.verification_no','payment.we_have_received_your_order_get_email',
-'payment.your_mivita_team','payment.your_order_number_is','payment.open','payment.paid','payment.check',
-'payment.cancelled','payment.failed','payment.no_payment','payment.paymend_paid','payment.paymend_open',
-'payment.paymend_failed','payment.extern_open','payment.extern_paid','payment.invoice_open','payment.invoice_paid',
-'payment.invoice_no_payment','payment.to_sales_tax_de','payment.not_to_sales_tax_de','payment.not_to_sales_tax_foreign','payment.ordered',
-'payment.removed','payment.registration','payment.not_assigned','payment.advisor_order','payment.credit',
-'payment.shoporder','payment.shoporder_pending','payment.membership','payment.order','payment.customer_order',
-'payment.homeparty','payment.shop','payment.external','payment.collective_invoice','payment.in_process',
-'payment.shipped','payment.completed','payment.trade_fair','payment.commission_shop','payment.commission_payline',
-'payment.commission_growth_bonus','payment.commission_team','payment.credit_added','payment.commission','payment.payment_for_account',
-'payment.user_order_deduction','payment.user_order_return','payment.promotion_order_deduction','payment.promotion_order_return','payment.charging_credits_add',
-'payment.charging_credits_remove','pdf.address_top','pdf.adviser_id','pdf.date','pdf.credit_no',
-'pdf.tax_no','pdf.vat_no','pdf.credit_note','pdf.credit_note_from','pdf.amount',
-'pdf.vat_text','pdf.amount_paid_out_gross','pdf.net_amount','pdf.as_a_small_entrepreneur_info','pdf.reverse_charge_procedure_info',
-'pdf.delivery_note_no','pdf.order_no','pdf.delivery_note','pdf.we_are_always_there_for_questions','pdf.your_advisor',
-'pdf.eprice','pdf.off','pdf.net','pdf.total_incl_VAT','pdf.ek',
-'pdf.invoice_nr','pdf.points','pdf.points_order','pdf.points_shop','pdf.invoice',
-'pdf.payment_type','pdf.status_of_invoice','pdf.delivery_date_is_invoice_date','pdf.prices_net','pdf.vat_id_of_the_recipient_of_the_service',
-'pdf.vat_of_the_recipient_of_the_service','pdf.invoice_does_not_include_vat','pdf.vat_is_declared_and_paid_by_recipient','pdf.tax_free_export_delivery_noteu','pdf.tax_free_export_delivery_eu',
-'pdf.intended_use','pdf.invoice_footer_info','register.declaration-of-consent','register.accept-contract','register.reg_hl',
-'register.reg_line_1','register.reg_checked','register.reg_finisch_hl','register.reg_finisch_line_1','register.reg_finisch_line_2',
-'register.wizard_verification_hl','register.wizard_verification_line_1','register.wizard_business_license_hl','register.wizard_business_license_line_1','register.wizard_finish_hl',
-'register.wizard_finish_line_1','register.wizard_create_release_hl','register.wizard_create_release_line_1','register.wizard_reg_release_hl','register.wizard_reg_release_line_1',
-'register.sender','register.required_fields','register.business_license_now','register.business_license_later','register.business_license_non',
-'register.business_license_non_text','register.reg_verify_info','register.verify_exists-info1','register.verify_exists-info2','register.verify_exists-info3',
-'register.verify_email','register.verify_email_again','reminder.subject','reminder.button_31','reminder.copy_first_31',
-'reminder.copy_last_31','reminder.button_32','reminder.copy_first_32','reminder.copy_last_32','reminder.button_33',
-'reminder.copy_first_33','reminder.copy_last_33','reminder.button_34','reminder.copy_first_34','reminder.copy_last_34',
-'reminder.button_35','reminder.copy_first_35','reminder.copy_last_35','reminder.button_36','reminder.copy_first_36',
-'reminder.copy_last_36','reminder.button_37','reminder.copy_first_37','reminder.copy_last_37','shop.default_description',
-'shop.default_user_open','shop.headline','shop.description','shop.greetings','shop.personal_infos',
-'shop.incl_VAT_plus_shipping','tables.','tables.VAT','tables.account','tables.account_to',
-'tables.activ','tables.addition','tables.address','tables.adviser_no','tables.amount',
-'tables.art','tables.article_no','tables.assigned_advisor','tables.birthday','tables.c_no',
-'tables.city','tables.commission','tables.contents','tables.country','tables.created',
-'tables.credit_note','tables.customer','tables.date','tables.detail','tables.earnings',
-'tables.ek_price','tables.email','tables.firstname','tables.from_credit_balance','tables.gross',
-'tables.image','tables.in_no','tables.info','tables.invoice','tables.label',
-'tables.lastname','tables.level','tables.line','tables.margin','tables.mobil',
-'tables.my_price_gross','tables.my_price_net','tables.net','tables.net_price','tables.net_sales',
-'tables.net_sum','tables.newsletter','tables.note','tables.number','tables.order',
-'tables.payline_qualification','tables.payment','tables.payment_type','tables.phone','tables.points',
-'tables.postcode','tables.price','tables.product','tables.products','tables.purchased_in_the_shop',
-'tables.purchases','tables.qualification','tables.quantity','tables.reference_number','tables.rf_no',
-'tables.shipping','tables.shop','tables.shop_commission','tables.sponsor','tables.status',
-'tables.subject','tables.sum','tables.total','tables.type','tables.ve',
-'tables.vk_price','validation.old_password','validation.users_update_email','validation.profanity','validation.recaptcha',
-'validation.full_word_check','validation.custom.no_email','validation.custom.unique_email_client','validation.custom.unique_email_member','validation.custom.match_found',
-'validation.custom.shipping_not_found','validation.attributes.salutation','validation.attributes.name','validation.attributes.place','validation.attributes.username',
-'validation.attributes.email','validation.attributes.email-confirm','validation.attributes.first_name','validation.attributes.last_name','validation.attributes.password',
-'validation.attributes.password_confirmation','validation.attributes.password-confirm','validation.attributes.city','validation.attributes.country','validation.attributes.address',
-'validation.attributes.phone','validation.attributes.mobile','validation.attributes.mobil','validation.attributes.age','validation.attributes.sex',
-'validation.attributes.gender','validation.attributes.message','validation.attributes.day','validation.attributes.month','validation.attributes.year',
-'validation.attributes.hour','validation.attributes.minute','validation.attributes.second','validation.attributes.title','validation.attributes.content',
-'validation.attributes.description','validation.attributes.excerpt','validation.attributes.date','validation.attributes.time','validation.attributes.available',
-'validation.attributes.size','validation.attributes.user_shop_name','validation.attributes.birthday','validation.attributes.user_shop_active','validation.attributes.g-recaptcha-response',
-'validation.attributes.accepted_data_protection','validation.attributes.billing_salutation','validation.attributes.billing_firstname','validation.attributes.billing_lastname','validation.attributes.billing_email',
-'validation.attributes.billing_address','validation.attributes.billing_zipcode','validation.attributes.billing_city','validation.attributes.accepted_data_checkbox','validation.attributes.shipping_salutation',
-'validation.attributes.shipping_firstname','validation.attributes.shipping_lastname','validation.attributes.shipping_address','validation.attributes.shipping_zipcode','validation.attributes.shipping_city',
-'validation.attributes.m_account','validation.attributes.has_customer_buyed','validation.attributes.billing_country_code','validation.attributes.sales_partnership','validation.attributes.sales_partnership_message',
-'validation.attributes.tax_number','validation.attributes.tax_identification_number','validation.attributes.user_promotion_url','validation.attributes.user_shop_url','en.0',
-'fr.0','it.0','nl.0','validation.attributes.subject','uk.0',
-'profanity.0','translation::errors.language_exists','translation::errors.key_exists','translation::translation.languages','translation::translation.language',
-'translation::translation.type','translation::translation.file','translation::translation.key','translation::translation.prompt_language','translation::translation.language_added',
-'translation::translation.prompt_language_for_key','translation::translation.prompt_type','translation::translation.prompt_file','translation::translation.prompt_key','translation::translation.prompt_value',
-'translation::translation.type_error','translation::translation.language_key_added','translation::translation.no_missing_keys','translation::translation.keys_synced','translation::translation.search',
-'translation::translation.translations','translation::translation.language_name','translation::translation.locale','translation::translation.add','translation::translation.add_language',
-'translation::translation.save','translation::translation.language_exists','translation::translation.uh_oh','translation::translation.group_single','translation::translation.Gruppe',
-'translation::translation.single','translation::translation.value','translation::translation.namespace','translation::translation.synchronisieren','translation::translation.synced',
-'translation::translation.add_translation','translation::translation.translation_added','translation::translation.namespace_label','translation::translation.group_label','translation::translation.key_label',
-'translation::translation.value_label','translation::translation.namespace_placeholder','translation::translation.group_placeholder','translation::translation.key_placeholder','translation::translation.value_placeholder',
-'translation::translation.advanced_options','paypal::error.paypal_transaction_declined','paypal::error.paypal_transaction_not_verified','paypal::error.paypal_connection_error',);
+'order.order_was_placed_successfully','order.payment_link_for_your_customer','passwords.password','payment.','payment.BIC',
+'payment.IBAN','payment.Mastercard','payment.VAT','payment.VISA','payment.accepted_data_checkbox_customer',
+'payment.accepted_data_checkbox_user','payment.account_holder','payment.agree_SEPA_complete_purchase','payment.auto_renewal_hl','payment.auto_renewal_line_1',
+'payment.auto_renewal_line_2','payment.automatic_SEPA_mandate_type_was_selected','payment.back_to_shop','payment.back_to_shop_shopping_cart','payment.bank',
+'payment.billing_address','payment.billing_address_can_only_changed_in_salescentre','payment.buy_now','payment.buy_now_copy','payment.c_policy',
+'payment.checkout_ssl_server','payment.country_of_delivery','payment.credit_card','payment.credit_card_number','payment.delivery_country_can_only_changed_in_salescentre',
+'payment.delivery_country_cannot_change','payment.excl','payment.firstname_lastname','payment.gtc','payment.month',
+'payment.months','payment.ordering_country','payment.owner','payment.p_policy','payment.payment_by_SEPA',
+'payment.payment_by_SEPA_info','payment.payment_by_credit_card','payment.payment_by_credit_card_info','payment.payment_by_invoice','payment.payment_by_invoice_info',
+'payment.payment_in_advance','payment.payment_method','payment.payment_method_not_enabled_please_contact','payment.paypal','payment.please_check_form_and_complete',
+'payment.please_transfer_amount_following_account','payment.prepayment','payment.purchase_on_account','payment.reason_for_payment','payment.remaining_time',
+'payment.reverse_charge_procedure','payment.select_and_proceed_to_checkout','payment.select_and_save','payment.sepa_direct_debit','payment.sofort_bank_transfer',
+'payment.status.store_payment','payment.status.checkout_payment','payment.status.payment_error','payment.status.payment_redirect','payment.status.payment_approved',
+'payment.status.txaction_failed','payment.status.txaction_appointed','payment.status.txaction_paid','payment.status.success_payment','payment.status.success',
+'payment.status.payment_not_found','payment.status.checkout_cancel','payment.status.checkout_error','payment.status.auto_renewal_hl','payment.status.auto_renewal_line_1',
+'payment.status.auto_renewal_line_2','payment.thank_you_very_much','payment.total_amount','payment.valid until','payment.verification_no',
+'payment.we_have_received_your_order_get_email','payment.your_mivita_team','payment.your_order_number_is','payment.open','payment.paid',
+'payment.check','payment.cancelled','payment.failed','payment.no_payment','payment.paymend_paid',
+'payment.paymend_open','payment.paymend_failed','payment.extern_open','payment.extern_paid','payment.invoice_open',
+'payment.invoice_paid','payment.invoice_no_payment','payment.to_sales_tax_de','payment.not_to_sales_tax_de','payment.not_to_sales_tax_foreign',
+'payment.ordered','payment.removed','payment.registration','payment.not_assigned','payment.advisor_order',
+'payment.credit','payment.shoporder','payment.shoporder_pending','payment.membership','payment.order',
+'payment.customer_order','payment.homeparty','payment.shop','payment.external','payment.collective_invoice',
+'payment.in_process','payment.shipped','payment.completed','payment.trade_fair','payment.commission_shop',
+'payment.commission_payline','payment.commission_growth_bonus','payment.commission_team','payment.credit_added','payment.commission',
+'payment.payment_for_account','payment.user_order_deduction','payment.user_order_return','payment.promotion_order_deduction','payment.promotion_order_return',
+'payment.charging_credits_add','payment.charging_credits_remove','pdf.address_top','pdf.adviser_id','pdf.date',
+'pdf.credit_no','pdf.tax_no','pdf.vat_no','pdf.credit_note','pdf.credit_note_from',
+'pdf.amount','pdf.vat_text','pdf.amount_paid_out_gross','pdf.net_amount','pdf.as_a_small_entrepreneur_info',
+'pdf.reverse_charge_procedure_info','pdf.delivery_note_no','pdf.order_no','pdf.delivery_note','pdf.we_are_always_there_for_questions',
+'pdf.your_advisor','pdf.eprice','pdf.off','pdf.net','pdf.total_incl_VAT',
+'pdf.ek','pdf.invoice_nr','pdf.points','pdf.points_order','pdf.points_shop',
+'pdf.invoice','pdf.payment_type','pdf.status_of_invoice','pdf.delivery_date_is_invoice_date','pdf.prices_net',
+'pdf.vat_id_of_the_recipient_of_the_service','pdf.vat_of_the_recipient_of_the_service','pdf.invoice_does_not_include_vat','pdf.vat_is_declared_and_paid_by_recipient','pdf.tax_free_export_delivery_noteu',
+'pdf.tax_free_export_delivery_eu','pdf.intended_use','pdf.invoice_footer_info','register.declaration-of-consent','register.accept-contract',
+'register.reg_hl','register.reg_line_1','register.reg_checked','register.reg_finisch_hl','register.reg_finisch_line_1',
+'register.reg_finisch_line_2','register.wizard_verification_hl','register.wizard_verification_line_1','register.wizard_business_license_hl','register.wizard_business_license_line_1',
+'register.wizard_finish_hl','register.wizard_finish_line_1','register.wizard_create_release_hl','register.wizard_create_release_line_1','register.wizard_reg_release_hl',
+'register.wizard_reg_release_line_1','register.sender','register.required_fields','register.business_license_now','register.business_license_later',
+'register.business_license_non','register.business_license_non_text','register.reg_verify_info','register.verify_exists-info1','register.verify_exists-info2',
+'register.verify_exists-info3','register.verify_email','register.verify_email_again','reminder.subject','reminder.button_31',
+'reminder.copy_first_31','reminder.copy_last_31','reminder.button_32','reminder.copy_first_32','reminder.copy_last_32',
+'reminder.button_33','reminder.copy_first_33','reminder.copy_last_33','reminder.button_34','reminder.copy_first_34',
+'reminder.copy_last_34','reminder.button_35','reminder.copy_first_35','reminder.copy_last_35','reminder.button_36',
+'reminder.copy_first_36','reminder.copy_last_36','reminder.button_37','reminder.copy_first_37','reminder.copy_last_37',
+'shop.default_description','shop.default_user_open','shop.headline','shop.description','shop.greetings',
+'shop.personal_infos','shop.incl_VAT_plus_shipping','tables.','tables.VAT','tables.account',
+'tables.account_to','tables.activ','tables.addition','tables.address','tables.adviser_no',
+'tables.amount','tables.art','tables.article_no','tables.assigned_advisor','tables.birthday',
+'tables.c_no','tables.city','tables.commission','tables.contents','tables.country',
+'tables.created','tables.credit_note','tables.customer','tables.date','tables.detail',
+'tables.earnings','tables.ek_price','tables.email','tables.firstname','tables.from_credit_balance',
+'tables.gross','tables.image','tables.in_no','tables.info','tables.invoice',
+'tables.label','tables.lastname','tables.level','tables.line','tables.margin',
+'tables.mobil','tables.my_price_gross','tables.my_price_net','tables.net','tables.net_price',
+'tables.net_sales','tables.net_sum','tables.newsletter','tables.note','tables.number',
+'tables.order','tables.payline_qualification','tables.payment','tables.payment_type','tables.phone',
+'tables.points','tables.postcode','tables.price','tables.product','tables.products',
+'tables.purchased_in_the_shop','tables.purchases','tables.qualification','tables.quantity','tables.reference_number',
+'tables.rf_no','tables.shipping','tables.shop','tables.shop_commission','tables.sponsor',
+'tables.status','tables.subject','tables.sum','tables.total','tables.type',
+'tables.ve','tables.vk_price','validation.old_password','validation.users_update_email','validation.profanity',
+'validation.recaptcha','validation.full_word_check','validation.custom.no_email','validation.custom.unique_email_client','validation.custom.unique_email_member',
+'validation.custom.match_found','validation.custom.shipping_not_found','validation.attributes.salutation','validation.attributes.name','validation.attributes.place',
+'validation.attributes.username','validation.attributes.email','validation.attributes.email-confirm','validation.attributes.first_name','validation.attributes.last_name',
+'validation.attributes.password','validation.attributes.password_confirmation','validation.attributes.password-confirm','validation.attributes.city','validation.attributes.country',
+'validation.attributes.address','validation.attributes.phone','validation.attributes.mobile','validation.attributes.mobil','validation.attributes.age',
+'validation.attributes.sex','validation.attributes.gender','validation.attributes.message','validation.attributes.day','validation.attributes.month',
+'validation.attributes.year','validation.attributes.hour','validation.attributes.minute','validation.attributes.second','validation.attributes.title',
+'validation.attributes.content','validation.attributes.description','validation.attributes.excerpt','validation.attributes.date','validation.attributes.time',
+'validation.attributes.available','validation.attributes.size','validation.attributes.user_shop_name','validation.attributes.birthday','validation.attributes.user_shop_active',
+'validation.attributes.g-recaptcha-response','validation.attributes.accepted_data_protection','validation.attributes.billing_salutation','validation.attributes.billing_firstname','validation.attributes.billing_lastname',
+'validation.attributes.billing_email','validation.attributes.billing_address','validation.attributes.billing_zipcode','validation.attributes.billing_city','validation.attributes.accepted_data_checkbox',
+'validation.attributes.shipping_salutation','validation.attributes.shipping_firstname','validation.attributes.shipping_lastname','validation.attributes.shipping_address','validation.attributes.shipping_zipcode',
+'validation.attributes.shipping_city','validation.attributes.m_account','validation.attributes.has_customer_buyed','validation.attributes.billing_country_code','validation.attributes.sales_partnership',
+'validation.attributes.sales_partnership_message','validation.attributes.tax_number','validation.attributes.tax_identification_number','validation.attributes.user_promotion_url','validation.attributes.user_shop_url',
+'validation.attributes.subject','profanity.en.profanity.0','profanity.en.profanity.1','profanity.en.profanity.2','profanity.en.profanity.3',
+'profanity.en.profanity.4','profanity.en.profanity.5','profanity.en.profanity.6','profanity.en.profanity.7','profanity.en.profanity.8',
+'profanity.en.profanity.9','profanity.en.profanity.10','profanity.en.profanity.11','profanity.en.profanity.12','profanity.en.profanity.13',
+'profanity.en.profanity.14','profanity.en.profanity.15','profanity.en.profanity.16','profanity.en.profanity.17','profanity.en.profanity.18',
+'profanity.en.profanity.19','profanity.en.profanity.20','profanity.en.profanity.21','profanity.en.profanity.22','profanity.en.profanity.23',
+'profanity.en.profanity.24','profanity.en.profanity.25','profanity.en.profanity.26','profanity.en.profanity.27','profanity.en.profanity.28',
+'profanity.en.profanity.29','profanity.en.profanity.30','profanity.en.profanity.31','profanity.en.profanity.32','profanity.en.profanity.33',
+'profanity.en.profanity.34','profanity.en.profanity.35','profanity.en.profanity.36','profanity.en.profanity.37','profanity.en.profanity.38',
+'profanity.en.profanity.39','profanity.en.profanity.40','profanity.en.profanity.41','profanity.en.profanity.42','profanity.en.profanity.43',
+'profanity.en.profanity.44','profanity.en.profanity.45','profanity.en.profanity.46','profanity.en.profanity.47','profanity.en.profanity.48',
+'profanity.en.profanity.49','profanity.en.profanity.50','profanity.en.profanity.51','profanity.en.profanity.52','profanity.en.profanity.53',
+'profanity.en.profanity.54','profanity.en.profanity.55','profanity.en.profanity.56','profanity.en.profanity.57','profanity.en.profanity.58',
+'profanity.en.profanity.59','profanity.en.profanity.60','profanity.en.profanity.61','profanity.en.profanity.62','profanity.en.profanity.63',
+'profanity.en.profanity.64','profanity.en.profanity.65','profanity.en.profanity.66','profanity.en.profanity.67','profanity.es.profanity.0',
+'translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.de.errors.language_exists','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.de.errors.key_exists','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.de.translation.languages','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.de.translation.language','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.de.translation.type',
+'translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.de.translation.file','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.de.translation.key','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.de.translation.prompt_language','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.de.translation.language_added','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.de.translation.prompt_language_for_key',
+'translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.de.translation.prompt_type','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.de.translation.prompt_file','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.de.translation.prompt_key','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.de.translation.prompt_value','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.de.translation.type_error',
+'translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.de.translation.language_key_added','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.de.translation.no_missing_keys','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.de.translation.keys_synced','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.de.translation.search','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.de.translation.translations',
+'translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.de.translation.language_name','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.de.translation.locale','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.de.translation.add','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.de.translation.add_language','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.de.translation.save',
+'translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.de.translation.language_exists','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.de.translation.uh_oh','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.de.translation.group_single','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.de.translation.Gruppe','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.de.translation.single',
+'translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.de.translation.value','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.de.translation.namespace','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.de.translation.synchronisieren','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.de.translation.synced','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.de.translation.add_translation',
+'translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.de.translation.translation_added','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.de.translation.namespace_label','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.de.translation.group_label','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.de.translation.key_label','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.de.translation.value_label',
+'translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.de.translation.namespace_placeholder','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.de.translation.group_placeholder','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.de.translation.key_placeholder','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.de.translation.value_placeholder','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.de.translation.advanced_options',
+'translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.en.errors.language_exists','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.en.errors.key_exists','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.en.translation.languages','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.en.translation.language','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.en.translation.type',
+'translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.en.translation.file','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.en.translation.key','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.en.translation.prompt_language','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.en.translation.language_added','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.en.translation.prompt_language_for_key',
+'translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.en.translation.prompt_type','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.en.translation.prompt_file','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.en.translation.prompt_key','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.en.translation.prompt_value','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.en.translation.type_error',
+'translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.en.translation.language_key_added','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.en.translation.no_missing_keys','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.en.translation.keys_synced','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.en.translation.search','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.en.translation.translations',
+'translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.en.translation.language_name','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.en.translation.locale','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.en.translation.add','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.en.translation.add_language','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.en.translation.save',
+'translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.en.translation.language_exists','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.en.translation.uh_oh','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.en.translation.group_single','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.en.translation.group','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.en.translation.single',
+'translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.en.translation.value','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.en.translation.namespace','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.en.translation.add_translation','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.en.translation.translation_added','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.en.translation.namespace_label',
+'translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.en.translation.group_label','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.en.translation.key_label','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.en.translation.value_label','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.en.translation.namespace_placeholder','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.en.translation.group_placeholder',
+'translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.en.translation.key_placeholder','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.en.translation.value_placeholder','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.en.translation.advanced_options','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.fr.errors.key_exists','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.fr.errors.language_exists',
+'translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.fr.translation.add','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.fr.translation.add_language','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.fr.translation.add_translation','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.fr.translation.advanced_options','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.fr.translation.file',
+'translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.fr.translation.group','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.fr.translation.group_label','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.fr.translation.group_placeholder','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.fr.translation.group_single','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.fr.translation.key',
+'translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.fr.translation.key_label','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.fr.translation.key_placeholder','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.fr.translation.keys_synced','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.fr.translation.language','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.fr.translation.language_added',
+'translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.fr.translation.language_exists','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.fr.translation.language_key_added','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.fr.translation.language_name','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.fr.translation.languages','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.fr.translation.locale',
+'translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.fr.translation.namespace','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.fr.translation.namespace_label','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.fr.translation.namespace_placeholder','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.fr.translation.no_missing_keys','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.fr.translation.prompt_file',
+'translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.fr.translation.prompt_key','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.fr.translation.prompt_language','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.fr.translation.prompt_language_for_key','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.fr.translation.prompt_type','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.fr.translation.prompt_value',
+'translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.fr.translation.save','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.fr.translation.search','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.fr.translation.single','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.fr.translation.translation_added','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.fr.translation.translations',
+'translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.fr.translation.type','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.fr.translation.type_error','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.fr.translation.uh_oh','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.fr.translation.value','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.fr.translation.value_label',
+'translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.fr.translation.value_placeholder','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.nl.errors.language_exists','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.nl.errors.key_exists','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.nl.translation.languages','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.nl.translation.language',
+'translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.nl.translation.type','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.nl.translation.file','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.nl.translation.key','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.nl.translation.prompt_language','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.nl.translation.language_added',
+'translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.nl.translation.prompt_language_for_key','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.nl.translation.prompt_type','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.nl.translation.prompt_file','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.nl.translation.prompt_key','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.nl.translation.prompt_value',
+'translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.nl.translation.type_error','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.nl.translation.language_key_added','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.nl.translation.no_missing_keys','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.nl.translation.keys_synced','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.nl.translation.search',
+'translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.nl.translation.translations','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.nl.translation.language_name','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.nl.translation.locale','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.nl.translation.add','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.nl.translation.add_language',
+'translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.nl.translation.save','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.nl.translation.language_exists','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.nl.translation.uh_oh','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.nl.translation.group_single','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.nl.translation.group',
+'translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.nl.translation.single','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.nl.translation.value','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.nl.translation.namespace','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.nl.translation.add_translation','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.nl.translation.translation_added',
+'translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.nl.translation.namespace_label','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.nl.translation.group_label','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.nl.translation.key_label','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.nl.translation.value_label','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.nl.translation.namespace_placeholder',
+'translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.nl.translation.group_placeholder','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.nl.translation.key_placeholder','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.nl.translation.value_placeholder','translation::.var.www.html.vendor.joedixon.laravel-translation.resources.lang.nl.translation.advanced_options','paypal::.var.www.html.vendor.srmklive.paypal.lang.ar.error.paypal_transaction_declined',
+'paypal::.var.www.html.vendor.srmklive.paypal.lang.ar.error.paypal_transaction_not_verified','paypal::.var.www.html.vendor.srmklive.paypal.lang.ar.error.paypal_connection_error','paypal::.var.www.html.vendor.srmklive.paypal.lang.cn.error.paypal_transaction_declined','paypal::.var.www.html.vendor.srmklive.paypal.lang.cn.error.paypal_transaction_not_verified','paypal::.var.www.html.vendor.srmklive.paypal.lang.cn.error.paypal_connection_error',
+'paypal::.var.www.html.vendor.srmklive.paypal.lang.de.error.paypal_transaction_declined','paypal::.var.www.html.vendor.srmklive.paypal.lang.de.error.paypal_transaction_not_verified','paypal::.var.www.html.vendor.srmklive.paypal.lang.de.error.paypal_connection_error','paypal::.var.www.html.vendor.srmklive.paypal.lang.en.error.paypal_transaction_declined','paypal::.var.www.html.vendor.srmklive.paypal.lang.en.error.paypal_transaction_not_verified',
+'paypal::.var.www.html.vendor.srmklive.paypal.lang.en.error.paypal_connection_error','paypal::.var.www.html.vendor.srmklive.paypal.lang.es.error.paypal_transaction_declined','paypal::.var.www.html.vendor.srmklive.paypal.lang.es.error.paypal_transaction_not_verified','paypal::.var.www.html.vendor.srmklive.paypal.lang.es.error.paypal_connection_error','paypal::.var.www.html.vendor.srmklive.paypal.lang.fr.error.paypal_transaction_declined',
+'paypal::.var.www.html.vendor.srmklive.paypal.lang.fr.error.paypal_transaction_not_verified','paypal::.var.www.html.vendor.srmklive.paypal.lang.fr.error.paypal_connection_error','paypal::.var.www.html.vendor.srmklive.paypal.lang.hy.error.paypal_transaction_declined','paypal::.var.www.html.vendor.srmklive.paypal.lang.hy.error.paypal_transaction_not_verified','paypal::.var.www.html.vendor.srmklive.paypal.lang.hy.error.paypal_connection_error',
+'paypal::.var.www.html.vendor.srmklive.paypal.lang.it.error.paypal_transaction_declined','paypal::.var.www.html.vendor.srmklive.paypal.lang.it.error.paypal_transaction_not_verified','paypal::.var.www.html.vendor.srmklive.paypal.lang.it.error.paypal_connection_error','paypal::.var.www.html.vendor.srmklive.paypal.lang.ja.error.paypal_transaction_declined','paypal::.var.www.html.vendor.srmklive.paypal.lang.ja.error.paypal_transaction_not_verified',
+'paypal::.var.www.html.vendor.srmklive.paypal.lang.ja.error.paypal_connection_error',);
registerArgumentsSet('env',
'APP_NAME','APP_ENV','APP_KEY','APP_DEBUG','APP_URL',
'APP_API_DOMAIN','APP_DOMAIN','APP_PROMO_URL','APP_PROMO_DOMAIN','APP_SHOP_URL',
'APP_SHOP_DOMAIN','APP_CHECKOUT_MAIL','APP_CHECKOUT_TEST_MAIL','APP_INFO_MAIL','APP_INFO_TEST_MAIL',
-'EXCEPTION_MAIL','APP_MAIN_TAX','APP_MAIN_TAX_RATE','APP_MAIN_USER_ID','LOG_CHANNEL',
-'LOG_LEVEL','DB_CONNECTION','DB_HOST','DB_PORT','DB_DATABASE',
-'DB_USERNAME','DB_PASSWORD','BROADCAST_DRIVER','CACHE_DRIVER','QUEUE_CONNECTION',
-'SESSION_DRIVER','SESSION_LIFETIME','MEMCACHED_HOST','REDIS_HOST','REDIS_PASSWORD',
-'REDIS_PORT','MAIL_DRIVER','MAIL_HOST','MAIL_PORT','MAIL_USERNAME',
-'MAIL_PASSWORD','MAIL_ENCRYPTION','MAIL_FROM_ADDRESS','MAIL_FROM_NAME','RECAPTCHA_SITE_KEY',
-'RECAPTCHA_SECRET_KEY','PAYPAL_MODE','PAYPAL_SANDBOX_CLIENT_ID','PAYPAL_SANDBOX_CLIENT_SECRET','PAYPAL_LIVE_CLIENT_ID',
-'PAYPAL_LIVE_CLIENT_SECRET','AWS_ACCESS_KEY_ID','AWS_SECRET_ACCESS_KEY','AWS_DEFAULT_REGION','AWS_BUCKET',
-'PUSHER_APP_ID','PUSHER_APP_KEY','PUSHER_APP_SECRET','PUSHER_APP_CLUSTER','MIX_PUSHER_APP_KEY',
-'MIX_PUSHER_APP_CLUSTER',);
+'EXCEPTION_MAIL','LOGISTIC_MAIL','APP_MAIN_TAX','APP_MAIN_TAX_RATE','APP_MAIN_USER_ID',
+'LOG_CHANNEL','LOG_LEVEL','DB_CONNECTION','DB_HOST','DB_PORT',
+'DB_DATABASE','DB_USERNAME','DB_PASSWORD','BROADCAST_DRIVER','CACHE_DRIVER',
+'QUEUE_CONNECTION','SESSION_DRIVER','SESSION_LIFETIME','MEMCACHED_HOST','REDIS_HOST',
+'REDIS_PASSWORD','REDIS_PORT','MAIL_DRIVER','MAIL_HOST','MAIL_PORT',
+'RECAPTCHA_SITE_KEY','RECAPTCHA_SECRET_KEY','PAYPAL_MODE','PAYPAL_SANDBOX_CLIENT_ID','PAYPAL_SANDBOX_CLIENT_SECRET',
+'PAYPAL_LIVE_CLIENT_ID','PAYPAL_LIVE_CLIENT_SECRET','AWS_ACCESS_KEY_ID','AWS_SECRET_ACCESS_KEY','AWS_DEFAULT_REGION',
+'AWS_BUCKET','PUSHER_APP_ID','PUSHER_APP_KEY','PUSHER_APP_SECRET','PUSHER_APP_CLUSTER',
+'MIX_PUSHER_APP_KEY','MIX_PUSHER_APP_CLUSTER',);
expectedArguments(\Illuminate\Support\Facades\Gate::has(), 0, argumentsSet('auth'));
expectedArguments(\Illuminate\Support\Facades\Gate::allows(), 0, argumentsSet('auth'));
diff --git a/CLAUDE.md b/CLAUDE.md
new file mode 100644
index 0000000..6746b50
--- /dev/null
+++ b/CLAUDE.md
@@ -0,0 +1,85 @@
+# CLAUDE.md
+
+This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
+
+## Project Overview
+
+German-language MLM/direct-sales e-commerce platform for organic/natural products ("Gruene Seele" / Green Soul). Partners/distributors get personal whitelabel shops, earn commissions through a multi-level hierarchy, and manage orders, invoices, and promotions.
+
+**Stack:** PHP 8.4, Laravel 11 (using Laravel 10 directory structure), Bootstrap 4, jQuery, Laravel Mix (webpack), MySQL, Laravel Passport (API auth).
+
+## Common Commands
+
+```bash
+# Tests (Pest v2, uses SQLite in-memory)
+php artisan test # run all tests
+php artisan test tests/Feature/ExampleTest.php # run single file
+php artisan test --filter=testName # filter by name
+
+# Code formatting (Laravel Pint)
+vendor/bin/pint --dirty # format changed files only
+vendor/bin/pint # format all files
+composer format # alias for pint
+
+# Frontend (Laravel Mix, NOT Vite)
+npm run dev # development build
+npm run prod # production build
+npm run watch # watch mode
+
+# Artisan - always pass --no-interaction
+php artisan make:model Name --no-interaction
+php artisan make:test --pest Name --no-interaction
+```
+
+## Architecture
+
+### Multi-Domain Routing (`routes/web.php`)
+Three separate domain groups, each with distinct middleware:
+- **Main domain** (`config('app.domain')`) - admin panel + user dashboard
+- **Promo domain** (`config('app.promo_domain')`) - public promotion/microsite pages
+- **Shop domain** (`config('app.shop_domain')`) - public whitelabel shop
+
+### Admin Access Levels (middleware in `app/Http/Middleware/`)
+- `CopyReader` - admin >= 1 (product/content management)
+- `Admin` - admin >= 7 (sales, customers, promotions)
+- `SuperAdmin` - admin >= 8 (users, shipping, settings)
+- `SysAdmin` - admin >= 9 (system tools, imports)
+
+### Key Service Layer
+- **`app/Services/Yard.php`** + `app/Services/Yard/` - Custom shopping cart (extends forked Gloudemans Cart in `packages/digital-bird/shoppingcart/`). Handles shipping, tax, margins, commissions.
+- **`app/Services/Invoice.php`** - Invoice and cancellation invoice PDF generation (uses DomPDF)
+- **`app/Services/PaymentReminderService.php`** - Payment reminder logic with status progression
+- **`app/Services/Credit.php`** - User credit/balance management
+- **`app/Services/Stats/`** - Sales statistics
+
+### Repository Pattern
+Business logic uses repositories in `app/Repositories/` (e.g., `CheckoutRepository`, `InvoiceRepository`, `CustomerRepository`). Controllers delegate to repositories and services.
+
+### Local Packages
+`packages/digital-bird/shoppingcart/` - Forked `gloudemans/shoppingcart`, autoloaded via composer PSR-4 as `Gloudemans\Shoppingcart\`.
+
+### Cron Jobs (`app/Console/Kernel.php`)
+- `payments:accounts` - Checks user account expiry, sends reminders (statuses 31/33/34/35), deactivates expired accounts
+- `payments:reminders` - Sends payment reminders for open invoices
+
+### API (`routes/api.php`)
+No versioning. Passport-authenticated endpoints for WordPress integration (`/api/wp/*`) and auth (`/api/auth/*`).
+
+### Global Helpers
+`app/helpers.php` (autoloaded) - URL helpers, formatting delegates to `App\Services\Util`.
+
+### PDF Generation
+- `app/Libraries/InvoicePDF.php`, `ContractPDF.php` - FPDF/FPDI based
+- `app/Services/Invoice.php` - DomPDF based (Blade templates in `resources/views/pdf/`)
+
+## Important Conventions
+
+- This project uses **Laravel 10 directory structure** on Laravel 11. Do NOT migrate to Laravel 11 structure.
+ - Middleware registration: `app/Http/Kernel.php`
+ - Exception handling: `app/Exceptions/Handler.php`
+ - Schedule: `app/Console/Kernel.php`
+- Default auth guard is `user` (not `web`), configured in `config/auth.php`
+- User model is `App\User` (not `App\Models\User`)
+- Views are Blade templates with Bootstrap 4 + jQuery DataTables
+- Always run `vendor/bin/pint --dirty` before finalizing changes
+- Countries supported: DE, FR, CH, NL (with reverse charge VAT handling)
diff --git a/_ide_helper.php b/_ide_helper.php
index c8adbbb..34ddcac 100644
--- a/_ide_helper.php
+++ b/_ide_helper.php
@@ -5,7 +5,7 @@
/**
* A helper file for Laravel, to provide autocomplete information to your IDE
- * Generated for Laravel 11.44.7.
+ * Generated for Laravel 11.48.0.
*
* This file should not be included in your code, only analyzed by your IDE!
*
@@ -14,8 +14,6 @@
*/
namespace Illuminate\Support\Facades {
/**
- *
- *
* @see \Illuminate\Foundation\Application
*/
class App {
@@ -23,8 +21,8 @@ namespace Illuminate\Support\Facades {
* Begin configuring a new Laravel application instance.
*
* @param string|null $basePath
- * @return \Illuminate\Foundation\Configuration\ApplicationBuilder
- * @static
+ * @return \Illuminate\Foundation\Configuration\ApplicationBuilder
+ * @static
*/
public static function configure($basePath = null)
{
@@ -34,8 +32,8 @@ namespace Illuminate\Support\Facades {
/**
* Infer the application's base directory from the environment.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function inferBasePath()
{
@@ -45,8 +43,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the version number of the application.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function version()
{
@@ -58,8 +56,8 @@ namespace Illuminate\Support\Facades {
* Run the given array of bootstrap classes.
*
* @param string[] $bootstrappers
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function bootstrapWith($bootstrappers)
{
@@ -71,8 +69,8 @@ namespace Illuminate\Support\Facades {
* Register a callback to run after loading the environment.
*
* @param \Closure $callback
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function afterLoadingEnvironment($callback)
{
@@ -85,8 +83,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $bootstrapper
* @param \Closure $callback
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function beforeBootstrapping($bootstrapper, $callback)
{
@@ -99,8 +97,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $bootstrapper
* @param \Closure $callback
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function afterBootstrapping($bootstrapper, $callback)
{
@@ -111,8 +109,8 @@ namespace Illuminate\Support\Facades {
/**
* Determine if the application has been bootstrapped before.
*
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function hasBeenBootstrapped()
{
@@ -124,8 +122,8 @@ namespace Illuminate\Support\Facades {
* Set the base path for the application.
*
* @param string $basePath
- * @return \Illuminate\Foundation\Application
- * @static
+ * @return \Illuminate\Foundation\Application
+ * @static
*/
public static function setBasePath($basePath)
{
@@ -137,8 +135,8 @@ namespace Illuminate\Support\Facades {
* Get the path to the application "app" directory.
*
* @param string $path
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function path($path = '')
{
@@ -150,8 +148,8 @@ namespace Illuminate\Support\Facades {
* Set the application directory.
*
* @param string $path
- * @return \Illuminate\Foundation\Application
- * @static
+ * @return \Illuminate\Foundation\Application
+ * @static
*/
public static function useAppPath($path)
{
@@ -163,8 +161,8 @@ namespace Illuminate\Support\Facades {
* Get the base path of the Laravel installation.
*
* @param string $path
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function basePath($path = '')
{
@@ -176,8 +174,8 @@ namespace Illuminate\Support\Facades {
* Get the path to the bootstrap directory.
*
* @param string $path
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function bootstrapPath($path = '')
{
@@ -188,8 +186,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the path to the service provider list in the bootstrap directory.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function getBootstrapProvidersPath()
{
@@ -201,8 +199,8 @@ namespace Illuminate\Support\Facades {
* Set the bootstrap file directory.
*
* @param string $path
- * @return \Illuminate\Foundation\Application
- * @static
+ * @return \Illuminate\Foundation\Application
+ * @static
*/
public static function useBootstrapPath($path)
{
@@ -214,8 +212,8 @@ namespace Illuminate\Support\Facades {
* Get the path to the application configuration files.
*
* @param string $path
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function configPath($path = '')
{
@@ -227,8 +225,8 @@ namespace Illuminate\Support\Facades {
* Set the configuration directory.
*
* @param string $path
- * @return \Illuminate\Foundation\Application
- * @static
+ * @return \Illuminate\Foundation\Application
+ * @static
*/
public static function useConfigPath($path)
{
@@ -240,8 +238,8 @@ namespace Illuminate\Support\Facades {
* Get the path to the database directory.
*
* @param string $path
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function databasePath($path = '')
{
@@ -253,8 +251,8 @@ namespace Illuminate\Support\Facades {
* Set the database directory.
*
* @param string $path
- * @return \Illuminate\Foundation\Application
- * @static
+ * @return \Illuminate\Foundation\Application
+ * @static
*/
public static function useDatabasePath($path)
{
@@ -266,8 +264,8 @@ namespace Illuminate\Support\Facades {
* Get the path to the language files.
*
* @param string $path
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function langPath($path = '')
{
@@ -279,8 +277,8 @@ namespace Illuminate\Support\Facades {
* Set the language file directory.
*
* @param string $path
- * @return \Illuminate\Foundation\Application
- * @static
+ * @return \Illuminate\Foundation\Application
+ * @static
*/
public static function useLangPath($path)
{
@@ -292,8 +290,8 @@ namespace Illuminate\Support\Facades {
* Get the path to the public / web directory.
*
* @param string $path
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function publicPath($path = '')
{
@@ -305,8 +303,8 @@ namespace Illuminate\Support\Facades {
* Set the public / web directory.
*
* @param string $path
- * @return \Illuminate\Foundation\Application
- * @static
+ * @return \Illuminate\Foundation\Application
+ * @static
*/
public static function usePublicPath($path)
{
@@ -318,8 +316,8 @@ namespace Illuminate\Support\Facades {
* Get the path to the storage directory.
*
* @param string $path
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function storagePath($path = '')
{
@@ -331,8 +329,8 @@ namespace Illuminate\Support\Facades {
* Set the storage directory.
*
* @param string $path
- * @return \Illuminate\Foundation\Application
- * @static
+ * @return \Illuminate\Foundation\Application
+ * @static
*/
public static function useStoragePath($path)
{
@@ -344,8 +342,8 @@ namespace Illuminate\Support\Facades {
* Get the path to the resources directory.
*
* @param string $path
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function resourcePath($path = '')
{
@@ -355,12 +353,12 @@ namespace Illuminate\Support\Facades {
/**
* Get the path to the views directory.
- *
+ *
* This method returns the first configured path in the array of view paths.
*
* @param string $path
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function viewPath($path = '')
{
@@ -373,8 +371,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $basePath
* @param string $path
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function joinPaths($basePath, $path = '')
{
@@ -385,8 +383,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the path to the environment file directory.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function environmentPath()
{
@@ -398,8 +396,8 @@ namespace Illuminate\Support\Facades {
* Set the directory for the environment file.
*
* @param string $path
- * @return \Illuminate\Foundation\Application
- * @static
+ * @return \Illuminate\Foundation\Application
+ * @static
*/
public static function useEnvironmentPath($path)
{
@@ -411,8 +409,8 @@ namespace Illuminate\Support\Facades {
* Set the environment file to be loaded during bootstrapping.
*
* @param string $file
- * @return \Illuminate\Foundation\Application
- * @static
+ * @return \Illuminate\Foundation\Application
+ * @static
*/
public static function loadEnvironmentFrom($file)
{
@@ -423,8 +421,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the environment file the application is using.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function environmentFile()
{
@@ -435,8 +433,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the fully qualified path to the environment file.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function environmentFilePath()
{
@@ -448,8 +446,8 @@ namespace Illuminate\Support\Facades {
* Get or check the current application environment.
*
* @param string|array $environments
- * @return string|bool
- * @static
+ * @return string|bool
+ * @static
*/
public static function environment(...$environments)
{
@@ -460,8 +458,8 @@ namespace Illuminate\Support\Facades {
/**
* Determine if the application is in the local environment.
*
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function isLocal()
{
@@ -472,8 +470,8 @@ namespace Illuminate\Support\Facades {
/**
* Determine if the application is in the production environment.
*
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function isProduction()
{
@@ -485,8 +483,8 @@ namespace Illuminate\Support\Facades {
* Detect the application's current environment.
*
* @param \Closure $callback
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function detectEnvironment($callback)
{
@@ -497,8 +495,8 @@ namespace Illuminate\Support\Facades {
/**
* Determine if the application is running in the console.
*
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function runningInConsole()
{
@@ -510,8 +508,8 @@ namespace Illuminate\Support\Facades {
* Determine if the application is running any of the given console commands.
*
* @param string|array $commands
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function runningConsoleCommand(...$commands)
{
@@ -522,8 +520,8 @@ namespace Illuminate\Support\Facades {
/**
* Determine if the application is running unit tests.
*
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function runningUnitTests()
{
@@ -534,8 +532,8 @@ namespace Illuminate\Support\Facades {
/**
* Determine if the application is running with debug mode enabled.
*
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function hasDebugModeEnabled()
{
@@ -547,8 +545,8 @@ namespace Illuminate\Support\Facades {
* Register a new registered listener.
*
* @param callable $callback
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function registered($callback)
{
@@ -559,8 +557,8 @@ namespace Illuminate\Support\Facades {
/**
* Register all of the configured providers.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function registerConfiguredProviders()
{
@@ -573,8 +571,8 @@ namespace Illuminate\Support\Facades {
*
* @param \Illuminate\Support\ServiceProvider|string $provider
* @param bool $force
- * @return \Illuminate\Support\ServiceProvider
- * @static
+ * @return \Illuminate\Support\ServiceProvider
+ * @static
*/
public static function register($provider, $force = false)
{
@@ -586,8 +584,8 @@ namespace Illuminate\Support\Facades {
* Get the registered service provider instance if it exists.
*
* @param \Illuminate\Support\ServiceProvider|string $provider
- * @return \Illuminate\Support\ServiceProvider|null
- * @static
+ * @return \Illuminate\Support\ServiceProvider|null
+ * @static
*/
public static function getProvider($provider)
{
@@ -599,8 +597,8 @@ namespace Illuminate\Support\Facades {
* Get the registered service provider instances if any exist.
*
* @param \Illuminate\Support\ServiceProvider|string $provider
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function getProviders($provider)
{
@@ -612,8 +610,8 @@ namespace Illuminate\Support\Facades {
* Resolve a service provider instance from the class name.
*
* @param string $provider
- * @return \Illuminate\Support\ServiceProvider
- * @static
+ * @return \Illuminate\Support\ServiceProvider
+ * @static
*/
public static function resolveProvider($provider)
{
@@ -624,8 +622,8 @@ namespace Illuminate\Support\Facades {
/**
* Load and boot all of the remaining deferred providers.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function loadDeferredProviders()
{
@@ -637,8 +635,8 @@ namespace Illuminate\Support\Facades {
* Load the provider for a deferred service.
*
* @param string $service
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function loadDeferredProvider($service)
{
@@ -651,8 +649,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $provider
* @param string|null $service
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function registerDeferredProvider($provider, $service = null)
{
@@ -668,7 +666,7 @@ namespace Illuminate\Support\Facades {
* @param array $parameters
* @return ($abstract is class-string ? TClass : mixed)
* @throws \Illuminate\Contracts\Container\BindingResolutionException
- * @static
+ * @static
*/
public static function make($abstract, $parameters = [])
{
@@ -680,8 +678,8 @@ namespace Illuminate\Support\Facades {
* Determine if the given abstract type has been bound.
*
* @param string $abstract
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function bound($abstract)
{
@@ -692,8 +690,8 @@ namespace Illuminate\Support\Facades {
/**
* Determine if the application has booted.
*
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function isBooted()
{
@@ -704,8 +702,8 @@ namespace Illuminate\Support\Facades {
/**
* Boot the application's service providers.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function boot()
{
@@ -717,8 +715,8 @@ namespace Illuminate\Support\Facades {
* Register a new boot listener.
*
* @param callable $callback
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function booting($callback)
{
@@ -730,8 +728,8 @@ namespace Illuminate\Support\Facades {
* Register a new "booted" listener.
*
* @param callable $callback
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function booted($callback)
{
@@ -742,8 +740,8 @@ namespace Illuminate\Support\Facades {
/**
* {@inheritdoc}
*
- * @return \Symfony\Component\HttpFoundation\Response
- * @static
+ * @return \Symfony\Component\HttpFoundation\Response
+ * @static
*/
public static function handle($request, $type = 1, $catch = true)
{
@@ -755,8 +753,8 @@ namespace Illuminate\Support\Facades {
* Handle the incoming HTTP request and send the response to the browser.
*
* @param \Illuminate\Http\Request $request
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function handleRequest($request)
{
@@ -768,8 +766,8 @@ namespace Illuminate\Support\Facades {
* Handle the incoming Artisan command.
*
* @param \Symfony\Component\Console\Input\InputInterface $input
- * @return int
- * @static
+ * @return int
+ * @static
*/
public static function handleCommand($input)
{
@@ -780,8 +778,8 @@ namespace Illuminate\Support\Facades {
/**
* Determine if the framework's base configuration should be merged.
*
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function shouldMergeFrameworkConfiguration()
{
@@ -792,8 +790,8 @@ namespace Illuminate\Support\Facades {
/**
* Indicate that the framework's base configuration should not be merged.
*
- * @return \Illuminate\Foundation\Application
- * @static
+ * @return \Illuminate\Foundation\Application
+ * @static
*/
public static function dontMergeFrameworkConfiguration()
{
@@ -804,8 +802,8 @@ namespace Illuminate\Support\Facades {
/**
* Determine if middleware has been disabled for the application.
*
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function shouldSkipMiddleware()
{
@@ -816,8 +814,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the path to the cached services.php file.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function getCachedServicesPath()
{
@@ -828,8 +826,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the path to the cached packages.php file.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function getCachedPackagesPath()
{
@@ -840,8 +838,8 @@ namespace Illuminate\Support\Facades {
/**
* Determine if the application configuration is cached.
*
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function configurationIsCached()
{
@@ -852,8 +850,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the path to the configuration cache file.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function getCachedConfigPath()
{
@@ -864,8 +862,8 @@ namespace Illuminate\Support\Facades {
/**
* Determine if the application routes are cached.
*
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function routesAreCached()
{
@@ -876,8 +874,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the path to the routes cache file.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function getCachedRoutesPath()
{
@@ -888,8 +886,8 @@ namespace Illuminate\Support\Facades {
/**
* Determine if the application events are cached.
*
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function eventsAreCached()
{
@@ -900,8 +898,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the path to the events cache file.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function getCachedEventsPath()
{
@@ -913,8 +911,8 @@ namespace Illuminate\Support\Facades {
* Add new prefix to list of absolute path prefixes.
*
* @param string $prefix
- * @return \Illuminate\Foundation\Application
- * @static
+ * @return \Illuminate\Foundation\Application
+ * @static
*/
public static function addAbsoluteCachePathPrefix($prefix)
{
@@ -925,8 +923,8 @@ namespace Illuminate\Support\Facades {
/**
* Get an instance of the maintenance mode manager implementation.
*
- * @return \Illuminate\Contracts\Foundation\MaintenanceMode
- * @static
+ * @return \Illuminate\Contracts\Foundation\MaintenanceMode
+ * @static
*/
public static function maintenanceMode()
{
@@ -937,8 +935,8 @@ namespace Illuminate\Support\Facades {
/**
* Determine if the application is currently down for maintenance.
*
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function isDownForMaintenance()
{
@@ -952,10 +950,10 @@ namespace Illuminate\Support\Facades {
* @param int $code
* @param string $message
* @param array $headers
- * @return never
+ * @return never
* @throws \Symfony\Component\HttpKernel\Exception\HttpException
* @throws \Symfony\Component\HttpKernel\Exception\NotFoundHttpException
- * @static
+ * @static
*/
public static function abort($code, $message = '', $headers = [])
{
@@ -967,8 +965,8 @@ namespace Illuminate\Support\Facades {
* Register a terminating callback with the application.
*
* @param callable|string $callback
- * @return \Illuminate\Foundation\Application
- * @static
+ * @return \Illuminate\Foundation\Application
+ * @static
*/
public static function terminating($callback)
{
@@ -979,8 +977,8 @@ namespace Illuminate\Support\Facades {
/**
* Terminate the application.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function terminate()
{
@@ -991,8 +989,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the service providers that have been loaded.
*
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function getLoadedProviders()
{
@@ -1004,8 +1002,8 @@ namespace Illuminate\Support\Facades {
* Determine if the given service provider is loaded.
*
* @param string $provider
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function providerIsLoaded($provider)
{
@@ -1016,8 +1014,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the application's deferred services.
*
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function getDeferredServices()
{
@@ -1029,8 +1027,8 @@ namespace Illuminate\Support\Facades {
* Set the application's deferred services.
*
* @param array $services
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function setDeferredServices($services)
{
@@ -1042,8 +1040,8 @@ namespace Illuminate\Support\Facades {
* Determine if the given service is a deferred service.
*
* @param string $service
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function isDeferredService($service)
{
@@ -1055,8 +1053,8 @@ namespace Illuminate\Support\Facades {
* Add an array of services to the application's deferred services.
*
* @param array $services
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function addDeferredServices($services)
{
@@ -1068,8 +1066,8 @@ namespace Illuminate\Support\Facades {
* Remove an array of services from the application's deferred services.
*
* @param array $services
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function removeDeferredServices($services)
{
@@ -1081,8 +1079,8 @@ namespace Illuminate\Support\Facades {
* Configure the real-time facade namespace.
*
* @param string $namespace
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function provideFacades($namespace)
{
@@ -1093,8 +1091,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the current application locale.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function getLocale()
{
@@ -1105,8 +1103,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the current application locale.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function currentLocale()
{
@@ -1117,8 +1115,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the current application fallback locale.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function getFallbackLocale()
{
@@ -1130,8 +1128,8 @@ namespace Illuminate\Support\Facades {
* Set the current application locale.
*
* @param string $locale
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function setLocale($locale)
{
@@ -1143,8 +1141,8 @@ namespace Illuminate\Support\Facades {
* Set the current application fallback locale.
*
* @param string $fallbackLocale
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function setFallbackLocale($fallbackLocale)
{
@@ -1156,8 +1154,8 @@ namespace Illuminate\Support\Facades {
* Determine if the application locale is the given locale.
*
* @param string $locale
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function isLocale($locale)
{
@@ -1168,8 +1166,8 @@ namespace Illuminate\Support\Facades {
/**
* Register the core class aliases in the container.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function registerCoreContainerAliases()
{
@@ -1180,8 +1178,8 @@ namespace Illuminate\Support\Facades {
/**
* Flush the container of all bindings and resolved instances.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function flush()
{
@@ -1192,9 +1190,9 @@ namespace Illuminate\Support\Facades {
/**
* Get the application namespace.
*
- * @return string
+ * @return string
* @throws \RuntimeException
- * @static
+ * @static
*/
public static function getNamespace()
{
@@ -1206,8 +1204,8 @@ namespace Illuminate\Support\Facades {
* Define a contextual binding.
*
* @param array|string $concrete
- * @return \Illuminate\Contracts\Container\ContextualBindingBuilder
- * @static
+ * @return \Illuminate\Contracts\Container\ContextualBindingBuilder
+ * @static
*/
public static function when($concrete)
{
@@ -1221,8 +1219,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $attribute
* @param \Closure $handler
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function whenHasAttribute($attribute, $handler)
{
@@ -1233,16 +1231,16 @@ namespace Illuminate\Support\Facades {
/**
* Returns true if the container can return an entry for the given identifier.
- *
+ *
* Returns false otherwise.
- *
+ *
* `has($id)` returning true does not mean that `get($id)` will not throw an exception.
* It does however mean that `get($id)` will not throw a `NotFoundExceptionInterface`.
*
- * @return bool
+ * @return bool
* @param string $id Identifier of the entry to look for.
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function has($id)
{
@@ -1255,8 +1253,8 @@ namespace Illuminate\Support\Facades {
* Determine if the given abstract type has been resolved.
*
* @param string $abstract
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function resolved($abstract)
{
@@ -1269,8 +1267,8 @@ namespace Illuminate\Support\Facades {
* Determine if a given type is shared.
*
* @param string $abstract
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function isShared($abstract)
{
@@ -1283,8 +1281,8 @@ namespace Illuminate\Support\Facades {
* Determine if a given string is an alias.
*
* @param string $name
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function isAlias($name)
{
@@ -1299,9 +1297,9 @@ namespace Illuminate\Support\Facades {
* @param string $abstract
* @param \Closure|string|null $concrete
* @param bool $shared
- * @return void
+ * @return void
* @throws \TypeError
- * @static
+ * @static
*/
public static function bind($abstract, $concrete = null, $shared = false)
{
@@ -1314,8 +1312,8 @@ namespace Illuminate\Support\Facades {
* Determine if the container has a method binding.
*
* @param string $method
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function hasMethodBinding($method)
{
@@ -1329,8 +1327,8 @@ namespace Illuminate\Support\Facades {
*
* @param array|string $method
* @param \Closure $callback
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function bindMethod($method, $callback)
{
@@ -1344,8 +1342,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $method
* @param mixed $instance
- * @return mixed
- * @static
+ * @return mixed
+ * @static
*/
public static function callMethodBinding($method, $instance)
{
@@ -1360,8 +1358,8 @@ namespace Illuminate\Support\Facades {
* @param string $concrete
* @param string $abstract
* @param \Closure|string $implementation
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function addContextualBinding($concrete, $abstract, $implementation)
{
@@ -1376,8 +1374,8 @@ namespace Illuminate\Support\Facades {
* @param string $abstract
* @param \Closure|string|null $concrete
* @param bool $shared
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function bindIf($abstract, $concrete = null, $shared = false)
{
@@ -1391,8 +1389,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $abstract
* @param \Closure|string|null $concrete
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function singleton($abstract, $concrete = null)
{
@@ -1406,8 +1404,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $abstract
* @param \Closure|string|null $concrete
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function singletonIf($abstract, $concrete = null)
{
@@ -1421,8 +1419,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $abstract
* @param \Closure|string|null $concrete
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function scoped($abstract, $concrete = null)
{
@@ -1436,8 +1434,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $abstract
* @param \Closure|string|null $concrete
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function scopedIf($abstract, $concrete = null)
{
@@ -1451,9 +1449,9 @@ namespace Illuminate\Support\Facades {
*
* @param string $abstract
* @param \Closure $closure
- * @return void
+ * @return void
* @throws \InvalidArgumentException
- * @static
+ * @static
*/
public static function extend($abstract, $closure)
{
@@ -1468,8 +1466,8 @@ namespace Illuminate\Support\Facades {
* @template TInstance of mixed
* @param string $abstract
* @param TInstance $instance
- * @return TInstance
- * @static
+ * @return TInstance
+ * @static
*/
public static function instance($abstract, $instance)
{
@@ -1483,8 +1481,8 @@ namespace Illuminate\Support\Facades {
*
* @param array|string $abstracts
* @param array|mixed $tags
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function tag($abstracts, $tags)
{
@@ -1497,8 +1495,8 @@ namespace Illuminate\Support\Facades {
* Resolve all of the bindings for a given tag.
*
* @param string $tag
- * @return iterable
- * @static
+ * @return iterable
+ * @static
*/
public static function tagged($tag)
{
@@ -1512,9 +1510,9 @@ namespace Illuminate\Support\Facades {
*
* @param string $abstract
* @param string $alias
- * @return void
+ * @return void
* @throws \LogicException
- * @static
+ * @static
*/
public static function alias($abstract, $alias)
{
@@ -1528,8 +1526,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $abstract
* @param \Closure $callback
- * @return mixed
- * @static
+ * @return mixed
+ * @static
*/
public static function rebinding($abstract, $callback)
{
@@ -1544,8 +1542,8 @@ namespace Illuminate\Support\Facades {
* @param string $abstract
* @param mixed $target
* @param string $method
- * @return mixed
- * @static
+ * @return mixed
+ * @static
*/
public static function refresh($abstract, $target, $method)
{
@@ -1559,8 +1557,8 @@ namespace Illuminate\Support\Facades {
*
* @param \Closure $callback
* @param array $parameters
- * @return \Closure
- * @static
+ * @return \Closure
+ * @static
*/
public static function wrap($callback, $parameters = [])
{
@@ -1575,9 +1573,9 @@ namespace Illuminate\Support\Facades {
* @param callable|string $callback
* @param array $parameters
* @param string|null $defaultMethod
- * @return mixed
+ * @return mixed
* @throws \InvalidArgumentException
- * @static
+ * @static
*/
public static function call($callback, $parameters = [], $defaultMethod = null)
{
@@ -1592,7 +1590,7 @@ namespace Illuminate\Support\Facades {
* @template TClass of object
* @param string|class-string $abstract
* @return ($abstract is class-string ? \Closure(): TClass : \Closure(): mixed)
- * @static
+ * @static
*/
public static function factory($abstract)
{
@@ -1609,7 +1607,7 @@ namespace Illuminate\Support\Facades {
* @param array $parameters
* @return ($abstract is class-string ? TClass : mixed)
* @throws \Illuminate\Contracts\Container\BindingResolutionException
- * @static
+ * @static
*/
public static function makeWith($abstract, $parameters = [])
{
@@ -1619,16 +1617,12 @@ namespace Illuminate\Support\Facades {
}
/**
- * Finds an entry of the container by its identifier and returns it.
+ * {@inheritdoc}
*
* @template TClass of object
* @param string|class-string $id
* @return ($id is class-string ? TClass : mixed)
- * @param string $id Identifier of the entry to look for.
- * @throws NotFoundExceptionInterface No entry was found for **this** identifier.
- * @throws ContainerExceptionInterface Error while retrieving the entry.
- * @return mixed Entry.
- * @static
+ * @static
*/
public static function get($id)
{
@@ -1642,10 +1636,10 @@ namespace Illuminate\Support\Facades {
*
* @template TClass of object
* @param \Closure(static, array): TClass|class-string $concrete
- * @return TClass
+ * @return TClass
* @throws \Illuminate\Contracts\Container\BindingResolutionException
* @throws \Illuminate\Contracts\Container\CircularDependencyException
- * @static
+ * @static
*/
public static function build($concrete)
{
@@ -1658,8 +1652,8 @@ namespace Illuminate\Support\Facades {
* Resolve a dependency based on an attribute.
*
* @param \ReflectionAttribute $attribute
- * @return mixed
- * @static
+ * @return mixed
+ * @static
*/
public static function resolveFromAttribute($attribute)
{
@@ -1673,8 +1667,8 @@ namespace Illuminate\Support\Facades {
*
* @param \Closure|string $abstract
* @param \Closure|null $callback
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function beforeResolving($abstract, $callback = null)
{
@@ -1688,8 +1682,8 @@ namespace Illuminate\Support\Facades {
*
* @param \Closure|string $abstract
* @param \Closure|null $callback
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function resolving($abstract, $callback = null)
{
@@ -1703,8 +1697,8 @@ namespace Illuminate\Support\Facades {
*
* @param \Closure|string $abstract
* @param \Closure|null $callback
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function afterResolving($abstract, $callback = null)
{
@@ -1718,8 +1712,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $attribute
* @param \Closure $callback
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function afterResolvingAttribute($attribute, $callback)
{
@@ -1733,8 +1727,8 @@ namespace Illuminate\Support\Facades {
*
* @param \ReflectionAttribute[] $attributes
* @param mixed $object
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function fireAfterResolvingAttributeCallbacks($attributes, $object)
{
@@ -1746,8 +1740,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the container's bindings.
*
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function getBindings()
{
@@ -1760,8 +1754,8 @@ namespace Illuminate\Support\Facades {
* Get the alias for an abstract if available.
*
* @param string $abstract
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function getAlias($abstract)
{
@@ -1774,8 +1768,8 @@ namespace Illuminate\Support\Facades {
* Remove all of the extender callbacks for a given type.
*
* @param string $abstract
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function forgetExtenders($abstract)
{
@@ -1788,8 +1782,8 @@ namespace Illuminate\Support\Facades {
* Remove a resolved instance from the instance cache.
*
* @param string $abstract
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function forgetInstance($abstract)
{
@@ -1801,8 +1795,8 @@ namespace Illuminate\Support\Facades {
/**
* Clear all of the instances from the container.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function forgetInstances()
{
@@ -1814,8 +1808,8 @@ namespace Illuminate\Support\Facades {
/**
* Clear all of the scoped instances from the container.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function forgetScopedInstances()
{
@@ -1827,8 +1821,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the globally available instance of the container.
*
- * @return static
- * @static
+ * @return static
+ * @static
*/
public static function getInstance()
{
@@ -1840,8 +1834,8 @@ namespace Illuminate\Support\Facades {
* Set the shared instance of the container.
*
* @param \Illuminate\Contracts\Container\Container|null $container
- * @return \Illuminate\Contracts\Container\Container|static
- * @static
+ * @return \Illuminate\Contracts\Container\Container|static
+ * @static
*/
public static function setInstance($container = null)
{
@@ -1853,8 +1847,8 @@ namespace Illuminate\Support\Facades {
* Determine if a given offset exists.
*
* @param string $key
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function offsetExists($key)
{
@@ -1867,8 +1861,8 @@ namespace Illuminate\Support\Facades {
* Get the value at a given offset.
*
* @param string $key
- * @return mixed
- * @static
+ * @return mixed
+ * @static
*/
public static function offsetGet($key)
{
@@ -1882,8 +1876,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $key
* @param mixed $value
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function offsetSet($key, $value)
{
@@ -1896,8 +1890,8 @@ namespace Illuminate\Support\Facades {
* Unset the value at a given offset.
*
* @param string $key
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function offsetUnset($key)
{
@@ -1912,8 +1906,8 @@ namespace Illuminate\Support\Facades {
* @param string $name
* @param object|callable $macro
* @param-closure-this static $macro
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function macro($name, $macro)
{
@@ -1925,9 +1919,9 @@ namespace Illuminate\Support\Facades {
*
* @param object $mixin
* @param bool $replace
- * @return void
+ * @return void
* @throws \ReflectionException
- * @static
+ * @static
*/
public static function mixin($mixin, $replace = true)
{
@@ -1938,8 +1932,8 @@ namespace Illuminate\Support\Facades {
* Checks if macro is registered.
*
* @param string $name
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function hasMacro($name)
{
@@ -1949,8 +1943,8 @@ namespace Illuminate\Support\Facades {
/**
* Flush the existing macros.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function flushMacros()
{
@@ -1959,17 +1953,15 @@ namespace Illuminate\Support\Facades {
}
/**
- *
- *
* @see \Illuminate\Foundation\Console\Kernel
*/
class Artisan {
/**
* Re-route the Symfony command events to their Laravel counterparts.
*
- * @internal
- * @return \App\Console\Kernel
- * @static
+ * @internal
+ * @return \App\Console\Kernel
+ * @static
*/
public static function rerouteSymfonyCommandEvents()
{
@@ -1983,8 +1975,8 @@ namespace Illuminate\Support\Facades {
*
* @param \Symfony\Component\Console\Input\InputInterface $input
* @param \Symfony\Component\Console\Output\OutputInterface|null $output
- * @return int
- * @static
+ * @return int
+ * @static
*/
public static function handle($input, $output = null)
{
@@ -1998,8 +1990,8 @@ namespace Illuminate\Support\Facades {
*
* @param \Symfony\Component\Console\Input\InputInterface $input
* @param int $status
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function terminate($input, $status)
{
@@ -2013,8 +2005,8 @@ namespace Illuminate\Support\Facades {
*
* @param \DateTimeInterface|\Carbon\CarbonInterval|float|int $threshold
* @param callable $handler
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function whenCommandLifecycleIsLongerThan($threshold, $handler)
{
@@ -2026,8 +2018,8 @@ namespace Illuminate\Support\Facades {
/**
* When the command being handled started.
*
- * @return \Illuminate\Support\Carbon|null
- * @static
+ * @return \Illuminate\Support\Carbon|null
+ * @static
*/
public static function commandStartedAt()
{
@@ -2039,8 +2031,8 @@ namespace Illuminate\Support\Facades {
/**
* Resolve a console schedule instance.
*
- * @return \Illuminate\Console\Scheduling\Schedule
- * @static
+ * @return \Illuminate\Console\Scheduling\Schedule
+ * @static
*/
public static function resolveConsoleSchedule()
{
@@ -2054,8 +2046,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $signature
* @param \Closure $callback
- * @return \Illuminate\Foundation\Console\ClosureCommand
- * @static
+ * @return \Illuminate\Foundation\Console\ClosureCommand
+ * @static
*/
public static function command($signature, $callback)
{
@@ -2068,8 +2060,8 @@ namespace Illuminate\Support\Facades {
* Register the given command with the console application.
*
* @param \Symfony\Component\Console\Command\Command $command
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function registerCommand($command)
{
@@ -2084,9 +2076,9 @@ namespace Illuminate\Support\Facades {
* @param string $command
* @param array $parameters
* @param \Symfony\Component\Console\Output\OutputInterface|null $outputBuffer
- * @return int
+ * @return int
* @throws \Symfony\Component\Console\Exception\CommandNotFoundException
- * @static
+ * @static
*/
public static function call($command, $parameters = [], $outputBuffer = null)
{
@@ -2100,8 +2092,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $command
* @param array $parameters
- * @return \Illuminate\Foundation\Bus\PendingDispatch
- * @static
+ * @return \Illuminate\Foundation\Bus\PendingDispatch
+ * @static
*/
public static function queue($command, $parameters = [])
{
@@ -2113,8 +2105,8 @@ namespace Illuminate\Support\Facades {
/**
* Get all of the commands registered with the console.
*
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function all()
{
@@ -2126,8 +2118,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the output for the last run command.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function output()
{
@@ -2139,8 +2131,8 @@ namespace Illuminate\Support\Facades {
/**
* Bootstrap the application for artisan commands.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function bootstrap()
{
@@ -2152,8 +2144,8 @@ namespace Illuminate\Support\Facades {
/**
* Bootstrap the application without booting service providers.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function bootstrapWithoutBootingProviders()
{
@@ -2166,8 +2158,8 @@ namespace Illuminate\Support\Facades {
* Set the Artisan application instance.
*
* @param \Illuminate\Console\Application|null $artisan
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function setArtisan($artisan)
{
@@ -2180,8 +2172,8 @@ namespace Illuminate\Support\Facades {
* Set the Artisan commands provided by the application.
*
* @param array $commands
- * @return \App\Console\Kernel
- * @static
+ * @return \App\Console\Kernel
+ * @static
*/
public static function addCommands($commands)
{
@@ -2194,8 +2186,8 @@ namespace Illuminate\Support\Facades {
* Set the paths that should have their Artisan commands automatically discovered.
*
* @param array $paths
- * @return \App\Console\Kernel
- * @static
+ * @return \App\Console\Kernel
+ * @static
*/
public static function addCommandPaths($paths)
{
@@ -2208,8 +2200,8 @@ namespace Illuminate\Support\Facades {
* Set the paths that should have their Artisan "routes" automatically discovered.
*
* @param array $paths
- * @return \App\Console\Kernel
- * @static
+ * @return \App\Console\Kernel
+ * @static
*/
public static function addCommandRoutePaths($paths)
{
@@ -2220,8 +2212,6 @@ namespace Illuminate\Support\Facades {
}
/**
- *
- *
* @see \Illuminate\Auth\AuthManager
* @see \Illuminate\Auth\SessionGuard
*/
@@ -2230,8 +2220,8 @@ namespace Illuminate\Support\Facades {
* Attempt to get the guard from the local cache.
*
* @param string|null $name
- * @return \Illuminate\Contracts\Auth\Guard|\Illuminate\Contracts\Auth\StatefulGuard
- * @static
+ * @return \Illuminate\Contracts\Auth\Guard|\Illuminate\Contracts\Auth\StatefulGuard
+ * @static
*/
public static function guard($name = null)
{
@@ -2244,8 +2234,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $name
* @param array $config
- * @return \Illuminate\Auth\SessionGuard
- * @static
+ * @return \Illuminate\Auth\SessionGuard
+ * @static
*/
public static function createSessionDriver($name, $config)
{
@@ -2258,8 +2248,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $name
* @param array $config
- * @return \Illuminate\Auth\TokenGuard
- * @static
+ * @return \Illuminate\Auth\TokenGuard
+ * @static
*/
public static function createTokenDriver($name, $config)
{
@@ -2270,8 +2260,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the default authentication driver name.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function getDefaultDriver()
{
@@ -2283,8 +2273,8 @@ namespace Illuminate\Support\Facades {
* Set the default guard driver the factory should serve.
*
* @param string $name
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function shouldUse($name)
{
@@ -2296,8 +2286,8 @@ namespace Illuminate\Support\Facades {
* Set the default authentication driver name.
*
* @param string $name
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function setDefaultDriver($name)
{
@@ -2310,8 +2300,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $driver
* @param callable $callback
- * @return \Illuminate\Auth\AuthManager
- * @static
+ * @return \Illuminate\Auth\AuthManager
+ * @static
*/
public static function viaRequest($driver, $callback)
{
@@ -2322,8 +2312,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the user resolver callback.
*
- * @return \Closure
- * @static
+ * @return \Closure
+ * @static
*/
public static function userResolver()
{
@@ -2335,8 +2325,8 @@ namespace Illuminate\Support\Facades {
* Set the callback to be used to resolve users.
*
* @param \Closure $userResolver
- * @return \Illuminate\Auth\AuthManager
- * @static
+ * @return \Illuminate\Auth\AuthManager
+ * @static
*/
public static function resolveUsersUsing($userResolver)
{
@@ -2349,8 +2339,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $driver
* @param \Closure $callback
- * @return \Illuminate\Auth\AuthManager
- * @static
+ * @return \Illuminate\Auth\AuthManager
+ * @static
*/
public static function extend($driver, $callback)
{
@@ -2363,8 +2353,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $name
* @param \Closure $callback
- * @return \Illuminate\Auth\AuthManager
- * @static
+ * @return \Illuminate\Auth\AuthManager
+ * @static
*/
public static function provider($name, $callback)
{
@@ -2375,8 +2365,8 @@ namespace Illuminate\Support\Facades {
/**
* Determines if any guards have already been resolved.
*
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function hasResolvedGuards()
{
@@ -2387,8 +2377,8 @@ namespace Illuminate\Support\Facades {
/**
* Forget all of the resolved guard instances.
*
- * @return \Illuminate\Auth\AuthManager
- * @static
+ * @return \Illuminate\Auth\AuthManager
+ * @static
*/
public static function forgetGuards()
{
@@ -2400,8 +2390,8 @@ namespace Illuminate\Support\Facades {
* Set the application instance used by the manager.
*
* @param \Illuminate\Contracts\Foundation\Application $app
- * @return \Illuminate\Auth\AuthManager
- * @static
+ * @return \Illuminate\Auth\AuthManager
+ * @static
*/
public static function setApplication($app)
{
@@ -2413,9 +2403,9 @@ namespace Illuminate\Support\Facades {
* Create the user provider implementation for the driver.
*
* @param string|null $provider
- * @return \Illuminate\Contracts\Auth\UserProvider|null
+ * @return \Illuminate\Contracts\Auth\UserProvider|null
* @throws \InvalidArgumentException
- * @static
+ * @static
*/
public static function createUserProvider($provider = null)
{
@@ -2426,8 +2416,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the default user provider name.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function getDefaultUserProvider()
{
@@ -2438,8 +2428,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the currently authenticated user.
*
- * @return \App\User|null
- * @static
+ * @return \App\User|null
+ * @static
*/
public static function user()
{
@@ -2450,8 +2440,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the ID for the currently authenticated user.
*
- * @return int|string|null
- * @static
+ * @return int|string|null
+ * @static
*/
public static function id()
{
@@ -2463,8 +2453,8 @@ namespace Illuminate\Support\Facades {
* Log a user into the application without sessions or cookies.
*
* @param array $credentials
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function once($credentials = [])
{
@@ -2476,8 +2466,8 @@ namespace Illuminate\Support\Facades {
* Log the given user ID into the application without sessions or cookies.
*
* @param mixed $id
- * @return \App\User|false
- * @static
+ * @return \App\User|false
+ * @static
*/
public static function onceUsingId($id)
{
@@ -2489,8 +2479,8 @@ namespace Illuminate\Support\Facades {
* Validate a user's credentials.
*
* @param array $credentials
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function validate($credentials = [])
{
@@ -2503,9 +2493,9 @@ namespace Illuminate\Support\Facades {
*
* @param string $field
* @param array $extraConditions
- * @return \Symfony\Component\HttpFoundation\Response|null
+ * @return \Symfony\Component\HttpFoundation\Response|null
* @throws \Symfony\Component\HttpKernel\Exception\UnauthorizedHttpException
- * @static
+ * @static
*/
public static function basic($field = 'email', $extraConditions = [])
{
@@ -2518,9 +2508,9 @@ namespace Illuminate\Support\Facades {
*
* @param string $field
* @param array $extraConditions
- * @return \Symfony\Component\HttpFoundation\Response|null
+ * @return \Symfony\Component\HttpFoundation\Response|null
* @throws \Symfony\Component\HttpKernel\Exception\UnauthorizedHttpException
- * @static
+ * @static
*/
public static function onceBasic($field = 'email', $extraConditions = [])
{
@@ -2533,8 +2523,8 @@ namespace Illuminate\Support\Facades {
*
* @param array $credentials
* @param bool $remember
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function attempt($credentials = [], $remember = false)
{
@@ -2548,8 +2538,8 @@ namespace Illuminate\Support\Facades {
* @param array $credentials
* @param array|callable|null $callbacks
* @param bool $remember
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function attemptWhen($credentials = [], $callbacks = null, $remember = false)
{
@@ -2562,8 +2552,8 @@ namespace Illuminate\Support\Facades {
*
* @param mixed $id
* @param bool $remember
- * @return \App\User|false
- * @static
+ * @return \App\User|false
+ * @static
*/
public static function loginUsingId($id, $remember = false)
{
@@ -2576,8 +2566,8 @@ namespace Illuminate\Support\Facades {
*
* @param \Illuminate\Contracts\Auth\Authenticatable $user
* @param bool $remember
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function login($user, $remember = false)
{
@@ -2588,8 +2578,8 @@ namespace Illuminate\Support\Facades {
/**
* Log the user out of the application.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function logout()
{
@@ -2599,11 +2589,11 @@ namespace Illuminate\Support\Facades {
/**
* Log the user out of the application on their current device only.
- *
+ *
* This method does not cycle the "remember" token.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function logoutCurrentDevice()
{
@@ -2613,13 +2603,13 @@ namespace Illuminate\Support\Facades {
/**
* Invalidate other sessions for the current user.
- *
+ *
* The application must be using the AuthenticateSession middleware.
*
* @param string $password
- * @return \App\User|null
+ * @return \App\User|null
* @throws \Illuminate\Auth\AuthenticationException
- * @static
+ * @static
*/
public static function logoutOtherDevices($password)
{
@@ -2631,8 +2621,8 @@ namespace Illuminate\Support\Facades {
* Register an authentication attempt event listener.
*
* @param mixed $callback
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function attempting($callback)
{
@@ -2643,8 +2633,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the last user we attempted to authenticate.
*
- * @return \App\User
- * @static
+ * @return \App\User
+ * @static
*/
public static function getLastAttempted()
{
@@ -2655,8 +2645,8 @@ namespace Illuminate\Support\Facades {
/**
* Get a unique identifier for the auth session value.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function getName()
{
@@ -2667,8 +2657,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the name of the cookie used to store the "recaller".
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function getRecallerName()
{
@@ -2679,8 +2669,8 @@ namespace Illuminate\Support\Facades {
/**
* Determine if the user was authenticated via "remember me" cookie.
*
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function viaRemember()
{
@@ -2692,8 +2682,8 @@ namespace Illuminate\Support\Facades {
* Set the number of minutes the remember me cookie should be valid for.
*
* @param int $minutes
- * @return \Illuminate\Auth\SessionGuard
- * @static
+ * @return \Illuminate\Auth\SessionGuard
+ * @static
*/
public static function setRememberDuration($minutes)
{
@@ -2704,9 +2694,9 @@ namespace Illuminate\Support\Facades {
/**
* Get the cookie creator instance used by the guard.
*
- * @return \Illuminate\Contracts\Cookie\QueueingFactory
+ * @return \Illuminate\Contracts\Cookie\QueueingFactory
* @throws \RuntimeException
- * @static
+ * @static
*/
public static function getCookieJar()
{
@@ -2718,8 +2708,8 @@ namespace Illuminate\Support\Facades {
* Set the cookie creator instance used by the guard.
*
* @param \Illuminate\Contracts\Cookie\QueueingFactory $cookie
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function setCookieJar($cookie)
{
@@ -2730,8 +2720,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the event dispatcher instance.
*
- * @return \Illuminate\Contracts\Events\Dispatcher
- * @static
+ * @return \Illuminate\Contracts\Events\Dispatcher
+ * @static
*/
public static function getDispatcher()
{
@@ -2743,8 +2733,8 @@ namespace Illuminate\Support\Facades {
* Set the event dispatcher instance.
*
* @param \Illuminate\Contracts\Events\Dispatcher $events
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function setDispatcher($events)
{
@@ -2755,8 +2745,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the session store used by the guard.
*
- * @return \Illuminate\Contracts\Session\Session
- * @static
+ * @return \Illuminate\Contracts\Session\Session
+ * @static
*/
public static function getSession()
{
@@ -2767,8 +2757,8 @@ namespace Illuminate\Support\Facades {
/**
* Return the currently cached user.
*
- * @return \App\User|null
- * @static
+ * @return \App\User|null
+ * @static
*/
public static function getUser()
{
@@ -2780,8 +2770,8 @@ namespace Illuminate\Support\Facades {
* Set the current user.
*
* @param \Illuminate\Contracts\Auth\Authenticatable $user
- * @return \Illuminate\Auth\SessionGuard
- * @static
+ * @return \Illuminate\Auth\SessionGuard
+ * @static
*/
public static function setUser($user)
{
@@ -2792,8 +2782,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the current request instance.
*
- * @return \Symfony\Component\HttpFoundation\Request
- * @static
+ * @return \Symfony\Component\HttpFoundation\Request
+ * @static
*/
public static function getRequest()
{
@@ -2805,8 +2795,8 @@ namespace Illuminate\Support\Facades {
* Set the current request instance.
*
* @param \Symfony\Component\HttpFoundation\Request $request
- * @return \Illuminate\Auth\SessionGuard
- * @static
+ * @return \Illuminate\Auth\SessionGuard
+ * @static
*/
public static function setRequest($request)
{
@@ -2817,8 +2807,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the timebox instance used by the guard.
*
- * @return \Illuminate\Support\Timebox
- * @static
+ * @return \Illuminate\Support\Timebox
+ * @static
*/
public static function getTimebox()
{
@@ -2829,9 +2819,9 @@ namespace Illuminate\Support\Facades {
/**
* Determine if the current user is authenticated. If not, throw an exception.
*
- * @return \App\User
+ * @return \App\User
* @throws \Illuminate\Auth\AuthenticationException
- * @static
+ * @static
*/
public static function authenticate()
{
@@ -2842,8 +2832,8 @@ namespace Illuminate\Support\Facades {
/**
* Determine if the guard has a user instance.
*
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function hasUser()
{
@@ -2854,8 +2844,8 @@ namespace Illuminate\Support\Facades {
/**
* Determine if the current user is authenticated.
*
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function check()
{
@@ -2866,8 +2856,8 @@ namespace Illuminate\Support\Facades {
/**
* Determine if the current user is a guest.
*
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function guest()
{
@@ -2878,8 +2868,8 @@ namespace Illuminate\Support\Facades {
/**
* Forget the current user.
*
- * @return \Illuminate\Auth\SessionGuard
- * @static
+ * @return \Illuminate\Auth\SessionGuard
+ * @static
*/
public static function forgetUser()
{
@@ -2890,8 +2880,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the user provider used by the guard.
*
- * @return \Illuminate\Contracts\Auth\UserProvider
- * @static
+ * @return \Illuminate\Contracts\Auth\UserProvider
+ * @static
*/
public static function getProvider()
{
@@ -2903,8 +2893,8 @@ namespace Illuminate\Support\Facades {
* Set the user provider used by the guard.
*
* @param \Illuminate\Contracts\Auth\UserProvider $provider
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function setProvider($provider)
{
@@ -2918,8 +2908,8 @@ namespace Illuminate\Support\Facades {
* @param string $name
* @param object|callable $macro
* @param-closure-this static $macro
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function macro($name, $macro)
{
@@ -2931,9 +2921,9 @@ namespace Illuminate\Support\Facades {
*
* @param object $mixin
* @param bool $replace
- * @return void
+ * @return void
* @throws \ReflectionException
- * @static
+ * @static
*/
public static function mixin($mixin, $replace = true)
{
@@ -2944,8 +2934,8 @@ namespace Illuminate\Support\Facades {
* Checks if macro is registered.
*
* @param string $name
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function hasMacro($name)
{
@@ -2955,8 +2945,8 @@ namespace Illuminate\Support\Facades {
/**
* Flush the existing macros.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function flushMacros()
{
@@ -2965,8 +2955,6 @@ namespace Illuminate\Support\Facades {
}
/**
- *
- *
* @see \Illuminate\View\Compilers\BladeCompiler
*/
class Blade {
@@ -2974,8 +2962,8 @@ namespace Illuminate\Support\Facades {
* Compile the view at the given path.
*
* @param string|null $path
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function compile($path = null)
{
@@ -2986,8 +2974,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the path currently being compiled.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function getPath()
{
@@ -2999,8 +2987,8 @@ namespace Illuminate\Support\Facades {
* Set the path currently being compiled.
*
* @param string $path
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function setPath($path)
{
@@ -3012,8 +3000,8 @@ namespace Illuminate\Support\Facades {
* Compile the given Blade template contents.
*
* @param string $value
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function compileString($value)
{
@@ -3027,8 +3015,8 @@ namespace Illuminate\Support\Facades {
* @param string $string
* @param array $data
* @param bool $deleteCachedView
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function render($string, $data = [], $deleteCachedView = false)
{
@@ -3039,8 +3027,8 @@ namespace Illuminate\Support\Facades {
* Render a component instance to HTML.
*
* @param \Illuminate\View\Component $component
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function renderComponent($component)
{
@@ -3051,8 +3039,8 @@ namespace Illuminate\Support\Facades {
* Strip the parentheses from the given expression.
*
* @param string $expression
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function stripParentheses($expression)
{
@@ -3064,8 +3052,8 @@ namespace Illuminate\Support\Facades {
* Register a custom Blade compiler.
*
* @param callable $compiler
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function extend($compiler)
{
@@ -3076,8 +3064,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the extensions used by the compiler.
*
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function getExtensions()
{
@@ -3090,8 +3078,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $name
* @param callable $callback
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function if($name, $callback)
{
@@ -3104,8 +3092,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $name
* @param mixed $parameters
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function check($name, ...$parameters)
{
@@ -3119,8 +3107,8 @@ namespace Illuminate\Support\Facades {
* @param string $class
* @param string|null $alias
* @param string $prefix
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function component($class, $alias = null, $prefix = '')
{
@@ -3133,8 +3121,8 @@ namespace Illuminate\Support\Facades {
*
* @param array $components
* @param string $prefix
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function components($components, $prefix = '')
{
@@ -3145,8 +3133,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the registered class component aliases.
*
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function getClassComponentAliases()
{
@@ -3159,8 +3147,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $path
* @param string|null $prefix
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function anonymousComponentPath($path, $prefix = null)
{
@@ -3173,8 +3161,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $directory
* @param string|null $prefix
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function anonymousComponentNamespace($directory, $prefix = null)
{
@@ -3187,8 +3175,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $namespace
* @param string $prefix
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function componentNamespace($namespace, $prefix)
{
@@ -3199,8 +3187,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the registered anonymous component paths.
*
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function getAnonymousComponentPaths()
{
@@ -3211,8 +3199,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the registered anonymous component namespaces.
*
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function getAnonymousComponentNamespaces()
{
@@ -3223,8 +3211,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the registered class component namespaces.
*
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function getClassComponentNamespaces()
{
@@ -3237,8 +3225,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $path
* @param string|null $alias
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function aliasComponent($path, $alias = null)
{
@@ -3251,8 +3239,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $path
* @param string|null $alias
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function include($path, $alias = null)
{
@@ -3265,8 +3253,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $path
* @param string|null $alias
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function aliasInclude($path, $alias = null)
{
@@ -3279,9 +3267,9 @@ namespace Illuminate\Support\Facades {
*
* @param string $name
* @param callable $handler
- * @return void
+ * @return void
* @throws \InvalidArgumentException
- * @static
+ * @static
*/
public static function bindDirective($name, $handler)
{
@@ -3295,9 +3283,9 @@ namespace Illuminate\Support\Facades {
* @param string $name
* @param callable $handler
* @param bool $bind
- * @return void
+ * @return void
* @throws \InvalidArgumentException
- * @static
+ * @static
*/
public static function directive($name, $handler, $bind = false)
{
@@ -3308,8 +3296,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the list of custom directives.
*
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function getCustomDirectives()
{
@@ -3321,8 +3309,8 @@ namespace Illuminate\Support\Facades {
* Indicate that the following callable should be used to prepare strings for compilation.
*
* @param callable $callback
- * @return \Illuminate\View\Compilers\BladeCompiler
- * @static
+ * @return \Illuminate\View\Compilers\BladeCompiler
+ * @static
*/
public static function prepareStringsForCompilationUsing($callback)
{
@@ -3334,8 +3322,8 @@ namespace Illuminate\Support\Facades {
* Register a new precompiler.
*
* @param callable $precompiler
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function precompiler($precompiler)
{
@@ -3348,8 +3336,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $format
* @param callable $callback
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function usingEchoFormat($format, $callback)
{
@@ -3361,8 +3349,8 @@ namespace Illuminate\Support\Facades {
* Set the echo format to be used by the compiler.
*
* @param string $format
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function setEchoFormat($format)
{
@@ -3373,8 +3361,8 @@ namespace Illuminate\Support\Facades {
/**
* Set the "echo" format to double encode entities.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function withDoubleEncoding()
{
@@ -3385,8 +3373,8 @@ namespace Illuminate\Support\Facades {
/**
* Set the "echo" format to not double encode entities.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function withoutDoubleEncoding()
{
@@ -3397,8 +3385,8 @@ namespace Illuminate\Support\Facades {
/**
* Indicate that component tags should not be compiled.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function withoutComponentTags()
{
@@ -3410,8 +3398,8 @@ namespace Illuminate\Support\Facades {
* Get the path to the compiled version of a view.
*
* @param string $path
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function getCompiledPath($path)
{
@@ -3424,9 +3412,9 @@ namespace Illuminate\Support\Facades {
* Determine if the view at the given path is expired.
*
* @param string $path
- * @return bool
+ * @return bool
* @throws \ErrorException
- * @static
+ * @static
*/
public static function isExpired($path)
{
@@ -3439,8 +3427,8 @@ namespace Illuminate\Support\Facades {
* Get a new component hash for a component name.
*
* @param string $component
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function newComponentHash($component)
{
@@ -3454,8 +3442,8 @@ namespace Illuminate\Support\Facades {
* @param string $alias
* @param string $data
* @param string $hash
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function compileClassComponentOpening($component, $alias, $data, $hash)
{
@@ -3465,8 +3453,8 @@ namespace Illuminate\Support\Facades {
/**
* Compile the end-component statements into valid PHP.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function compileEndComponentClass()
{
@@ -3478,8 +3466,8 @@ namespace Illuminate\Support\Facades {
* Sanitize the given component attribute value.
*
* @param mixed $value
- * @return mixed
- * @static
+ * @return mixed
+ * @static
*/
public static function sanitizeComponentAttribute($value)
{
@@ -3489,8 +3477,8 @@ namespace Illuminate\Support\Facades {
/**
* Compile an end-once block into valid PHP.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function compileEndOnce()
{
@@ -3503,8 +3491,8 @@ namespace Illuminate\Support\Facades {
*
* @param string|callable $class
* @param callable|null $handler
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function stringable($class, $handler = null)
{
@@ -3516,8 +3504,8 @@ namespace Illuminate\Support\Facades {
* Compile Blade echos into valid PHP.
*
* @param string $value
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function compileEchos($value)
{
@@ -3529,8 +3517,8 @@ namespace Illuminate\Support\Facades {
* Apply the echo handler for the value if it exists.
*
* @param string $value
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function applyEchoHandler($value)
{
@@ -3540,8 +3528,6 @@ namespace Illuminate\Support\Facades {
}
/**
- *
- *
* @method static mixed auth(\Illuminate\Http\Request $request)
* @method static mixed validAuthenticationResponse(\Illuminate\Http\Request $request, mixed $result)
* @method static void broadcast(array $channels, string $event, array $payload = [])
@@ -3557,8 +3543,8 @@ namespace Illuminate\Support\Facades {
* Register the routes for handling broadcast channel authentication and sockets.
*
* @param array|null $attributes
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function routes($attributes = null)
{
@@ -3570,8 +3556,8 @@ namespace Illuminate\Support\Facades {
* Register the routes for handling broadcast user authentication.
*
* @param array|null $attributes
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function userRoutes($attributes = null)
{
@@ -3581,12 +3567,12 @@ namespace Illuminate\Support\Facades {
/**
* Register the routes for handling broadcast authentication and sockets.
- *
+ *
* Alias of "routes" method.
*
* @param array|null $attributes
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function channelRoutes($attributes = null)
{
@@ -3598,8 +3584,8 @@ namespace Illuminate\Support\Facades {
* Get the socket ID for the given request.
*
* @param \Illuminate\Http\Request|null $request
- * @return string|null
- * @static
+ * @return string|null
+ * @static
*/
public static function socket($request = null)
{
@@ -3610,7 +3596,7 @@ namespace Illuminate\Support\Facades {
/**
* Begin sending an anonymous broadcast to the given channels.
*
- * @static
+ * @static
*/
public static function on($channels)
{
@@ -3621,7 +3607,7 @@ namespace Illuminate\Support\Facades {
/**
* Begin sending an anonymous broadcast to the given private channels.
*
- * @static
+ * @static
*/
public static function private($channel)
{
@@ -3632,7 +3618,7 @@ namespace Illuminate\Support\Facades {
/**
* Begin sending an anonymous broadcast to the given presence channels.
*
- * @static
+ * @static
*/
public static function presence($channel)
{
@@ -3644,8 +3630,8 @@ namespace Illuminate\Support\Facades {
* Begin broadcasting an event.
*
* @param mixed|null $event
- * @return \Illuminate\Broadcasting\PendingBroadcast
- * @static
+ * @return \Illuminate\Broadcasting\PendingBroadcast
+ * @static
*/
public static function event($event = null)
{
@@ -3657,8 +3643,8 @@ namespace Illuminate\Support\Facades {
* Queue the given event for broadcast.
*
* @param mixed $event
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function queue($event)
{
@@ -3670,8 +3656,8 @@ namespace Illuminate\Support\Facades {
* Get a driver instance.
*
* @param string|null $driver
- * @return mixed
- * @static
+ * @return mixed
+ * @static
*/
public static function connection($driver = null)
{
@@ -3683,8 +3669,8 @@ namespace Illuminate\Support\Facades {
* Get a driver instance.
*
* @param string|null $name
- * @return mixed
- * @static
+ * @return mixed
+ * @static
*/
public static function driver($name = null)
{
@@ -3696,8 +3682,8 @@ namespace Illuminate\Support\Facades {
* Get a Pusher instance for the given configuration.
*
* @param array $config
- * @return \Pusher\Pusher
- * @static
+ * @return \Pusher\Pusher
+ * @static
*/
public static function pusher($config)
{
@@ -3709,8 +3695,8 @@ namespace Illuminate\Support\Facades {
* Get an Ably instance for the given configuration.
*
* @param array $config
- * @return \Ably\AblyRest
- * @static
+ * @return \Ably\AblyRest
+ * @static
*/
public static function ably($config)
{
@@ -3721,8 +3707,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the default driver name.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function getDefaultDriver()
{
@@ -3734,8 +3720,8 @@ namespace Illuminate\Support\Facades {
* Set the default driver name.
*
* @param string $name
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function setDefaultDriver($name)
{
@@ -3747,8 +3733,8 @@ namespace Illuminate\Support\Facades {
* Disconnect the given disk and remove from local cache.
*
* @param string|null $name
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function purge($name = null)
{
@@ -3761,8 +3747,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $driver
* @param \Closure $callback
- * @return \Illuminate\Broadcasting\BroadcastManager
- * @static
+ * @return \Illuminate\Broadcasting\BroadcastManager
+ * @static
*/
public static function extend($driver, $callback)
{
@@ -3773,8 +3759,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the application instance used by the manager.
*
- * @return \Illuminate\Contracts\Foundation\Application
- * @static
+ * @return \Illuminate\Contracts\Foundation\Application
+ * @static
*/
public static function getApplication()
{
@@ -3786,8 +3772,8 @@ namespace Illuminate\Support\Facades {
* Set the application instance used by the manager.
*
* @param \Illuminate\Contracts\Foundation\Application $app
- * @return \Illuminate\Broadcasting\BroadcastManager
- * @static
+ * @return \Illuminate\Broadcasting\BroadcastManager
+ * @static
*/
public static function setApplication($app)
{
@@ -3798,8 +3784,8 @@ namespace Illuminate\Support\Facades {
/**
* Forget all of the resolved driver instances.
*
- * @return \Illuminate\Broadcasting\BroadcastManager
- * @static
+ * @return \Illuminate\Broadcasting\BroadcastManager
+ * @static
*/
public static function forgetDrivers()
{
@@ -3809,8 +3795,6 @@ namespace Illuminate\Support\Facades {
}
/**
- *
- *
* @see \Illuminate\Bus\Dispatcher
* @see \Illuminate\Support\Testing\Fakes\BusFake
*/
@@ -3819,8 +3803,8 @@ namespace Illuminate\Support\Facades {
* Dispatch a command to its appropriate handler.
*
* @param mixed $command
- * @return mixed
- * @static
+ * @return mixed
+ * @static
*/
public static function dispatch($command)
{
@@ -3830,13 +3814,13 @@ namespace Illuminate\Support\Facades {
/**
* Dispatch a command to its appropriate handler in the current process.
- *
+ *
* Queueable jobs will be dispatched to the "sync" queue.
*
* @param mixed $command
* @param mixed $handler
- * @return mixed
- * @static
+ * @return mixed
+ * @static
*/
public static function dispatchSync($command, $handler = null)
{
@@ -3849,8 +3833,8 @@ namespace Illuminate\Support\Facades {
*
* @param mixed $command
* @param mixed $handler
- * @return mixed
- * @static
+ * @return mixed
+ * @static
*/
public static function dispatchNow($command, $handler = null)
{
@@ -3862,8 +3846,8 @@ namespace Illuminate\Support\Facades {
* Attempt to find the batch with the given ID.
*
* @param string $batchId
- * @return \Illuminate\Bus\Batch|null
- * @static
+ * @return \Illuminate\Bus\Batch|null
+ * @static
*/
public static function findBatch($batchId)
{
@@ -3875,8 +3859,8 @@ namespace Illuminate\Support\Facades {
* Create a new batch of queueable jobs.
*
* @param \Illuminate\Support\Collection|array|mixed $jobs
- * @return \Illuminate\Bus\PendingBatch
- * @static
+ * @return \Illuminate\Bus\PendingBatch
+ * @static
*/
public static function batch($jobs)
{
@@ -3888,8 +3872,8 @@ namespace Illuminate\Support\Facades {
* Create a new chain of queueable jobs.
*
* @param \Illuminate\Support\Collection|array $jobs
- * @return \Illuminate\Foundation\Bus\PendingChain
- * @static
+ * @return \Illuminate\Foundation\Bus\PendingChain
+ * @static
*/
public static function chain($jobs)
{
@@ -3901,8 +3885,8 @@ namespace Illuminate\Support\Facades {
* Determine if the given command has a handler.
*
* @param mixed $command
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function hasCommandHandler($command)
{
@@ -3914,8 +3898,8 @@ namespace Illuminate\Support\Facades {
* Retrieve the handler for a command.
*
* @param mixed $command
- * @return bool|mixed
- * @static
+ * @return bool|mixed
+ * @static
*/
public static function getCommandHandler($command)
{
@@ -3927,9 +3911,9 @@ namespace Illuminate\Support\Facades {
* Dispatch a command to its appropriate handler behind a queue.
*
* @param mixed $command
- * @return mixed
+ * @return mixed
* @throws \RuntimeException
- * @static
+ * @static
*/
public static function dispatchToQueue($command)
{
@@ -3942,8 +3926,8 @@ namespace Illuminate\Support\Facades {
*
* @param mixed $command
* @param mixed $handler
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function dispatchAfterResponse($command, $handler = null)
{
@@ -3955,8 +3939,8 @@ namespace Illuminate\Support\Facades {
* Set the pipes through which commands should be piped before dispatching.
*
* @param array $pipes
- * @return \Illuminate\Bus\Dispatcher
- * @static
+ * @return \Illuminate\Bus\Dispatcher
+ * @static
*/
public static function pipeThrough($pipes)
{
@@ -3968,8 +3952,8 @@ namespace Illuminate\Support\Facades {
* Map a command to a handler.
*
* @param array $map
- * @return \Illuminate\Bus\Dispatcher
- * @static
+ * @return \Illuminate\Bus\Dispatcher
+ * @static
*/
public static function map($map)
{
@@ -3981,8 +3965,8 @@ namespace Illuminate\Support\Facades {
* Specify the jobs that should be dispatched instead of faked.
*
* @param array|string $jobsToDispatch
- * @return \Illuminate\Support\Testing\Fakes\BusFake
- * @static
+ * @return \Illuminate\Support\Testing\Fakes\BusFake
+ * @static
*/
public static function except($jobsToDispatch)
{
@@ -3995,8 +3979,8 @@ namespace Illuminate\Support\Facades {
*
* @param string|\Closure $command
* @param callable|int|null $callback
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function assertDispatched($command, $callback = null)
{
@@ -4009,8 +3993,8 @@ namespace Illuminate\Support\Facades {
*
* @param string|\Closure $command
* @param int $times
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function assertDispatchedTimes($command, $times = 1)
{
@@ -4023,8 +4007,8 @@ namespace Illuminate\Support\Facades {
*
* @param string|\Closure $command
* @param callable|null $callback
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function assertNotDispatched($command, $callback = null)
{
@@ -4035,8 +4019,8 @@ namespace Illuminate\Support\Facades {
/**
* Assert that no jobs were dispatched.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function assertNothingDispatched()
{
@@ -4049,8 +4033,8 @@ namespace Illuminate\Support\Facades {
*
* @param string|\Closure $command
* @param callable|int|null $callback
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function assertDispatchedSync($command, $callback = null)
{
@@ -4063,8 +4047,8 @@ namespace Illuminate\Support\Facades {
*
* @param string|\Closure $command
* @param int $times
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function assertDispatchedSyncTimes($command, $times = 1)
{
@@ -4077,8 +4061,8 @@ namespace Illuminate\Support\Facades {
*
* @param string|\Closure $command
* @param callable|null $callback
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function assertNotDispatchedSync($command, $callback = null)
{
@@ -4091,8 +4075,8 @@ namespace Illuminate\Support\Facades {
*
* @param string|\Closure $command
* @param callable|int|null $callback
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function assertDispatchedAfterResponse($command, $callback = null)
{
@@ -4105,8 +4089,8 @@ namespace Illuminate\Support\Facades {
*
* @param string|\Closure $command
* @param int $times
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function assertDispatchedAfterResponseTimes($command, $times = 1)
{
@@ -4119,8 +4103,8 @@ namespace Illuminate\Support\Facades {
*
* @param string|\Closure $command
* @param callable|null $callback
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function assertNotDispatchedAfterResponse($command, $callback = null)
{
@@ -4132,8 +4116,8 @@ namespace Illuminate\Support\Facades {
* Assert if a chain of jobs was dispatched.
*
* @param array $expectedChain
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function assertChained($expectedChain)
{
@@ -4144,8 +4128,8 @@ namespace Illuminate\Support\Facades {
/**
* Assert no chained jobs was dispatched.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function assertNothingChained()
{
@@ -4158,8 +4142,8 @@ namespace Illuminate\Support\Facades {
*
* @param string|\Closure $command
* @param callable|null $callback
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function assertDispatchedWithoutChain($command, $callback = null)
{
@@ -4171,8 +4155,8 @@ namespace Illuminate\Support\Facades {
* Create a new assertion about a chained batch.
*
* @param \Closure $callback
- * @return \Illuminate\Support\Testing\Fakes\ChainedBatchTruthTest
- * @static
+ * @return \Illuminate\Support\Testing\Fakes\ChainedBatchTruthTest
+ * @static
*/
public static function chainedBatch($callback)
{
@@ -4184,8 +4168,8 @@ namespace Illuminate\Support\Facades {
* Assert if a batch was dispatched based on a truth-test callback.
*
* @param callable $callback
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function assertBatched($callback)
{
@@ -4197,8 +4181,8 @@ namespace Illuminate\Support\Facades {
* Assert the number of batches that have been dispatched.
*
* @param int $count
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function assertBatchCount($count)
{
@@ -4209,8 +4193,8 @@ namespace Illuminate\Support\Facades {
/**
* Assert that no batched jobs were dispatched.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function assertNothingBatched()
{
@@ -4221,8 +4205,8 @@ namespace Illuminate\Support\Facades {
/**
* Assert that no jobs were dispatched, chained, or batched.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function assertNothingPlaced()
{
@@ -4235,8 +4219,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $command
* @param callable|null $callback
- * @return \Illuminate\Support\Collection
- * @static
+ * @return \Illuminate\Support\Collection
+ * @static
*/
public static function dispatched($command, $callback = null)
{
@@ -4249,8 +4233,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $command
* @param callable|null $callback
- * @return \Illuminate\Support\Collection
- * @static
+ * @return \Illuminate\Support\Collection
+ * @static
*/
public static function dispatchedSync($command, $callback = null)
{
@@ -4263,8 +4247,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $command
* @param callable|null $callback
- * @return \Illuminate\Support\Collection
- * @static
+ * @return \Illuminate\Support\Collection
+ * @static
*/
public static function dispatchedAfterResponse($command, $callback = null)
{
@@ -4276,8 +4260,8 @@ namespace Illuminate\Support\Facades {
* Get all of the pending batches matching a truth-test callback.
*
* @param callable $callback
- * @return \Illuminate\Support\Collection
- * @static
+ * @return \Illuminate\Support\Collection
+ * @static
*/
public static function batched($callback)
{
@@ -4289,8 +4273,8 @@ namespace Illuminate\Support\Facades {
* Determine if there are any stored commands for a given class.
*
* @param string $command
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function hasDispatched($command)
{
@@ -4302,8 +4286,8 @@ namespace Illuminate\Support\Facades {
* Determine if there are any stored commands for a given class.
*
* @param string $command
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function hasDispatchedSync($command)
{
@@ -4315,8 +4299,8 @@ namespace Illuminate\Support\Facades {
* Determine if there are any stored commands for a given class.
*
* @param string $command
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function hasDispatchedAfterResponse($command)
{
@@ -4328,8 +4312,8 @@ namespace Illuminate\Support\Facades {
* Dispatch an empty job batch for testing.
*
* @param string $name
- * @return \Illuminate\Bus\Batch
- * @static
+ * @return \Illuminate\Bus\Batch
+ * @static
*/
public static function dispatchFakeBatch($name = '')
{
@@ -4341,8 +4325,8 @@ namespace Illuminate\Support\Facades {
* Record the fake pending batch dispatch.
*
* @param \Illuminate\Bus\PendingBatch $pendingBatch
- * @return \Illuminate\Bus\Batch
- * @static
+ * @return \Illuminate\Bus\Batch
+ * @static
*/
public static function recordPendingBatch($pendingBatch)
{
@@ -4354,8 +4338,8 @@ namespace Illuminate\Support\Facades {
* Specify if commands should be serialized and restored when being batched.
*
* @param bool $serializeAndRestore
- * @return \Illuminate\Support\Testing\Fakes\BusFake
- * @static
+ * @return \Illuminate\Support\Testing\Fakes\BusFake
+ * @static
*/
public static function serializeAndRestore($serializeAndRestore = true)
{
@@ -4366,8 +4350,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the batches that have been dispatched.
*
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function dispatchedBatches()
{
@@ -4377,8 +4361,6 @@ namespace Illuminate\Support\Facades {
}
/**
- *
- *
* @see \Illuminate\Cache\CacheManager
* @see \Illuminate\Cache\Repository
*/
@@ -4387,8 +4369,8 @@ namespace Illuminate\Support\Facades {
* Get a cache store instance by name, wrapped in a repository.
*
* @param string|null $name
- * @return \Illuminate\Contracts\Cache\Repository
- * @static
+ * @return \Illuminate\Contracts\Cache\Repository
+ * @static
*/
public static function store($name = null)
{
@@ -4400,8 +4382,8 @@ namespace Illuminate\Support\Facades {
* Get a cache driver instance.
*
* @param string|null $driver
- * @return \Illuminate\Contracts\Cache\Repository
- * @static
+ * @return \Illuminate\Contracts\Cache\Repository
+ * @static
*/
public static function driver($driver = null)
{
@@ -4413,9 +4395,9 @@ namespace Illuminate\Support\Facades {
* Resolve the given store.
*
* @param string $name
- * @return \Illuminate\Contracts\Cache\Repository
+ * @return \Illuminate\Contracts\Cache\Repository
* @throws \InvalidArgumentException
- * @static
+ * @static
*/
public static function resolve($name)
{
@@ -4427,8 +4409,8 @@ namespace Illuminate\Support\Facades {
* Build a cache repository with the given configuration.
*
* @param array $config
- * @return \Illuminate\Cache\Repository
- * @static
+ * @return \Illuminate\Cache\Repository
+ * @static
*/
public static function build($config)
{
@@ -4441,8 +4423,8 @@ namespace Illuminate\Support\Facades {
*
* @param \Illuminate\Contracts\Cache\Store $store
* @param array $config
- * @return \Illuminate\Cache\Repository
- * @static
+ * @return \Illuminate\Cache\Repository
+ * @static
*/
public static function repository($store, $config = [])
{
@@ -4453,8 +4435,8 @@ namespace Illuminate\Support\Facades {
/**
* Re-set the event dispatcher on all resolved cache repositories.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function refreshEventDispatcher()
{
@@ -4465,8 +4447,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the default cache driver name.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function getDefaultDriver()
{
@@ -4478,8 +4460,8 @@ namespace Illuminate\Support\Facades {
* Set the default cache driver name.
*
* @param string $name
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function setDefaultDriver($name)
{
@@ -4491,8 +4473,8 @@ namespace Illuminate\Support\Facades {
* Unset the given driver instances.
*
* @param array|string|null $name
- * @return \Illuminate\Cache\CacheManager
- * @static
+ * @return \Illuminate\Cache\CacheManager
+ * @static
*/
public static function forgetDriver($name = null)
{
@@ -4504,8 +4486,8 @@ namespace Illuminate\Support\Facades {
* Disconnect the given driver and remove from local cache.
*
* @param string|null $name
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function purge($name = null)
{
@@ -4518,8 +4500,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $driver
* @param \Closure $callback
- * @return \Illuminate\Cache\CacheManager
- * @static
+ * @return \Illuminate\Cache\CacheManager
+ * @static
*/
public static function extend($driver, $callback)
{
@@ -4531,8 +4513,8 @@ namespace Illuminate\Support\Facades {
* Set the application instance used by the manager.
*
* @param \Illuminate\Contracts\Foundation\Application $app
- * @return \Illuminate\Cache\CacheManager
- * @static
+ * @return \Illuminate\Cache\CacheManager
+ * @static
*/
public static function setApplication($app)
{
@@ -4544,8 +4526,8 @@ namespace Illuminate\Support\Facades {
* Determine if an item exists in the cache.
*
* @param array|string $key
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function has($key)
{
@@ -4557,8 +4539,8 @@ namespace Illuminate\Support\Facades {
* Determine if an item doesn't exist in the cache.
*
* @param string $key
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function missing($key)
{
@@ -4571,8 +4553,8 @@ namespace Illuminate\Support\Facades {
*
* @param array|string $key
* @param mixed $default
- * @return mixed
- * @static
+ * @return mixed
+ * @static
*/
public static function get($key, $default = null)
{
@@ -4582,12 +4564,12 @@ namespace Illuminate\Support\Facades {
/**
* Retrieve multiple items from the cache by key.
- *
+ *
* Items not found in the cache will have a null value.
*
* @param array $keys
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function many($keys)
{
@@ -4598,14 +4580,14 @@ namespace Illuminate\Support\Facades {
/**
* Obtains multiple cache items by their unique keys.
*
- * @return iterable
+ * @return iterable
* @param iterable $keys A list of keys that can be obtained in a single operation.
* @param mixed $default Default value to return for keys that do not exist.
* @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.
- * @static
+ * @static
*/
public static function getMultiple($keys, $default = null)
{
@@ -4618,8 +4600,8 @@ namespace Illuminate\Support\Facades {
*
* @param array|string $key
* @param mixed $default
- * @return mixed
- * @static
+ * @return mixed
+ * @static
*/
public static function pull($key, $default = null)
{
@@ -4633,8 +4615,8 @@ namespace Illuminate\Support\Facades {
* @param array|string $key
* @param mixed $value
* @param \DateTimeInterface|\DateInterval|int|null $ttl
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function put($key, $value, $ttl = null)
{
@@ -4645,7 +4627,7 @@ namespace Illuminate\Support\Facades {
/**
* Persists data in the cache, uniquely referenced by a key with an optional expiration TTL time.
*
- * @return bool
+ * @return bool
* @param string $key The key of the item to store.
* @param mixed $value The value of the item to store, must be serializable.
* @param null|int|\DateInterval $ttl Optional. The TTL value of this item. If no value is sent and
@@ -4654,7 +4636,7 @@ namespace Illuminate\Support\Facades {
* @return bool True on success and false on failure.
* @throws \Psr\SimpleCache\InvalidArgumentException
* MUST be thrown if the $key string is not a legal value.
- * @static
+ * @static
*/
public static function set($key, $value, $ttl = null)
{
@@ -4667,8 +4649,8 @@ namespace Illuminate\Support\Facades {
*
* @param array $values
* @param \DateTimeInterface|\DateInterval|int|null $ttl
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function putMany($values, $ttl = null)
{
@@ -4679,7 +4661,7 @@ namespace Illuminate\Support\Facades {
/**
* Persists a set of key => value pairs in the cache, with an optional TTL.
*
- * @return bool
+ * @return bool
* @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
@@ -4688,7 +4670,7 @@ namespace Illuminate\Support\Facades {
* @throws \Psr\SimpleCache\InvalidArgumentException
* MUST be thrown if $values is neither an array nor a Traversable,
* or if any of the $values are not a legal value.
- * @static
+ * @static
*/
public static function setMultiple($values, $ttl = null)
{
@@ -4702,8 +4684,8 @@ namespace Illuminate\Support\Facades {
* @param string $key
* @param mixed $value
* @param \DateTimeInterface|\DateInterval|int|null $ttl
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function add($key, $value, $ttl = null)
{
@@ -4716,8 +4698,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $key
* @param mixed $value
- * @return int|bool
- * @static
+ * @return int|bool
+ * @static
*/
public static function increment($key, $value = 1)
{
@@ -4730,8 +4712,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $key
* @param mixed $value
- * @return int|bool
- * @static
+ * @return int|bool
+ * @static
*/
public static function decrement($key, $value = 1)
{
@@ -4744,8 +4726,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $key
* @param mixed $value
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function forever($key, $value)
{
@@ -4760,8 +4742,8 @@ namespace Illuminate\Support\Facades {
* @param string $key
* @param \Closure|\DateTimeInterface|\DateInterval|int|null $ttl
* @param \Closure(): TCacheValue $callback
- * @return TCacheValue
- * @static
+ * @return TCacheValue
+ * @static
*/
public static function remember($key, $ttl, $callback)
{
@@ -4775,8 +4757,8 @@ namespace Illuminate\Support\Facades {
* @template TCacheValue
* @param string $key
* @param \Closure(): TCacheValue $callback
- * @return TCacheValue
- * @static
+ * @return TCacheValue
+ * @static
*/
public static function sear($key, $callback)
{
@@ -4790,8 +4772,8 @@ namespace Illuminate\Support\Facades {
* @template TCacheValue
* @param string $key
* @param \Closure(): TCacheValue $callback
- * @return TCacheValue
- * @static
+ * @return TCacheValue
+ * @static
*/
public static function rememberForever($key, $callback)
{
@@ -4807,8 +4789,8 @@ namespace Illuminate\Support\Facades {
* @param array{ 0: \DateTimeInterface|\DateInterval|int, 1: \DateTimeInterface|\DateInterval|int } $ttl
* @param (callable(): TCacheValue) $callback
* @param array{ seconds?: int, owner?: string }|null $lock
- * @return TCacheValue
- * @static
+ * @return TCacheValue
+ * @static
*/
public static function flexible($key, $ttl, $callback, $lock = null)
{
@@ -4820,8 +4802,8 @@ namespace Illuminate\Support\Facades {
* Remove an item from the cache.
*
* @param string $key
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function forget($key)
{
@@ -4832,12 +4814,12 @@ namespace Illuminate\Support\Facades {
/**
* Delete an item from the cache by its unique key.
*
- * @return bool
+ * @return bool
* @param string $key The unique cache key of the item to delete.
* @return bool True if the item was successfully removed. False if there was an error.
* @throws \Psr\SimpleCache\InvalidArgumentException
* MUST be thrown if the $key string is not a legal value.
- * @static
+ * @static
*/
public static function delete($key)
{
@@ -4848,13 +4830,13 @@ namespace Illuminate\Support\Facades {
/**
* Deletes multiple cache items in a single operation.
*
- * @return bool
+ * @return bool
* @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,
* or if any of the $keys are not a legal value.
- * @static
+ * @static
*/
public static function deleteMultiple($keys)
{
@@ -4865,9 +4847,9 @@ namespace Illuminate\Support\Facades {
/**
* Wipes clean the entire cache's keys.
*
- * @return bool
+ * @return bool
* @return bool True on success and false on failure.
- * @static
+ * @static
*/
public static function clear()
{
@@ -4879,9 +4861,9 @@ namespace Illuminate\Support\Facades {
* Begin executing a new tags operation if the store supports it.
*
* @param array|mixed $names
- * @return \Illuminate\Cache\TaggedCache
+ * @return \Illuminate\Cache\TaggedCache
* @throws \BadMethodCallException
- * @static
+ * @static
*/
public static function tags($names)
{
@@ -4892,8 +4874,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the name of the cache store.
*
- * @return string|null
- * @static
+ * @return string|null
+ * @static
*/
public static function getName()
{
@@ -4904,8 +4886,8 @@ namespace Illuminate\Support\Facades {
/**
* Determine if the current store supports tags.
*
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function supportsTags()
{
@@ -4916,8 +4898,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the default cache time.
*
- * @return int|null
- * @static
+ * @return int|null
+ * @static
*/
public static function getDefaultCacheTime()
{
@@ -4929,8 +4911,8 @@ namespace Illuminate\Support\Facades {
* Set the default cache time in seconds.
*
* @param int|null $seconds
- * @return \Illuminate\Cache\Repository
- * @static
+ * @return \Illuminate\Cache\Repository
+ * @static
*/
public static function setDefaultCacheTime($seconds)
{
@@ -4941,8 +4923,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the cache store implementation.
*
- * @return \Illuminate\Contracts\Cache\Store
- * @static
+ * @return \Illuminate\Contracts\Cache\Store
+ * @static
*/
public static function getStore()
{
@@ -4954,8 +4936,8 @@ namespace Illuminate\Support\Facades {
* Set the cache store implementation.
*
* @param \Illuminate\Contracts\Cache\Store $store
- * @return static
- * @static
+ * @return static
+ * @static
*/
public static function setStore($store)
{
@@ -4966,8 +4948,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the event dispatcher instance.
*
- * @return \Illuminate\Contracts\Events\Dispatcher|null
- * @static
+ * @return \Illuminate\Contracts\Events\Dispatcher|null
+ * @static
*/
public static function getEventDispatcher()
{
@@ -4979,8 +4961,8 @@ namespace Illuminate\Support\Facades {
* Set the event dispatcher instance.
*
* @param \Illuminate\Contracts\Events\Dispatcher $events
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function setEventDispatcher($events)
{
@@ -4992,8 +4974,8 @@ namespace Illuminate\Support\Facades {
* Determine if a cached value exists.
*
* @param string $key
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function offsetExists($key)
{
@@ -5005,8 +4987,8 @@ namespace Illuminate\Support\Facades {
* Retrieve an item from the cache by key.
*
* @param string $key
- * @return mixed
- * @static
+ * @return mixed
+ * @static
*/
public static function offsetGet($key)
{
@@ -5019,8 +5001,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $key
* @param mixed $value
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function offsetSet($key, $value)
{
@@ -5032,8 +5014,8 @@ namespace Illuminate\Support\Facades {
* Remove an item from the cache.
*
* @param string $key
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function offsetUnset($key)
{
@@ -5047,8 +5029,8 @@ namespace Illuminate\Support\Facades {
* @param string $name
* @param object|callable $macro
* @param-closure-this static $macro
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function macro($name, $macro)
{
@@ -5060,9 +5042,9 @@ namespace Illuminate\Support\Facades {
*
* @param object $mixin
* @param bool $replace
- * @return void
+ * @return void
* @throws \ReflectionException
- * @static
+ * @static
*/
public static function mixin($mixin, $replace = true)
{
@@ -5073,8 +5055,8 @@ namespace Illuminate\Support\Facades {
* Checks if macro is registered.
*
* @param string $name
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function hasMacro($name)
{
@@ -5084,8 +5066,8 @@ namespace Illuminate\Support\Facades {
/**
* Flush the existing macros.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function flushMacros()
{
@@ -5097,9 +5079,9 @@ namespace Illuminate\Support\Facades {
*
* @param string $method
* @param array $parameters
- * @return mixed
+ * @return mixed
* @throws \BadMethodCallException
- * @static
+ * @static
*/
public static function macroCall($method, $parameters)
{
@@ -5113,8 +5095,8 @@ namespace Illuminate\Support\Facades {
* @param string $name
* @param int $seconds
* @param string|null $owner
- * @return \Illuminate\Contracts\Cache\Lock
- * @static
+ * @return \Illuminate\Contracts\Cache\Lock
+ * @static
*/
public static function lock($name, $seconds = 0, $owner = null)
{
@@ -5127,8 +5109,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $name
* @param string $owner
- * @return \Illuminate\Contracts\Cache\Lock
- * @static
+ * @return \Illuminate\Contracts\Cache\Lock
+ * @static
*/
public static function restoreLock($name, $owner)
{
@@ -5139,8 +5121,8 @@ namespace Illuminate\Support\Facades {
/**
* Remove all items from the cache.
*
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function flush()
{
@@ -5152,8 +5134,8 @@ namespace Illuminate\Support\Facades {
* Get the full path for the given cache key.
*
* @param string $key
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function path($key)
{
@@ -5164,8 +5146,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the Filesystem instance.
*
- * @return \Illuminate\Filesystem\Filesystem
- * @static
+ * @return \Illuminate\Filesystem\Filesystem
+ * @static
*/
public static function getFilesystem()
{
@@ -5176,8 +5158,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the working directory of the cache.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function getDirectory()
{
@@ -5189,8 +5171,8 @@ namespace Illuminate\Support\Facades {
* Set the working directory of the cache.
*
* @param string $directory
- * @return \Illuminate\Cache\FileStore
- * @static
+ * @return \Illuminate\Cache\FileStore
+ * @static
*/
public static function setDirectory($directory)
{
@@ -5202,8 +5184,8 @@ namespace Illuminate\Support\Facades {
* Set the cache directory where locks should be stored.
*
* @param string|null $lockDirectory
- * @return \Illuminate\Cache\FileStore
- * @static
+ * @return \Illuminate\Cache\FileStore
+ * @static
*/
public static function setLockDirectory($lockDirectory)
{
@@ -5214,8 +5196,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the cache key prefix.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function getPrefix()
{
@@ -5225,8 +5207,6 @@ namespace Illuminate\Support\Facades {
}
/**
- *
- *
* @see \Illuminate\Config\Repository
*/
class Config {
@@ -5234,8 +5214,8 @@ namespace Illuminate\Support\Facades {
* Determine if the given configuration value exists.
*
* @param string $key
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function has($key)
{
@@ -5248,8 +5228,8 @@ namespace Illuminate\Support\Facades {
*
* @param array|string $key
* @param mixed $default
- * @return mixed
- * @static
+ * @return mixed
+ * @static
*/
public static function get($key, $default = null)
{
@@ -5261,8 +5241,8 @@ namespace Illuminate\Support\Facades {
* Get many configuration values.
*
* @param array $keys
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function getMany($keys)
{
@@ -5275,8 +5255,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $key
* @param (\Closure():(string|null))|string|null $default
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function string($key, $default = null)
{
@@ -5289,8 +5269,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $key
* @param (\Closure():(int|null))|int|null $default
- * @return int
- * @static
+ * @return int
+ * @static
*/
public static function integer($key, $default = null)
{
@@ -5303,8 +5283,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $key
* @param (\Closure():(float|null))|float|null $default
- * @return float
- * @static
+ * @return float
+ * @static
*/
public static function float($key, $default = null)
{
@@ -5317,8 +5297,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $key
* @param (\Closure():(bool|null))|bool|null $default
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function boolean($key, $default = null)
{
@@ -5331,8 +5311,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $key
* @param (\Closure():(array|null))|array|null $default
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function array($key, $default = null)
{
@@ -5345,8 +5325,8 @@ namespace Illuminate\Support\Facades {
*
* @param array|string $key
* @param mixed $value
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function set($key, $value = null)
{
@@ -5359,8 +5339,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $key
* @param mixed $value
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function prepend($key, $value)
{
@@ -5373,8 +5353,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $key
* @param mixed $value
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function push($key, $value)
{
@@ -5385,8 +5365,8 @@ namespace Illuminate\Support\Facades {
/**
* Get all of the configuration items for the application.
*
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function all()
{
@@ -5398,8 +5378,8 @@ namespace Illuminate\Support\Facades {
* Determine if the given configuration option exists.
*
* @param string $key
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function offsetExists($key)
{
@@ -5411,8 +5391,8 @@ namespace Illuminate\Support\Facades {
* Get a configuration option.
*
* @param string $key
- * @return mixed
- * @static
+ * @return mixed
+ * @static
*/
public static function offsetGet($key)
{
@@ -5425,8 +5405,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $key
* @param mixed $value
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function offsetSet($key, $value)
{
@@ -5438,8 +5418,8 @@ namespace Illuminate\Support\Facades {
* Unset a configuration option.
*
* @param string $key
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function offsetUnset($key)
{
@@ -5453,8 +5433,8 @@ namespace Illuminate\Support\Facades {
* @param string $name
* @param object|callable $macro
* @param-closure-this static $macro
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function macro($name, $macro)
{
@@ -5466,9 +5446,9 @@ namespace Illuminate\Support\Facades {
*
* @param object $mixin
* @param bool $replace
- * @return void
+ * @return void
* @throws \ReflectionException
- * @static
+ * @static
*/
public static function mixin($mixin, $replace = true)
{
@@ -5479,8 +5459,8 @@ namespace Illuminate\Support\Facades {
* Checks if macro is registered.
*
* @param string $name
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function hasMacro($name)
{
@@ -5490,8 +5470,8 @@ namespace Illuminate\Support\Facades {
/**
* Flush the existing macros.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function flushMacros()
{
@@ -5500,8 +5480,6 @@ namespace Illuminate\Support\Facades {
}
/**
- *
- *
* @see \Illuminate\Cookie\CookieJar
*/
class Cookie {
@@ -5517,8 +5495,8 @@ namespace Illuminate\Support\Facades {
* @param bool $httpOnly
* @param bool $raw
* @param string|null $sameSite
- * @return \Symfony\Component\HttpFoundation\Cookie
- * @static
+ * @return \Symfony\Component\HttpFoundation\Cookie
+ * @static
*/
public static function make($name, $value, $minutes = 0, $path = null, $domain = null, $secure = null, $httpOnly = true, $raw = false, $sameSite = null)
{
@@ -5537,8 +5515,8 @@ namespace Illuminate\Support\Facades {
* @param bool $httpOnly
* @param bool $raw
* @param string|null $sameSite
- * @return \Symfony\Component\HttpFoundation\Cookie
- * @static
+ * @return \Symfony\Component\HttpFoundation\Cookie
+ * @static
*/
public static function forever($name, $value, $path = null, $domain = null, $secure = null, $httpOnly = true, $raw = false, $sameSite = null)
{
@@ -5552,8 +5530,8 @@ namespace Illuminate\Support\Facades {
* @param string $name
* @param string|null $path
* @param string|null $domain
- * @return \Symfony\Component\HttpFoundation\Cookie
- * @static
+ * @return \Symfony\Component\HttpFoundation\Cookie
+ * @static
*/
public static function forget($name, $path = null, $domain = null)
{
@@ -5566,8 +5544,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $key
* @param string|null $path
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function hasQueued($key, $path = null)
{
@@ -5581,8 +5559,8 @@ namespace Illuminate\Support\Facades {
* @param string $key
* @param mixed $default
* @param string|null $path
- * @return \Symfony\Component\HttpFoundation\Cookie|null
- * @static
+ * @return \Symfony\Component\HttpFoundation\Cookie|null
+ * @static
*/
public static function queued($key, $default = null, $path = null)
{
@@ -5594,8 +5572,8 @@ namespace Illuminate\Support\Facades {
* Queue a cookie to send with the next response.
*
* @param mixed $parameters
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function queue(...$parameters)
{
@@ -5609,8 +5587,8 @@ namespace Illuminate\Support\Facades {
* @param string $name
* @param string|null $path
* @param string|null $domain
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function expire($name, $path = null, $domain = null)
{
@@ -5623,8 +5601,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $name
* @param string|null $path
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function unqueue($name, $path = null)
{
@@ -5639,8 +5617,8 @@ namespace Illuminate\Support\Facades {
* @param string|null $domain
* @param bool|null $secure
* @param string|null $sameSite
- * @return \Illuminate\Cookie\CookieJar
- * @static
+ * @return \Illuminate\Cookie\CookieJar
+ * @static
*/
public static function setDefaultPathAndDomain($path, $domain, $secure = false, $sameSite = null)
{
@@ -5651,8 +5629,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the cookies which have been queued for the next request.
*
- * @return \Symfony\Component\HttpFoundation\Cookie[]
- * @static
+ * @return \Symfony\Component\HttpFoundation\Cookie[]
+ * @static
*/
public static function getQueuedCookies()
{
@@ -5663,8 +5641,8 @@ namespace Illuminate\Support\Facades {
/**
* Flush the cookies which have been queued for the next request.
*
- * @return \Illuminate\Cookie\CookieJar
- * @static
+ * @return \Illuminate\Cookie\CookieJar
+ * @static
*/
public static function flushQueuedCookies()
{
@@ -5678,8 +5656,8 @@ namespace Illuminate\Support\Facades {
* @param string $name
* @param object|callable $macro
* @param-closure-this static $macro
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function macro($name, $macro)
{
@@ -5691,9 +5669,9 @@ namespace Illuminate\Support\Facades {
*
* @param object $mixin
* @param bool $replace
- * @return void
+ * @return void
* @throws \ReflectionException
- * @static
+ * @static
*/
public static function mixin($mixin, $replace = true)
{
@@ -5704,8 +5682,8 @@ namespace Illuminate\Support\Facades {
* Checks if macro is registered.
*
* @param string $name
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function hasMacro($name)
{
@@ -5715,8 +5693,8 @@ namespace Illuminate\Support\Facades {
/**
* Flush the existing macros.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function flushMacros()
{
@@ -5725,8 +5703,6 @@ namespace Illuminate\Support\Facades {
}
/**
- *
- *
* @see \Illuminate\Encryption\Encrypter
*/
class Crypt {
@@ -5735,8 +5711,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $key
* @param string $cipher
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function supported($key, $cipher)
{
@@ -5747,8 +5723,8 @@ namespace Illuminate\Support\Facades {
* Create a new encryption key for the given cipher.
*
* @param string $cipher
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function generateKey($cipher)
{
@@ -5760,9 +5736,9 @@ namespace Illuminate\Support\Facades {
*
* @param mixed $value
* @param bool $serialize
- * @return string
+ * @return string
* @throws \Illuminate\Contracts\Encryption\EncryptException
- * @static
+ * @static
*/
public static function encrypt($value, $serialize = true)
{
@@ -5774,9 +5750,9 @@ namespace Illuminate\Support\Facades {
* Encrypt a string without serialization.
*
* @param string $value
- * @return string
+ * @return string
* @throws \Illuminate\Contracts\Encryption\EncryptException
- * @static
+ * @static
*/
public static function encryptString($value)
{
@@ -5789,9 +5765,9 @@ namespace Illuminate\Support\Facades {
*
* @param string $payload
* @param bool $unserialize
- * @return mixed
+ * @return mixed
* @throws \Illuminate\Contracts\Encryption\DecryptException
- * @static
+ * @static
*/
public static function decrypt($payload, $unserialize = true)
{
@@ -5803,9 +5779,9 @@ namespace Illuminate\Support\Facades {
* Decrypt the given string without unserialization.
*
* @param string $payload
- * @return string
+ * @return string
* @throws \Illuminate\Contracts\Encryption\DecryptException
- * @static
+ * @static
*/
public static function decryptString($payload)
{
@@ -5816,8 +5792,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the encryption key that the encrypter is currently using.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function getKey()
{
@@ -5828,8 +5804,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the current encryption key and all previous encryption keys.
*
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function getAllKeys()
{
@@ -5840,8 +5816,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the previous encryption keys.
*
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function getPreviousKeys()
{
@@ -5853,8 +5829,8 @@ namespace Illuminate\Support\Facades {
* Set the previous / legacy encryption keys that should be utilized if decryption fails.
*
* @param array $keys
- * @return \Illuminate\Encryption\Encrypter
- * @static
+ * @return \Illuminate\Encryption\Encrypter
+ * @static
*/
public static function previousKeys($keys)
{
@@ -5864,8 +5840,6 @@ namespace Illuminate\Support\Facades {
}
/**
- *
- *
* @see \Illuminate\Database\DatabaseManager
*/
class DB {
@@ -5873,8 +5847,8 @@ namespace Illuminate\Support\Facades {
* Get a database connection instance.
*
* @param string|null $name
- * @return \Illuminate\Database\Connection
- * @static
+ * @return \Illuminate\Database\Connection
+ * @static
*/
public static function connection($name = null)
{
@@ -5886,8 +5860,8 @@ namespace Illuminate\Support\Facades {
* Build a database connection instance from the given configuration.
*
* @param array $config
- * @return \Illuminate\Database\MySqlConnection
- * @static
+ * @return \Illuminate\Database\MySqlConnection
+ * @static
*/
public static function build($config)
{
@@ -5899,8 +5873,8 @@ namespace Illuminate\Support\Facades {
* Calculate the dynamic connection name for an on-demand connection based on its configuration.
*
* @param array $config
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function calculateDynamicConnectionName($config)
{
@@ -5913,8 +5887,8 @@ namespace Illuminate\Support\Facades {
* @param string $name
* @param array $config
* @param bool $force
- * @return \Illuminate\Database\MySqlConnection
- * @static
+ * @return \Illuminate\Database\MySqlConnection
+ * @static
*/
public static function connectUsing($name, $config, $force = false)
{
@@ -5926,8 +5900,8 @@ namespace Illuminate\Support\Facades {
* Disconnect from the given database and remove from local cache.
*
* @param string|null $name
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function purge($name = null)
{
@@ -5939,8 +5913,8 @@ namespace Illuminate\Support\Facades {
* Disconnect from the given database.
*
* @param string|null $name
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function disconnect($name = null)
{
@@ -5952,8 +5926,8 @@ namespace Illuminate\Support\Facades {
* Reconnect to the given database.
*
* @param string|null $name
- * @return \Illuminate\Database\Connection
- * @static
+ * @return \Illuminate\Database\Connection
+ * @static
*/
public static function reconnect($name = null)
{
@@ -5966,8 +5940,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $name
* @param callable $callback
- * @return mixed
- * @static
+ * @return mixed
+ * @static
*/
public static function usingConnection($name, $callback)
{
@@ -5978,8 +5952,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the default connection name.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function getDefaultConnection()
{
@@ -5991,8 +5965,8 @@ namespace Illuminate\Support\Facades {
* Set the default connection name.
*
* @param string $name
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function setDefaultConnection($name)
{
@@ -6003,8 +5977,8 @@ namespace Illuminate\Support\Facades {
/**
* Get all of the supported drivers.
*
- * @return string[]
- * @static
+ * @return string[]
+ * @static
*/
public static function supportedDrivers()
{
@@ -6015,8 +5989,8 @@ namespace Illuminate\Support\Facades {
/**
* Get all of the drivers that are actually available.
*
- * @return string[]
- * @static
+ * @return string[]
+ * @static
*/
public static function availableDrivers()
{
@@ -6029,8 +6003,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $name
* @param callable $resolver
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function extend($name, $resolver)
{
@@ -6042,8 +6016,8 @@ namespace Illuminate\Support\Facades {
* Remove an extension connection resolver.
*
* @param string $name
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function forgetExtension($name)
{
@@ -6054,8 +6028,8 @@ namespace Illuminate\Support\Facades {
/**
* Return all of the created connections.
*
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function getConnections()
{
@@ -6067,8 +6041,8 @@ namespace Illuminate\Support\Facades {
* Set the database reconnector callback.
*
* @param callable $reconnector
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function setReconnector($reconnector)
{
@@ -6080,8 +6054,8 @@ namespace Illuminate\Support\Facades {
* Set the application instance used by the manager.
*
* @param \Illuminate\Contracts\Foundation\Application $app
- * @return \Illuminate\Database\DatabaseManager
- * @static
+ * @return \Illuminate\Database\DatabaseManager
+ * @static
*/
public static function setApplication($app)
{
@@ -6095,8 +6069,8 @@ namespace Illuminate\Support\Facades {
* @param string $name
* @param object|callable $macro
* @param-closure-this static $macro
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function macro($name, $macro)
{
@@ -6108,9 +6082,9 @@ namespace Illuminate\Support\Facades {
*
* @param object $mixin
* @param bool $replace
- * @return void
+ * @return void
* @throws \ReflectionException
- * @static
+ * @static
*/
public static function mixin($mixin, $replace = true)
{
@@ -6121,8 +6095,8 @@ namespace Illuminate\Support\Facades {
* Checks if macro is registered.
*
* @param string $name
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function hasMacro($name)
{
@@ -6132,8 +6106,8 @@ namespace Illuminate\Support\Facades {
/**
* Flush the existing macros.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function flushMacros()
{
@@ -6145,9 +6119,9 @@ namespace Illuminate\Support\Facades {
*
* @param string $method
* @param array $parameters
- * @return mixed
+ * @return mixed
* @throws \BadMethodCallException
- * @static
+ * @static
*/
public static function macroCall($method, $parameters)
{
@@ -6158,8 +6132,8 @@ namespace Illuminate\Support\Facades {
/**
* Get a human-readable name for the given connection driver.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function getDriverTitle()
{
@@ -6173,8 +6147,8 @@ namespace Illuminate\Support\Facades {
* @param string $query
* @param array $bindings
* @param string|null $sequence
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function insert($query, $bindings = [], $sequence = null)
{
@@ -6185,8 +6159,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the connection's last insert ID.
*
- * @return string|int|null
- * @static
+ * @return string|int|null
+ * @static
*/
public static function getLastInsertId()
{
@@ -6197,8 +6171,8 @@ namespace Illuminate\Support\Facades {
/**
* Determine if the connected database is a MariaDB database.
*
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function isMaria()
{
@@ -6209,8 +6183,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the server version for the connection.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function getServerVersion()
{
@@ -6221,8 +6195,8 @@ namespace Illuminate\Support\Facades {
/**
* Get a schema builder instance for the connection.
*
- * @return \Illuminate\Database\Schema\MySqlBuilder
- * @static
+ * @return \Illuminate\Database\Schema\MySqlBuilder
+ * @static
*/
public static function getSchemaBuilder()
{
@@ -6235,8 +6209,8 @@ namespace Illuminate\Support\Facades {
*
* @param \Illuminate\Filesystem\Filesystem|null $files
* @param callable|null $processFactory
- * @return \Illuminate\Database\Schema\MySqlSchemaState
- * @static
+ * @return \Illuminate\Database\Schema\MySqlSchemaState
+ * @static
*/
public static function getSchemaState($files = null, $processFactory = null)
{
@@ -6247,8 +6221,8 @@ namespace Illuminate\Support\Facades {
/**
* Set the query grammar to the default implementation.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function useDefaultQueryGrammar()
{
@@ -6260,8 +6234,8 @@ namespace Illuminate\Support\Facades {
/**
* Set the schema grammar to the default implementation.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function useDefaultSchemaGrammar()
{
@@ -6273,8 +6247,8 @@ namespace Illuminate\Support\Facades {
/**
* Set the query post processor to the default implementation.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function useDefaultPostProcessor()
{
@@ -6288,8 +6262,8 @@ namespace Illuminate\Support\Facades {
*
* @param \Closure|\Illuminate\Database\Query\Builder|\Illuminate\Contracts\Database\Query\Expression|string $table
* @param string|null $as
- * @return \Illuminate\Database\Query\Builder
- * @static
+ * @return \Illuminate\Database\Query\Builder
+ * @static
*/
public static function table($table, $as = null)
{
@@ -6301,8 +6275,8 @@ namespace Illuminate\Support\Facades {
/**
* Get a new query builder instance.
*
- * @return \Illuminate\Database\Query\Builder
- * @static
+ * @return \Illuminate\Database\Query\Builder
+ * @static
*/
public static function query()
{
@@ -6317,8 +6291,8 @@ namespace Illuminate\Support\Facades {
* @param string $query
* @param array $bindings
* @param bool $useReadPdo
- * @return mixed
- * @static
+ * @return mixed
+ * @static
*/
public static function selectOne($query, $bindings = [], $useReadPdo = true)
{
@@ -6333,9 +6307,9 @@ namespace Illuminate\Support\Facades {
* @param string $query
* @param array $bindings
* @param bool $useReadPdo
- * @return mixed
+ * @return mixed
* @throws \Illuminate\Database\MultipleColumnsSelectedException
- * @static
+ * @static
*/
public static function scalar($query, $bindings = [], $useReadPdo = true)
{
@@ -6349,8 +6323,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $query
* @param array $bindings
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function selectFromWriteConnection($query, $bindings = [])
{
@@ -6365,8 +6339,8 @@ namespace Illuminate\Support\Facades {
* @param string $query
* @param array $bindings
* @param bool $useReadPdo
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function select($query, $bindings = [], $useReadPdo = true)
{
@@ -6381,8 +6355,8 @@ namespace Illuminate\Support\Facades {
* @param string $query
* @param array $bindings
* @param bool $useReadPdo
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function selectResultSets($query, $bindings = [], $useReadPdo = true)
{
@@ -6397,8 +6371,8 @@ namespace Illuminate\Support\Facades {
* @param string $query
* @param array $bindings
* @param bool $useReadPdo
- * @return \Generator
- * @static
+ * @return \Generator
+ * @static
*/
public static function cursor($query, $bindings = [], $useReadPdo = true)
{
@@ -6412,8 +6386,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $query
* @param array $bindings
- * @return int
- * @static
+ * @return int
+ * @static
*/
public static function update($query, $bindings = [])
{
@@ -6427,8 +6401,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $query
* @param array $bindings
- * @return int
- * @static
+ * @return int
+ * @static
*/
public static function delete($query, $bindings = [])
{
@@ -6442,8 +6416,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $query
* @param array $bindings
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function statement($query, $bindings = [])
{
@@ -6457,8 +6431,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $query
* @param array $bindings
- * @return int
- * @static
+ * @return int
+ * @static
*/
public static function affectingStatement($query, $bindings = [])
{
@@ -6471,8 +6445,8 @@ namespace Illuminate\Support\Facades {
* Run a raw, unprepared query against the PDO connection.
*
* @param string $query
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function unprepared($query)
{
@@ -6484,8 +6458,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the number of open connections for the database.
*
- * @return int|null
- * @static
+ * @return int|null
+ * @static
*/
public static function threadCount()
{
@@ -6498,8 +6472,8 @@ namespace Illuminate\Support\Facades {
* Execute the given callback in "dry run" mode.
*
* @param \Closure $callback
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function pretend($callback)
{
@@ -6512,8 +6486,8 @@ namespace Illuminate\Support\Facades {
* Execute the given callback without "pretending".
*
* @param \Closure $callback
- * @return mixed
- * @static
+ * @return mixed
+ * @static
*/
public static function withoutPretending($callback)
{
@@ -6527,8 +6501,8 @@ namespace Illuminate\Support\Facades {
*
* @param \PDOStatement $statement
* @param array $bindings
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function bindValues($statement, $bindings)
{
@@ -6541,8 +6515,8 @@ namespace Illuminate\Support\Facades {
* Prepare the query bindings for execution.
*
* @param array $bindings
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function prepareBindings($bindings)
{
@@ -6557,8 +6531,8 @@ namespace Illuminate\Support\Facades {
* @param string $query
* @param array $bindings
* @param float|null $time
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function logQuery($query, $bindings, $time = null)
{
@@ -6572,8 +6546,8 @@ namespace Illuminate\Support\Facades {
*
* @param \DateTimeInterface|\Carbon\CarbonInterval|float|int $threshold
* @param callable $handler
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function whenQueryingForLongerThan($threshold, $handler)
{
@@ -6585,8 +6559,8 @@ namespace Illuminate\Support\Facades {
/**
* Allow all the query duration handlers to run again, even if they have already run.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function allowQueryDurationHandlersToRunAgain()
{
@@ -6598,8 +6572,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the duration of all run queries in milliseconds.
*
- * @return float
- * @static
+ * @return float
+ * @static
*/
public static function totalQueryDuration()
{
@@ -6611,8 +6585,8 @@ namespace Illuminate\Support\Facades {
/**
* Reset the duration of all run queries.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function resetTotalQueryDuration()
{
@@ -6624,8 +6598,8 @@ namespace Illuminate\Support\Facades {
/**
* Reconnect to the database if a PDO connection is missing.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function reconnectIfMissingConnection()
{
@@ -6638,8 +6612,8 @@ namespace Illuminate\Support\Facades {
* Register a hook to be run just before a database transaction is started.
*
* @param \Closure $callback
- * @return \Illuminate\Database\MySqlConnection
- * @static
+ * @return \Illuminate\Database\MySqlConnection
+ * @static
*/
public static function beforeStartingTransaction($callback)
{
@@ -6652,8 +6626,8 @@ namespace Illuminate\Support\Facades {
* Register a hook to be run just before a database query is executed.
*
* @param \Closure $callback
- * @return \Illuminate\Database\MySqlConnection
- * @static
+ * @return \Illuminate\Database\MySqlConnection
+ * @static
*/
public static function beforeExecuting($callback)
{
@@ -6666,8 +6640,8 @@ namespace Illuminate\Support\Facades {
* Register a database query listener with the connection.
*
* @param \Closure $callback
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function listen($callback)
{
@@ -6680,8 +6654,8 @@ namespace Illuminate\Support\Facades {
* Get a new raw query expression.
*
* @param mixed $value
- * @return \Illuminate\Contracts\Database\Query\Expression
- * @static
+ * @return \Illuminate\Contracts\Database\Query\Expression
+ * @static
*/
public static function raw($value)
{
@@ -6695,8 +6669,8 @@ namespace Illuminate\Support\Facades {
*
* @param string|float|int|bool|null $value
* @param bool $binary
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function escape($value, $binary = false)
{
@@ -6708,8 +6682,8 @@ namespace Illuminate\Support\Facades {
/**
* Determine if the database connection has modified any database records.
*
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function hasModifiedRecords()
{
@@ -6722,8 +6696,8 @@ namespace Illuminate\Support\Facades {
* Indicate if any records have been modified.
*
* @param bool $value
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function recordsHaveBeenModified($value = true)
{
@@ -6736,8 +6710,8 @@ namespace Illuminate\Support\Facades {
* Set the record modification state.
*
* @param bool $value
- * @return \Illuminate\Database\MySqlConnection
- * @static
+ * @return \Illuminate\Database\MySqlConnection
+ * @static
*/
public static function setRecordModificationState($value)
{
@@ -6749,8 +6723,8 @@ namespace Illuminate\Support\Facades {
/**
* Reset the record modification state.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function forgetRecordModificationState()
{
@@ -6763,8 +6737,8 @@ namespace Illuminate\Support\Facades {
* Indicate that the connection should use the write PDO connection for reads.
*
* @param bool $value
- * @return \Illuminate\Database\MySqlConnection
- * @static
+ * @return \Illuminate\Database\MySqlConnection
+ * @static
*/
public static function useWriteConnectionWhenReading($value = true)
{
@@ -6776,8 +6750,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the current PDO connection.
*
- * @return \PDO
- * @static
+ * @return \PDO
+ * @static
*/
public static function getPdo()
{
@@ -6789,8 +6763,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the current PDO connection parameter without executing any reconnect logic.
*
- * @return \PDO|\Closure|null
- * @static
+ * @return \PDO|\Closure|null
+ * @static
*/
public static function getRawPdo()
{
@@ -6802,8 +6776,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the current PDO connection used for reading.
*
- * @return \PDO
- * @static
+ * @return \PDO
+ * @static
*/
public static function getReadPdo()
{
@@ -6815,8 +6789,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the current read PDO connection parameter without executing any reconnect logic.
*
- * @return \PDO|\Closure|null
- * @static
+ * @return \PDO|\Closure|null
+ * @static
*/
public static function getRawReadPdo()
{
@@ -6829,8 +6803,8 @@ namespace Illuminate\Support\Facades {
* Set the PDO connection.
*
* @param \PDO|\Closure|null $pdo
- * @return \Illuminate\Database\MySqlConnection
- * @static
+ * @return \Illuminate\Database\MySqlConnection
+ * @static
*/
public static function setPdo($pdo)
{
@@ -6843,8 +6817,8 @@ namespace Illuminate\Support\Facades {
* Set the PDO connection used for reading.
*
* @param \PDO|\Closure|null $pdo
- * @return \Illuminate\Database\MySqlConnection
- * @static
+ * @return \Illuminate\Database\MySqlConnection
+ * @static
*/
public static function setReadPdo($pdo)
{
@@ -6856,8 +6830,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the database connection name.
*
- * @return string|null
- * @static
+ * @return string|null
+ * @static
*/
public static function getName()
{
@@ -6869,8 +6843,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the database connection full name.
*
- * @return string|null
- * @static
+ * @return string|null
+ * @static
*/
public static function getNameWithReadWriteType()
{
@@ -6883,8 +6857,8 @@ namespace Illuminate\Support\Facades {
* Get an option from the configuration options.
*
* @param string|null $option
- * @return mixed
- * @static
+ * @return mixed
+ * @static
*/
public static function getConfig($option = null)
{
@@ -6896,8 +6870,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the PDO driver name.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function getDriverName()
{
@@ -6909,8 +6883,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the query grammar used by the connection.
*
- * @return \Illuminate\Database\Query\Grammars\Grammar
- * @static
+ * @return \Illuminate\Database\Query\Grammars\Grammar
+ * @static
*/
public static function getQueryGrammar()
{
@@ -6923,8 +6897,8 @@ namespace Illuminate\Support\Facades {
* Set the query grammar used by the connection.
*
* @param \Illuminate\Database\Query\Grammars\Grammar $grammar
- * @return \Illuminate\Database\MySqlConnection
- * @static
+ * @return \Illuminate\Database\MySqlConnection
+ * @static
*/
public static function setQueryGrammar($grammar)
{
@@ -6936,8 +6910,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the schema grammar used by the connection.
*
- * @return \Illuminate\Database\Schema\Grammars\Grammar
- * @static
+ * @return \Illuminate\Database\Schema\Grammars\Grammar
+ * @static
*/
public static function getSchemaGrammar()
{
@@ -6950,8 +6924,8 @@ namespace Illuminate\Support\Facades {
* Set the schema grammar used by the connection.
*
* @param \Illuminate\Database\Schema\Grammars\Grammar $grammar
- * @return \Illuminate\Database\MySqlConnection
- * @static
+ * @return \Illuminate\Database\MySqlConnection
+ * @static
*/
public static function setSchemaGrammar($grammar)
{
@@ -6963,8 +6937,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the query post processor used by the connection.
*
- * @return \Illuminate\Database\Query\Processors\Processor
- * @static
+ * @return \Illuminate\Database\Query\Processors\Processor
+ * @static
*/
public static function getPostProcessor()
{
@@ -6977,8 +6951,8 @@ namespace Illuminate\Support\Facades {
* Set the query post processor used by the connection.
*
* @param \Illuminate\Database\Query\Processors\Processor $processor
- * @return \Illuminate\Database\MySqlConnection
- * @static
+ * @return \Illuminate\Database\MySqlConnection
+ * @static
*/
public static function setPostProcessor($processor)
{
@@ -6990,8 +6964,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the event dispatcher used by the connection.
*
- * @return \Illuminate\Contracts\Events\Dispatcher
- * @static
+ * @return \Illuminate\Contracts\Events\Dispatcher
+ * @static
*/
public static function getEventDispatcher()
{
@@ -7004,8 +6978,8 @@ namespace Illuminate\Support\Facades {
* Set the event dispatcher instance on the connection.
*
* @param \Illuminate\Contracts\Events\Dispatcher $events
- * @return \Illuminate\Database\MySqlConnection
- * @static
+ * @return \Illuminate\Database\MySqlConnection
+ * @static
*/
public static function setEventDispatcher($events)
{
@@ -7017,8 +6991,8 @@ namespace Illuminate\Support\Facades {
/**
* Unset the event dispatcher for this connection.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function unsetEventDispatcher()
{
@@ -7031,8 +7005,8 @@ namespace Illuminate\Support\Facades {
* Set the transaction manager instance on the connection.
*
* @param \Illuminate\Database\DatabaseTransactionsManager $manager
- * @return \Illuminate\Database\MySqlConnection
- * @static
+ * @return \Illuminate\Database\MySqlConnection
+ * @static
*/
public static function setTransactionManager($manager)
{
@@ -7044,8 +7018,8 @@ namespace Illuminate\Support\Facades {
/**
* Unset the transaction manager for this connection.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function unsetTransactionManager()
{
@@ -7057,8 +7031,8 @@ namespace Illuminate\Support\Facades {
/**
* Determine if the connection is in a "dry run".
*
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function pretending()
{
@@ -7070,8 +7044,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the connection query log.
*
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function getQueryLog()
{
@@ -7083,8 +7057,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the connection query log with embedded bindings.
*
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function getRawQueryLog()
{
@@ -7096,8 +7070,8 @@ namespace Illuminate\Support\Facades {
/**
* Clear the query log.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function flushQueryLog()
{
@@ -7109,8 +7083,8 @@ namespace Illuminate\Support\Facades {
/**
* Enable the query log on the connection.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function enableQueryLog()
{
@@ -7122,8 +7096,8 @@ namespace Illuminate\Support\Facades {
/**
* Disable the query log on the connection.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function disableQueryLog()
{
@@ -7135,8 +7109,8 @@ namespace Illuminate\Support\Facades {
/**
* Determine whether we're logging queries.
*
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function logging()
{
@@ -7148,8 +7122,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the name of the connected database.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function getDatabaseName()
{
@@ -7162,8 +7136,8 @@ namespace Illuminate\Support\Facades {
* Set the name of the connected database.
*
* @param string $database
- * @return \Illuminate\Database\MySqlConnection
- * @static
+ * @return \Illuminate\Database\MySqlConnection
+ * @static
*/
public static function setDatabaseName($database)
{
@@ -7176,8 +7150,8 @@ namespace Illuminate\Support\Facades {
* Set the read / write type of the connection.
*
* @param string|null $readWriteType
- * @return \Illuminate\Database\MySqlConnection
- * @static
+ * @return \Illuminate\Database\MySqlConnection
+ * @static
*/
public static function setReadWriteType($readWriteType)
{
@@ -7189,8 +7163,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the table prefix for the connection.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function getTablePrefix()
{
@@ -7203,8 +7177,8 @@ namespace Illuminate\Support\Facades {
* Set the table prefix in use by the connection.
*
* @param string $prefix
- * @return \Illuminate\Database\MySqlConnection
- * @static
+ * @return \Illuminate\Database\MySqlConnection
+ * @static
*/
public static function setTablePrefix($prefix)
{
@@ -7218,8 +7192,8 @@ namespace Illuminate\Support\Facades {
*
* @template TGrammar of \Illuminate\Database\Grammar
* @param TGrammar $grammar
- * @return TGrammar
- * @static
+ * @return TGrammar
+ * @static
*/
public static function withTablePrefix($grammar)
{
@@ -7232,8 +7206,8 @@ namespace Illuminate\Support\Facades {
* Execute the given callback without table prefix.
*
* @param \Closure $callback
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function withoutTablePrefix($callback)
{
@@ -7247,8 +7221,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $driver
* @param \Closure $callback
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function resolverFor($driver, $callback)
{
@@ -7260,8 +7234,8 @@ namespace Illuminate\Support\Facades {
* Get the connection resolver for the given driver.
*
* @param string $driver
- * @return \Closure|null
- * @static
+ * @return \Closure|null
+ * @static
*/
public static function getResolver($driver)
{
@@ -7270,16 +7244,14 @@ namespace Illuminate\Support\Facades {
}
/**
- *
- *
* @template TReturn of mixed
- *
+ *
* Execute a Closure within a transaction.
* @param (\Closure(static): TReturn) $callback
* @param int $attempts
- * @return TReturn
+ * @return TReturn
* @throws \Throwable
- * @static
+ * @static
*/
public static function transaction($callback, $attempts = 1)
{
@@ -7291,9 +7263,9 @@ namespace Illuminate\Support\Facades {
/**
* Start a new database transaction.
*
- * @return void
+ * @return void
* @throws \Throwable
- * @static
+ * @static
*/
public static function beginTransaction()
{
@@ -7305,9 +7277,9 @@ namespace Illuminate\Support\Facades {
/**
* Commit the active database transaction.
*
- * @return void
+ * @return void
* @throws \Throwable
- * @static
+ * @static
*/
public static function commit()
{
@@ -7320,9 +7292,9 @@ namespace Illuminate\Support\Facades {
* Rollback the active database transaction.
*
* @param int|null $toLevel
- * @return void
+ * @return void
* @throws \Throwable
- * @static
+ * @static
*/
public static function rollBack($toLevel = null)
{
@@ -7334,8 +7306,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the number of active transactions.
*
- * @return int
- * @static
+ * @return int
+ * @static
*/
public static function transactionLevel()
{
@@ -7348,9 +7320,9 @@ namespace Illuminate\Support\Facades {
* Execute the callback after a transaction commits.
*
* @param callable $callback
- * @return void
+ * @return void
* @throws \RuntimeException
- * @static
+ * @static
*/
public static function afterCommit($callback)
{
@@ -7361,8 +7333,6 @@ namespace Illuminate\Support\Facades {
}
/**
- *
- *
* @see \Illuminate\Events\Dispatcher
* @see \Illuminate\Support\Testing\Fakes\EventFake
*/
@@ -7372,8 +7342,8 @@ namespace Illuminate\Support\Facades {
*
* @param \Illuminate\Events\Queued\Closure|callable|array|class-string|string $events
* @param \Illuminate\Events\Queued\Closure|callable|array|class-string|null $listener
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function listen($events, $listener = null)
{
@@ -7385,8 +7355,8 @@ namespace Illuminate\Support\Facades {
* Determine if a given event has listeners.
*
* @param string $eventName
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function hasListeners($eventName)
{
@@ -7398,8 +7368,8 @@ namespace Illuminate\Support\Facades {
* Determine if the given event has any wildcard listeners.
*
* @param string $eventName
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function hasWildcardListeners($eventName)
{
@@ -7412,8 +7382,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $event
* @param object|array $payload
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function push($event, $payload = [])
{
@@ -7425,8 +7395,8 @@ namespace Illuminate\Support\Facades {
* Flush a set of pushed events.
*
* @param string $event
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function flush($event)
{
@@ -7438,8 +7408,8 @@ namespace Illuminate\Support\Facades {
* Register an event subscriber with the dispatcher.
*
* @param object|string $subscriber
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function subscribe($subscriber)
{
@@ -7452,8 +7422,8 @@ namespace Illuminate\Support\Facades {
*
* @param string|object $event
* @param mixed $payload
- * @return mixed
- * @static
+ * @return mixed
+ * @static
*/
public static function until($event, $payload = [])
{
@@ -7467,8 +7437,8 @@ namespace Illuminate\Support\Facades {
* @param string|object $event
* @param mixed $payload
* @param bool $halt
- * @return array|null
- * @static
+ * @return array|null
+ * @static
*/
public static function dispatch($event, $payload = [], $halt = false)
{
@@ -7480,8 +7450,8 @@ namespace Illuminate\Support\Facades {
* Get all of the listeners for a given event name.
*
* @param string $eventName
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function getListeners($eventName)
{
@@ -7494,8 +7464,8 @@ namespace Illuminate\Support\Facades {
*
* @param \Closure|string|array $listener
* @param bool $wildcard
- * @return \Closure
- * @static
+ * @return \Closure
+ * @static
*/
public static function makeListener($listener, $wildcard = false)
{
@@ -7508,8 +7478,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $listener
* @param bool $wildcard
- * @return \Closure
- * @static
+ * @return \Closure
+ * @static
*/
public static function createClassListener($listener, $wildcard = false)
{
@@ -7521,8 +7491,8 @@ namespace Illuminate\Support\Facades {
* Remove a set of listeners from the dispatcher.
*
* @param string $event
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function forget($event)
{
@@ -7533,8 +7503,8 @@ namespace Illuminate\Support\Facades {
/**
* Forget all of the pushed listeners.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function forgetPushed()
{
@@ -7546,8 +7516,8 @@ namespace Illuminate\Support\Facades {
* Set the queue resolver implementation.
*
* @param callable $resolver
- * @return \Illuminate\Events\Dispatcher
- * @static
+ * @return \Illuminate\Events\Dispatcher
+ * @static
*/
public static function setQueueResolver($resolver)
{
@@ -7559,8 +7529,8 @@ namespace Illuminate\Support\Facades {
* Set the database transaction manager resolver implementation.
*
* @param callable $resolver
- * @return \Illuminate\Events\Dispatcher
- * @static
+ * @return \Illuminate\Events\Dispatcher
+ * @static
*/
public static function setTransactionManagerResolver($resolver)
{
@@ -7571,8 +7541,8 @@ namespace Illuminate\Support\Facades {
/**
* Gets the raw, unprepared listeners.
*
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function getRawListeners()
{
@@ -7586,8 +7556,8 @@ namespace Illuminate\Support\Facades {
* @param string $name
* @param object|callable $macro
* @param-closure-this static $macro
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function macro($name, $macro)
{
@@ -7599,9 +7569,9 @@ namespace Illuminate\Support\Facades {
*
* @param object $mixin
* @param bool $replace
- * @return void
+ * @return void
* @throws \ReflectionException
- * @static
+ * @static
*/
public static function mixin($mixin, $replace = true)
{
@@ -7612,8 +7582,8 @@ namespace Illuminate\Support\Facades {
* Checks if macro is registered.
*
* @param string $name
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function hasMacro($name)
{
@@ -7623,8 +7593,8 @@ namespace Illuminate\Support\Facades {
/**
* Flush the existing macros.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function flushMacros()
{
@@ -7635,8 +7605,8 @@ namespace Illuminate\Support\Facades {
* Specify the events that should be dispatched instead of faked.
*
* @param array|string $eventsToDispatch
- * @return \Illuminate\Support\Testing\Fakes\EventFake
- * @static
+ * @return \Illuminate\Support\Testing\Fakes\EventFake
+ * @static
*/
public static function except($eventsToDispatch)
{
@@ -7649,8 +7619,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $expectedEvent
* @param string|array $expectedListener
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function assertListening($expectedEvent, $expectedListener)
{
@@ -7663,8 +7633,8 @@ namespace Illuminate\Support\Facades {
*
* @param string|\Closure $event
* @param callable|int|null $callback
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function assertDispatched($event, $callback = null)
{
@@ -7677,8 +7647,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $event
* @param int $times
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function assertDispatchedTimes($event, $times = 1)
{
@@ -7691,8 +7661,8 @@ namespace Illuminate\Support\Facades {
*
* @param string|\Closure $event
* @param callable|null $callback
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function assertNotDispatched($event, $callback = null)
{
@@ -7703,8 +7673,8 @@ namespace Illuminate\Support\Facades {
/**
* Assert that no events were dispatched.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function assertNothingDispatched()
{
@@ -7717,8 +7687,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $event
* @param callable|null $callback
- * @return \Illuminate\Support\Collection
- * @static
+ * @return \Illuminate\Support\Collection
+ * @static
*/
public static function dispatched($event, $callback = null)
{
@@ -7730,8 +7700,8 @@ namespace Illuminate\Support\Facades {
* Determine if the given event has been dispatched.
*
* @param string $event
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function hasDispatched($event)
{
@@ -7742,8 +7712,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the events that have been dispatched.
*
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function dispatchedEvents()
{
@@ -7753,8 +7723,6 @@ namespace Illuminate\Support\Facades {
}
/**
- *
- *
* @see \Illuminate\Filesystem\Filesystem
*/
class File {
@@ -7762,8 +7730,8 @@ namespace Illuminate\Support\Facades {
* Determine if a file or directory exists.
*
* @param string $path
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function exists($path)
{
@@ -7775,8 +7743,8 @@ namespace Illuminate\Support\Facades {
* Determine if a file or directory is missing.
*
* @param string $path
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function missing($path)
{
@@ -7789,9 +7757,9 @@ namespace Illuminate\Support\Facades {
*
* @param string $path
* @param bool $lock
- * @return string
+ * @return string
* @throws \Illuminate\Contracts\Filesystem\FileNotFoundException
- * @static
+ * @static
*/
public static function get($path, $lock = false)
{
@@ -7805,9 +7773,9 @@ namespace Illuminate\Support\Facades {
* @param string $path
* @param int $flags
* @param bool $lock
- * @return array
+ * @return array
* @throws \Illuminate\Contracts\Filesystem\FileNotFoundException
- * @static
+ * @static
*/
public static function json($path, $flags = 0, $lock = false)
{
@@ -7819,8 +7787,8 @@ namespace Illuminate\Support\Facades {
* Get contents of a file with shared access.
*
* @param string $path
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function sharedGet($path)
{
@@ -7833,9 +7801,9 @@ namespace Illuminate\Support\Facades {
*
* @param string $path
* @param array $data
- * @return mixed
+ * @return mixed
* @throws \Illuminate\Contracts\Filesystem\FileNotFoundException
- * @static
+ * @static
*/
public static function getRequire($path, $data = [])
{
@@ -7848,9 +7816,9 @@ namespace Illuminate\Support\Facades {
*
* @param string $path
* @param array $data
- * @return mixed
+ * @return mixed
* @throws \Illuminate\Contracts\Filesystem\FileNotFoundException
- * @static
+ * @static
*/
public static function requireOnce($path, $data = [])
{
@@ -7862,9 +7830,9 @@ namespace Illuminate\Support\Facades {
* Get the contents of a file one line at a time.
*
* @param string $path
- * @return \Illuminate\Support\LazyCollection
+ * @return \Illuminate\Support\LazyCollection
* @throws \Illuminate\Contracts\Filesystem\FileNotFoundException
- * @static
+ * @static
*/
public static function lines($path)
{
@@ -7877,8 +7845,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $path
* @param string $algorithm
- * @return string|false
- * @static
+ * @return string|false
+ * @static
*/
public static function hash($path, $algorithm = 'md5')
{
@@ -7892,8 +7860,8 @@ namespace Illuminate\Support\Facades {
* @param string $path
* @param string $contents
* @param bool $lock
- * @return int|bool
- * @static
+ * @return int|bool
+ * @static
*/
public static function put($path, $contents, $lock = false)
{
@@ -7907,8 +7875,8 @@ namespace Illuminate\Support\Facades {
* @param string $path
* @param string $content
* @param int|null $mode
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function replace($path, $content, $mode = null)
{
@@ -7922,8 +7890,8 @@ namespace Illuminate\Support\Facades {
* @param array|string $search
* @param array|string $replace
* @param string $path
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function replaceInFile($search, $replace, $path)
{
@@ -7936,8 +7904,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $path
* @param string $data
- * @return int
- * @static
+ * @return int
+ * @static
*/
public static function prepend($path, $data)
{
@@ -7951,8 +7919,8 @@ namespace Illuminate\Support\Facades {
* @param string $path
* @param string $data
* @param bool $lock
- * @return int
- * @static
+ * @return int
+ * @static
*/
public static function append($path, $data, $lock = false)
{
@@ -7965,8 +7933,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $path
* @param int|null $mode
- * @return mixed
- * @static
+ * @return mixed
+ * @static
*/
public static function chmod($path, $mode = null)
{
@@ -7978,8 +7946,8 @@ namespace Illuminate\Support\Facades {
* Delete the file at a given path.
*
* @param string|array $paths
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function delete($paths)
{
@@ -7992,8 +7960,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $path
* @param string $target
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function move($path, $target)
{
@@ -8006,8 +7974,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $path
* @param string $target
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function copy($path, $target)
{
@@ -8020,8 +7988,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $target
* @param string $link
- * @return bool|null
- * @static
+ * @return bool|null
+ * @static
*/
public static function link($target, $link)
{
@@ -8034,9 +8002,9 @@ namespace Illuminate\Support\Facades {
*
* @param string $target
* @param string $link
- * @return void
+ * @return void
* @throws \RuntimeException
- * @static
+ * @static
*/
public static function relativeLink($target, $link)
{
@@ -8048,8 +8016,8 @@ namespace Illuminate\Support\Facades {
* Extract the file name from a file path.
*
* @param string $path
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function name($path)
{
@@ -8061,8 +8029,8 @@ namespace Illuminate\Support\Facades {
* Extract the trailing name component from a file path.
*
* @param string $path
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function basename($path)
{
@@ -8074,8 +8042,8 @@ namespace Illuminate\Support\Facades {
* Extract the parent directory from a file path.
*
* @param string $path
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function dirname($path)
{
@@ -8087,8 +8055,8 @@ namespace Illuminate\Support\Facades {
* Extract the file extension from a file path.
*
* @param string $path
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function extension($path)
{
@@ -8100,9 +8068,9 @@ namespace Illuminate\Support\Facades {
* Guess the file extension from the mime-type of a given file.
*
* @param string $path
- * @return string|null
+ * @return string|null
* @throws \RuntimeException
- * @static
+ * @static
*/
public static function guessExtension($path)
{
@@ -8114,8 +8082,8 @@ namespace Illuminate\Support\Facades {
* Get the file type of a given file.
*
* @param string $path
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function type($path)
{
@@ -8127,8 +8095,8 @@ namespace Illuminate\Support\Facades {
* Get the mime-type of a given file.
*
* @param string $path
- * @return string|false
- * @static
+ * @return string|false
+ * @static
*/
public static function mimeType($path)
{
@@ -8140,8 +8108,8 @@ namespace Illuminate\Support\Facades {
* Get the file size of a given file.
*
* @param string $path
- * @return int
- * @static
+ * @return int
+ * @static
*/
public static function size($path)
{
@@ -8153,8 +8121,8 @@ namespace Illuminate\Support\Facades {
* Get the file's last modification time.
*
* @param string $path
- * @return int
- * @static
+ * @return int
+ * @static
*/
public static function lastModified($path)
{
@@ -8166,8 +8134,8 @@ namespace Illuminate\Support\Facades {
* Determine if the given path is a directory.
*
* @param string $directory
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function isDirectory($directory)
{
@@ -8180,8 +8148,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $directory
* @param bool $ignoreDotFiles
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function isEmptyDirectory($directory, $ignoreDotFiles = false)
{
@@ -8193,8 +8161,8 @@ namespace Illuminate\Support\Facades {
* Determine if the given path is readable.
*
* @param string $path
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function isReadable($path)
{
@@ -8206,8 +8174,8 @@ namespace Illuminate\Support\Facades {
* Determine if the given path is writable.
*
* @param string $path
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function isWritable($path)
{
@@ -8220,8 +8188,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $firstFile
* @param string $secondFile
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function hasSameHash($firstFile, $secondFile)
{
@@ -8233,8 +8201,8 @@ namespace Illuminate\Support\Facades {
* Determine if the given path is a file.
*
* @param string $file
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function isFile($file)
{
@@ -8247,8 +8215,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $pattern
* @param int $flags
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function glob($pattern, $flags = 0)
{
@@ -8261,8 +8229,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $directory
* @param bool $hidden
- * @return \Symfony\Component\Finder\SplFileInfo[]
- * @static
+ * @return \Symfony\Component\Finder\SplFileInfo[]
+ * @static
*/
public static function files($directory, $hidden = false)
{
@@ -8275,8 +8243,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $directory
* @param bool $hidden
- * @return \Symfony\Component\Finder\SplFileInfo[]
- * @static
+ * @return \Symfony\Component\Finder\SplFileInfo[]
+ * @static
*/
public static function allFiles($directory, $hidden = false)
{
@@ -8288,8 +8256,8 @@ namespace Illuminate\Support\Facades {
* Get all of the directories within a given directory.
*
* @param string $directory
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function directories($directory)
{
@@ -8303,8 +8271,8 @@ namespace Illuminate\Support\Facades {
* @param string $path
* @param int $mode
* @param bool $recursive
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function ensureDirectoryExists($path, $mode = 493, $recursive = true)
{
@@ -8319,8 +8287,8 @@ namespace Illuminate\Support\Facades {
* @param int $mode
* @param bool $recursive
* @param bool $force
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function makeDirectory($path, $mode = 493, $recursive = false, $force = false)
{
@@ -8334,8 +8302,8 @@ namespace Illuminate\Support\Facades {
* @param string $from
* @param string $to
* @param bool $overwrite
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function moveDirectory($from, $to, $overwrite = false)
{
@@ -8349,8 +8317,8 @@ namespace Illuminate\Support\Facades {
* @param string $directory
* @param string $destination
* @param int|null $options
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function copyDirectory($directory, $destination, $options = null)
{
@@ -8360,13 +8328,13 @@ namespace Illuminate\Support\Facades {
/**
* Recursively delete a directory.
- *
+ *
* The directory itself may be optionally preserved.
*
* @param string $directory
* @param bool $preserve
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function deleteDirectory($directory, $preserve = false)
{
@@ -8378,8 +8346,8 @@ namespace Illuminate\Support\Facades {
* Remove all of the directories within a given directory.
*
* @param string $directory
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function deleteDirectories($directory)
{
@@ -8391,8 +8359,8 @@ namespace Illuminate\Support\Facades {
* Empty the specified directory of all files and folders.
*
* @param string $directory
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function cleanDirectory($directory)
{
@@ -8408,8 +8376,8 @@ namespace Illuminate\Support\Facades {
* @param (\Closure($this): TWhenParameter)|TWhenParameter|null $value
* @param (callable($this, TWhenParameter): TWhenReturnType)|null $callback
* @param (callable($this, TWhenParameter): TWhenReturnType)|null $default
- * @return $this|TWhenReturnType
- * @static
+ * @return $this|TWhenReturnType
+ * @static
*/
public static function when($value = null, $callback = null, $default = null)
{
@@ -8425,8 +8393,8 @@ namespace Illuminate\Support\Facades {
* @param (\Closure($this): TUnlessParameter)|TUnlessParameter|null $value
* @param (callable($this, TUnlessParameter): TUnlessReturnType)|null $callback
* @param (callable($this, TUnlessParameter): TUnlessReturnType)|null $default
- * @return $this|TUnlessReturnType
- * @static
+ * @return $this|TUnlessReturnType
+ * @static
*/
public static function unless($value = null, $callback = null, $default = null)
{
@@ -8440,8 +8408,8 @@ namespace Illuminate\Support\Facades {
* @param string $name
* @param object|callable $macro
* @param-closure-this static $macro
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function macro($name, $macro)
{
@@ -8453,9 +8421,9 @@ namespace Illuminate\Support\Facades {
*
* @param object $mixin
* @param bool $replace
- * @return void
+ * @return void
* @throws \ReflectionException
- * @static
+ * @static
*/
public static function mixin($mixin, $replace = true)
{
@@ -8466,8 +8434,8 @@ namespace Illuminate\Support\Facades {
* Checks if macro is registered.
*
* @param string $name
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function hasMacro($name)
{
@@ -8477,8 +8445,8 @@ namespace Illuminate\Support\Facades {
/**
* Flush the existing macros.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function flushMacros()
{
@@ -8487,8 +8455,6 @@ namespace Illuminate\Support\Facades {
}
/**
- *
- *
* @see \Illuminate\Auth\Access\Gate
*/
class Gate {
@@ -8496,8 +8462,8 @@ namespace Illuminate\Support\Facades {
* Determine if a given ability has been defined.
*
* @param string|array $ability
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function has($ability)
{
@@ -8511,9 +8477,9 @@ namespace Illuminate\Support\Facades {
* @param \Illuminate\Auth\Access\Response|\Closure|bool $condition
* @param string|null $message
* @param string|null $code
- * @return \Illuminate\Auth\Access\Response
+ * @return \Illuminate\Auth\Access\Response
* @throws \Illuminate\Auth\Access\AuthorizationException
- * @static
+ * @static
*/
public static function allowIf($condition, $message = null, $code = null)
{
@@ -8527,9 +8493,9 @@ namespace Illuminate\Support\Facades {
* @param \Illuminate\Auth\Access\Response|\Closure|bool $condition
* @param string|null $message
* @param string|null $code
- * @return \Illuminate\Auth\Access\Response
+ * @return \Illuminate\Auth\Access\Response
* @throws \Illuminate\Auth\Access\AuthorizationException
- * @static
+ * @static
*/
public static function denyIf($condition, $message = null, $code = null)
{
@@ -8542,9 +8508,9 @@ namespace Illuminate\Support\Facades {
*
* @param \UnitEnum|string $ability
* @param callable|array|string $callback
- * @return \Illuminate\Auth\Access\Gate
+ * @return \Illuminate\Auth\Access\Gate
* @throws \InvalidArgumentException
- * @static
+ * @static
*/
public static function define($ability, $callback)
{
@@ -8558,8 +8524,8 @@ namespace Illuminate\Support\Facades {
* @param string $name
* @param string $class
* @param array|null $abilities
- * @return \Illuminate\Auth\Access\Gate
- * @static
+ * @return \Illuminate\Auth\Access\Gate
+ * @static
*/
public static function resource($name, $class, $abilities = null)
{
@@ -8572,8 +8538,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $class
* @param string $policy
- * @return \Illuminate\Auth\Access\Gate
- * @static
+ * @return \Illuminate\Auth\Access\Gate
+ * @static
*/
public static function policy($class, $policy)
{
@@ -8585,8 +8551,8 @@ namespace Illuminate\Support\Facades {
* Register a callback to run before all Gate checks.
*
* @param callable $callback
- * @return \Illuminate\Auth\Access\Gate
- * @static
+ * @return \Illuminate\Auth\Access\Gate
+ * @static
*/
public static function before($callback)
{
@@ -8598,8 +8564,8 @@ namespace Illuminate\Support\Facades {
* Register a callback to run after all Gate checks.
*
* @param callable $callback
- * @return \Illuminate\Auth\Access\Gate
- * @static
+ * @return \Illuminate\Auth\Access\Gate
+ * @static
*/
public static function after($callback)
{
@@ -8612,8 +8578,8 @@ namespace Illuminate\Support\Facades {
*
* @param iterable|\UnitEnum|string $ability
* @param array|mixed $arguments
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function allows($ability, $arguments = [])
{
@@ -8626,8 +8592,8 @@ namespace Illuminate\Support\Facades {
*
* @param iterable|\UnitEnum|string $ability
* @param array|mixed $arguments
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function denies($ability, $arguments = [])
{
@@ -8640,8 +8606,8 @@ namespace Illuminate\Support\Facades {
*
* @param iterable|\UnitEnum|string $abilities
* @param array|mixed $arguments
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function check($abilities, $arguments = [])
{
@@ -8654,8 +8620,8 @@ namespace Illuminate\Support\Facades {
*
* @param iterable|\UnitEnum|string $abilities
* @param array|mixed $arguments
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function any($abilities, $arguments = [])
{
@@ -8668,8 +8634,8 @@ namespace Illuminate\Support\Facades {
*
* @param iterable|\UnitEnum|string $abilities
* @param array|mixed $arguments
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function none($abilities, $arguments = [])
{
@@ -8682,9 +8648,9 @@ namespace Illuminate\Support\Facades {
*
* @param \UnitEnum|string $ability
* @param array|mixed $arguments
- * @return \Illuminate\Auth\Access\Response
+ * @return \Illuminate\Auth\Access\Response
* @throws \Illuminate\Auth\Access\AuthorizationException
- * @static
+ * @static
*/
public static function authorize($ability, $arguments = [])
{
@@ -8697,8 +8663,8 @@ namespace Illuminate\Support\Facades {
*
* @param \UnitEnum|string $ability
* @param array|mixed $arguments
- * @return \Illuminate\Auth\Access\Response
- * @static
+ * @return \Illuminate\Auth\Access\Response
+ * @static
*/
public static function inspect($ability, $arguments = [])
{
@@ -8711,9 +8677,9 @@ namespace Illuminate\Support\Facades {
*
* @param string $ability
* @param array|mixed $arguments
- * @return mixed
+ * @return mixed
* @throws \Illuminate\Auth\Access\AuthorizationException
- * @static
+ * @static
*/
public static function raw($ability, $arguments = [])
{
@@ -8725,8 +8691,8 @@ namespace Illuminate\Support\Facades {
* Get a policy instance for a given class.
*
* @param object|string $class
- * @return mixed
- * @static
+ * @return mixed
+ * @static
*/
public static function getPolicyFor($class)
{
@@ -8738,8 +8704,8 @@ namespace Illuminate\Support\Facades {
* Specify a callback to be used to guess policy names.
*
* @param callable $callback
- * @return \Illuminate\Auth\Access\Gate
- * @static
+ * @return \Illuminate\Auth\Access\Gate
+ * @static
*/
public static function guessPolicyNamesUsing($callback)
{
@@ -8751,9 +8717,9 @@ namespace Illuminate\Support\Facades {
* Build a policy class instance of the given type.
*
* @param object|string $class
- * @return mixed
+ * @return mixed
* @throws \Illuminate\Contracts\Container\BindingResolutionException
- * @static
+ * @static
*/
public static function resolvePolicy($class)
{
@@ -8765,8 +8731,8 @@ namespace Illuminate\Support\Facades {
* Get a gate instance for the given user.
*
* @param \Illuminate\Contracts\Auth\Authenticatable|mixed $user
- * @return static
- * @static
+ * @return static
+ * @static
*/
public static function forUser($user)
{
@@ -8777,8 +8743,8 @@ namespace Illuminate\Support\Facades {
/**
* Get all of the defined abilities.
*
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function abilities()
{
@@ -8789,8 +8755,8 @@ namespace Illuminate\Support\Facades {
/**
* Get all of the defined policies.
*
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function policies()
{
@@ -8802,8 +8768,8 @@ namespace Illuminate\Support\Facades {
* Set the default denial response for gates and policies.
*
* @param \Illuminate\Auth\Access\Response $response
- * @return \Illuminate\Auth\Access\Gate
- * @static
+ * @return \Illuminate\Auth\Access\Gate
+ * @static
*/
public static function defaultDenialResponse($response)
{
@@ -8815,8 +8781,8 @@ namespace Illuminate\Support\Facades {
* Set the container instance used by the gate.
*
* @param \Illuminate\Contracts\Container\Container $container
- * @return \Illuminate\Auth\Access\Gate
- * @static
+ * @return \Illuminate\Auth\Access\Gate
+ * @static
*/
public static function setContainer($container)
{
@@ -8830,8 +8796,8 @@ namespace Illuminate\Support\Facades {
* @param int $status
* @param string|null $message
* @param int|null $code
- * @return \Illuminate\Auth\Access\Response
- * @static
+ * @return \Illuminate\Auth\Access\Response
+ * @static
*/
public static function denyWithStatus($status, $message = null, $code = null)
{
@@ -8844,8 +8810,8 @@ namespace Illuminate\Support\Facades {
*
* @param string|null $message
* @param int|null $code
- * @return \Illuminate\Auth\Access\Response
- * @static
+ * @return \Illuminate\Auth\Access\Response
+ * @static
*/
public static function denyAsNotFound($message = null, $code = null)
{
@@ -8855,8 +8821,6 @@ namespace Illuminate\Support\Facades {
}
/**
- *
- *
* @see \Illuminate\Hashing\HashManager
* @see \Illuminate\Hashing\AbstractHasher
*/
@@ -8864,8 +8828,8 @@ namespace Illuminate\Support\Facades {
/**
* Create an instance of the Bcrypt hash Driver.
*
- * @return \Illuminate\Hashing\BcryptHasher
- * @static
+ * @return \Illuminate\Hashing\BcryptHasher
+ * @static
*/
public static function createBcryptDriver()
{
@@ -8876,8 +8840,8 @@ namespace Illuminate\Support\Facades {
/**
* Create an instance of the Argon2i hash Driver.
*
- * @return \Illuminate\Hashing\ArgonHasher
- * @static
+ * @return \Illuminate\Hashing\ArgonHasher
+ * @static
*/
public static function createArgonDriver()
{
@@ -8888,8 +8852,8 @@ namespace Illuminate\Support\Facades {
/**
* Create an instance of the Argon2id hash Driver.
*
- * @return \Illuminate\Hashing\Argon2IdHasher
- * @static
+ * @return \Illuminate\Hashing\Argon2IdHasher
+ * @static
*/
public static function createArgon2idDriver()
{
@@ -8901,8 +8865,8 @@ namespace Illuminate\Support\Facades {
* Get information about the given hashed value.
*
* @param string $hashedValue
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function info($hashedValue)
{
@@ -8915,8 +8879,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $value
* @param array $options
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function make($value, $options = [])
{
@@ -8930,8 +8894,8 @@ namespace Illuminate\Support\Facades {
* @param string $value
* @param string $hashedValue
* @param array $options
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function check($value, $hashedValue, $options = [])
{
@@ -8944,8 +8908,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $hashedValue
* @param array $options
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function needsRehash($hashedValue, $options = [])
{
@@ -8957,8 +8921,8 @@ namespace Illuminate\Support\Facades {
* Determine if a given string is already hashed.
*
* @param string $value
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function isHashed($value)
{
@@ -8969,8 +8933,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the default driver name.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function getDefaultDriver()
{
@@ -8982,9 +8946,9 @@ namespace Illuminate\Support\Facades {
* Verifies that the configuration is less than or equal to what is configured.
*
* @param array $value
- * @return bool
- * @internal
- * @static
+ * @return bool
+ * @internal
+ * @static
*/
public static function verifyConfiguration($value)
{
@@ -8996,9 +8960,9 @@ namespace Illuminate\Support\Facades {
* Get a driver instance.
*
* @param string|null $driver
- * @return mixed
+ * @return mixed
* @throws \InvalidArgumentException
- * @static
+ * @static
*/
public static function driver($driver = null)
{
@@ -9012,8 +8976,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $driver
* @param \Closure $callback
- * @return \Illuminate\Hashing\HashManager
- * @static
+ * @return \Illuminate\Hashing\HashManager
+ * @static
*/
public static function extend($driver, $callback)
{
@@ -9025,8 +8989,8 @@ namespace Illuminate\Support\Facades {
/**
* Get all of the created "drivers".
*
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function getDrivers()
{
@@ -9038,8 +9002,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the container instance used by the manager.
*
- * @return \Illuminate\Contracts\Container\Container
- * @static
+ * @return \Illuminate\Contracts\Container\Container
+ * @static
*/
public static function getContainer()
{
@@ -9052,8 +9016,8 @@ namespace Illuminate\Support\Facades {
* Set the container instance used by the manager.
*
* @param \Illuminate\Contracts\Container\Container $container
- * @return \Illuminate\Hashing\HashManager
- * @static
+ * @return \Illuminate\Hashing\HashManager
+ * @static
*/
public static function setContainer($container)
{
@@ -9065,8 +9029,8 @@ namespace Illuminate\Support\Facades {
/**
* Forget all of the resolved driver instances.
*
- * @return \Illuminate\Hashing\HashManager
- * @static
+ * @return \Illuminate\Hashing\HashManager
+ * @static
*/
public static function forgetDrivers()
{
@@ -9077,8 +9041,6 @@ namespace Illuminate\Support\Facades {
}
/**
- *
- *
* @method static \Illuminate\Http\Client\PendingRequest baseUrl(string $url)
* @method static \Illuminate\Http\Client\PendingRequest withBody(\Psr\Http\Message\StreamInterface|string $content, string $contentType = 'application/json')
* @method static \Illuminate\Http\Client\PendingRequest asJson()
@@ -9148,8 +9110,8 @@ namespace Illuminate\Support\Facades {
* Add middleware to apply to every request.
*
* @param callable $middleware
- * @return \Illuminate\Http\Client\Factory
- * @static
+ * @return \Illuminate\Http\Client\Factory
+ * @static
*/
public static function globalMiddleware($middleware)
{
@@ -9161,8 +9123,8 @@ namespace Illuminate\Support\Facades {
* Add request middleware to apply to every request.
*
* @param callable $middleware
- * @return \Illuminate\Http\Client\Factory
- * @static
+ * @return \Illuminate\Http\Client\Factory
+ * @static
*/
public static function globalRequestMiddleware($middleware)
{
@@ -9174,8 +9136,8 @@ namespace Illuminate\Support\Facades {
* Add response middleware to apply to every request.
*
* @param callable $middleware
- * @return \Illuminate\Http\Client\Factory
- * @static
+ * @return \Illuminate\Http\Client\Factory
+ * @static
*/
public static function globalResponseMiddleware($middleware)
{
@@ -9187,8 +9149,8 @@ namespace Illuminate\Support\Facades {
* Set the options to apply to every request.
*
* @param \Closure|array $options
- * @return \Illuminate\Http\Client\Factory
- * @static
+ * @return \Illuminate\Http\Client\Factory
+ * @static
*/
public static function globalOptions($options)
{
@@ -9202,8 +9164,8 @@ namespace Illuminate\Support\Facades {
* @param array|string|null $body
* @param int $status
* @param array $headers
- * @return \GuzzleHttp\Promise\PromiseInterface
- * @static
+ * @return \GuzzleHttp\Promise\PromiseInterface
+ * @static
*/
public static function response($body = null, $status = 200, $headers = [])
{
@@ -9214,8 +9176,8 @@ namespace Illuminate\Support\Facades {
* Create a new connection exception for use during stubbing.
*
* @param string|null $message
- * @return \GuzzleHttp\Promise\PromiseInterface
- * @static
+ * @return \GuzzleHttp\Promise\PromiseInterface
+ * @static
*/
public static function failedConnection($message = null)
{
@@ -9226,8 +9188,8 @@ namespace Illuminate\Support\Facades {
* Get an invokable object that returns a sequence of responses in order for use during stubbing.
*
* @param array $responses
- * @return \Illuminate\Http\Client\ResponseSequence
- * @static
+ * @return \Illuminate\Http\Client\ResponseSequence
+ * @static
*/
public static function sequence($responses = [])
{
@@ -9239,8 +9201,8 @@ namespace Illuminate\Support\Facades {
* Register a stub callable that will intercept requests and be able to return stub responses.
*
* @param callable|array|null $callback
- * @return \Illuminate\Http\Client\Factory
- * @static
+ * @return \Illuminate\Http\Client\Factory
+ * @static
*/
public static function fake($callback = null)
{
@@ -9252,8 +9214,8 @@ namespace Illuminate\Support\Facades {
* Register a response sequence for the given URL pattern.
*
* @param string $url
- * @return \Illuminate\Http\Client\ResponseSequence
- * @static
+ * @return \Illuminate\Http\Client\ResponseSequence
+ * @static
*/
public static function fakeSequence($url = '*')
{
@@ -9266,8 +9228,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $url
* @param \Illuminate\Http\Client\Response|\GuzzleHttp\Promise\PromiseInterface|callable|int|string|array $callback
- * @return \Illuminate\Http\Client\Factory
- * @static
+ * @return \Illuminate\Http\Client\Factory
+ * @static
*/
public static function stubUrl($url, $callback)
{
@@ -9279,8 +9241,8 @@ namespace Illuminate\Support\Facades {
* Indicate that an exception should be thrown if any request is not faked.
*
* @param bool $prevent
- * @return \Illuminate\Http\Client\Factory
- * @static
+ * @return \Illuminate\Http\Client\Factory
+ * @static
*/
public static function preventStrayRequests($prevent = true)
{
@@ -9291,8 +9253,8 @@ namespace Illuminate\Support\Facades {
/**
* Determine if stray requests are being prevented.
*
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function preventingStrayRequests()
{
@@ -9303,8 +9265,8 @@ namespace Illuminate\Support\Facades {
/**
* Indicate that an exception should not be thrown if any request is not faked.
*
- * @return \Illuminate\Http\Client\Factory
- * @static
+ * @return \Illuminate\Http\Client\Factory
+ * @static
*/
public static function allowStrayRequests()
{
@@ -9317,8 +9279,8 @@ namespace Illuminate\Support\Facades {
*
* @param \Illuminate\Http\Client\Request $request
* @param \Illuminate\Http\Client\Response|null $response
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function recordRequestResponsePair($request, $response)
{
@@ -9330,8 +9292,8 @@ namespace Illuminate\Support\Facades {
* Assert that a request / response pair was recorded matching a given truth test.
*
* @param callable $callback
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function assertSent($callback)
{
@@ -9343,8 +9305,8 @@ namespace Illuminate\Support\Facades {
* Assert that the given request was sent in the given order.
*
* @param array $callbacks
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function assertSentInOrder($callbacks)
{
@@ -9356,8 +9318,8 @@ namespace Illuminate\Support\Facades {
* Assert that a request / response pair was not recorded matching a given truth test.
*
* @param callable $callback
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function assertNotSent($callback)
{
@@ -9368,8 +9330,8 @@ namespace Illuminate\Support\Facades {
/**
* Assert that no request / response pair was recorded.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function assertNothingSent()
{
@@ -9381,8 +9343,8 @@ namespace Illuminate\Support\Facades {
* Assert how many requests have been recorded.
*
* @param int $count
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function assertSentCount($count)
{
@@ -9393,8 +9355,8 @@ namespace Illuminate\Support\Facades {
/**
* Assert that every created response sequence is empty.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function assertSequencesAreEmpty()
{
@@ -9406,8 +9368,8 @@ namespace Illuminate\Support\Facades {
* Get a collection of the request / response pairs matching the given truth test.
*
* @param callable $callback
- * @return \Illuminate\Support\Collection
- * @static
+ * @return \Illuminate\Support\Collection
+ * @static
*/
public static function recorded($callback = null)
{
@@ -9418,8 +9380,8 @@ namespace Illuminate\Support\Facades {
/**
* Create a new pending request instance for this factory.
*
- * @return \Illuminate\Http\Client\PendingRequest
- * @static
+ * @return \Illuminate\Http\Client\PendingRequest
+ * @static
*/
public static function createPendingRequest()
{
@@ -9430,8 +9392,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the current event dispatcher implementation.
*
- * @return \Illuminate\Contracts\Events\Dispatcher|null
- * @static
+ * @return \Illuminate\Contracts\Events\Dispatcher|null
+ * @static
*/
public static function getDispatcher()
{
@@ -9442,8 +9404,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the array of global middleware.
*
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function getGlobalMiddleware()
{
@@ -9457,8 +9419,8 @@ namespace Illuminate\Support\Facades {
* @param string $name
* @param object|callable $macro
* @param-closure-this static $macro
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function macro($name, $macro)
{
@@ -9470,9 +9432,9 @@ namespace Illuminate\Support\Facades {
*
* @param object $mixin
* @param bool $replace
- * @return void
+ * @return void
* @throws \ReflectionException
- * @static
+ * @static
*/
public static function mixin($mixin, $replace = true)
{
@@ -9483,8 +9445,8 @@ namespace Illuminate\Support\Facades {
* Checks if macro is registered.
*
* @param string $name
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function hasMacro($name)
{
@@ -9494,8 +9456,8 @@ namespace Illuminate\Support\Facades {
/**
* Flush the existing macros.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function flushMacros()
{
@@ -9507,9 +9469,9 @@ namespace Illuminate\Support\Facades {
*
* @param string $method
* @param array $parameters
- * @return mixed
+ * @return mixed
* @throws \BadMethodCallException
- * @static
+ * @static
*/
public static function macroCall($method, $parameters)
{
@@ -9519,8 +9481,6 @@ namespace Illuminate\Support\Facades {
}
/**
- *
- *
* @see \Illuminate\Translation\Translator
*/
class Lang {
@@ -9529,8 +9489,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $key
* @param string|null $locale
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function hasForLocale($key, $locale = null)
{
@@ -9544,8 +9504,8 @@ namespace Illuminate\Support\Facades {
* @param string $key
* @param string|null $locale
* @param bool $fallback
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function has($key, $locale = null, $fallback = true)
{
@@ -9560,8 +9520,8 @@ namespace Illuminate\Support\Facades {
* @param array $replace
* @param string|null $locale
* @param bool $fallback
- * @return string|array
- * @static
+ * @return string|array
+ * @static
*/
public static function get($key, $replace = [], $locale = null, $fallback = true)
{
@@ -9576,8 +9536,8 @@ namespace Illuminate\Support\Facades {
* @param \Countable|int|float|array $number
* @param array $replace
* @param string|null $locale
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function choice($key, $number, $replace = [], $locale = null)
{
@@ -9591,8 +9551,8 @@ namespace Illuminate\Support\Facades {
* @param array $lines
* @param string $locale
* @param string $namespace
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function addLines($lines, $locale, $namespace = '*')
{
@@ -9606,8 +9566,8 @@ namespace Illuminate\Support\Facades {
* @param string $namespace
* @param string $group
* @param string $locale
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function load($namespace, $group, $locale)
{
@@ -9619,8 +9579,8 @@ namespace Illuminate\Support\Facades {
* Register a callback that is responsible for handling missing translation keys.
*
* @param callable|null $callback
- * @return static
- * @static
+ * @return static
+ * @static
*/
public static function handleMissingKeysUsing($callback)
{
@@ -9633,8 +9593,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $namespace
* @param string $hint
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function addNamespace($namespace, $hint)
{
@@ -9646,8 +9606,8 @@ namespace Illuminate\Support\Facades {
* Add a new path to the loader.
*
* @param string $path
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function addPath($path)
{
@@ -9659,8 +9619,8 @@ namespace Illuminate\Support\Facades {
* Add a new JSON path to the loader.
*
* @param string $path
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function addJsonPath($path)
{
@@ -9672,8 +9632,8 @@ namespace Illuminate\Support\Facades {
* Parse a key into namespace, group, and item.
*
* @param string $key
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function parseKey($key)
{
@@ -9685,8 +9645,8 @@ namespace Illuminate\Support\Facades {
* Specify a callback that should be invoked to determined the applicable locale array.
*
* @param callable $callback
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function determineLocalesUsing($callback)
{
@@ -9697,8 +9657,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the message selector instance.
*
- * @return \Illuminate\Translation\MessageSelector
- * @static
+ * @return \Illuminate\Translation\MessageSelector
+ * @static
*/
public static function getSelector()
{
@@ -9710,8 +9670,8 @@ namespace Illuminate\Support\Facades {
* Set the message selector instance.
*
* @param \Illuminate\Translation\MessageSelector $selector
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function setSelector($selector)
{
@@ -9722,8 +9682,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the language line loader implementation.
*
- * @return \Illuminate\Contracts\Translation\Loader
- * @static
+ * @return \Illuminate\Contracts\Translation\Loader
+ * @static
*/
public static function getLoader()
{
@@ -9734,8 +9694,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the default locale being used.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function locale()
{
@@ -9746,8 +9706,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the default locale being used.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function getLocale()
{
@@ -9759,9 +9719,9 @@ namespace Illuminate\Support\Facades {
* Set the default locale.
*
* @param string $locale
- * @return void
+ * @return void
* @throws \InvalidArgumentException
- * @static
+ * @static
*/
public static function setLocale($locale)
{
@@ -9772,8 +9732,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the fallback locale being used.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function getFallback()
{
@@ -9785,8 +9745,8 @@ namespace Illuminate\Support\Facades {
* Set the fallback locale being used.
*
* @param string $fallback
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function setFallback($fallback)
{
@@ -9798,8 +9758,8 @@ namespace Illuminate\Support\Facades {
* Set the loaded translation groups.
*
* @param array $loaded
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function setLoaded($loaded)
{
@@ -9812,8 +9772,8 @@ namespace Illuminate\Support\Facades {
*
* @param callable|string $class
* @param callable|null $handler
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function stringable($class, $handler = null)
{
@@ -9826,8 +9786,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $key
* @param array $parsed
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function setParsedKey($key, $parsed)
{
@@ -9839,8 +9799,8 @@ namespace Illuminate\Support\Facades {
/**
* Flush the cache of parsed keys.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function flushParsedKeys()
{
@@ -9855,8 +9815,8 @@ namespace Illuminate\Support\Facades {
* @param string $name
* @param object|callable $macro
* @param-closure-this static $macro
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function macro($name, $macro)
{
@@ -9868,9 +9828,9 @@ namespace Illuminate\Support\Facades {
*
* @param object $mixin
* @param bool $replace
- * @return void
+ * @return void
* @throws \ReflectionException
- * @static
+ * @static
*/
public static function mixin($mixin, $replace = true)
{
@@ -9881,8 +9841,8 @@ namespace Illuminate\Support\Facades {
* Checks if macro is registered.
*
* @param string $name
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function hasMacro($name)
{
@@ -9892,8 +9852,8 @@ namespace Illuminate\Support\Facades {
/**
* Flush the existing macros.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function flushMacros()
{
@@ -9902,8 +9862,6 @@ namespace Illuminate\Support\Facades {
}
/**
- *
- *
* @method static void write(string $level, \Illuminate\Contracts\Support\Arrayable|\Illuminate\Contracts\Support\Jsonable|\Illuminate\Support\Stringable|array|string $message, array $context = [])
* @method static \Illuminate\Log\Logger withContext(array $context = [])
* @method static void listen(\Closure $callback)
@@ -9919,8 +9877,8 @@ namespace Illuminate\Support\Facades {
* Build an on-demand log channel.
*
* @param array $config
- * @return \Psr\Log\LoggerInterface
- * @static
+ * @return \Psr\Log\LoggerInterface
+ * @static
*/
public static function build($config)
{
@@ -9933,8 +9891,8 @@ namespace Illuminate\Support\Facades {
*
* @param array $channels
* @param string|null $channel
- * @return \Psr\Log\LoggerInterface
- * @static
+ * @return \Psr\Log\LoggerInterface
+ * @static
*/
public static function stack($channels, $channel = null)
{
@@ -9946,8 +9904,8 @@ namespace Illuminate\Support\Facades {
* Get a log channel instance.
*
* @param string|null $channel
- * @return \Psr\Log\LoggerInterface
- * @static
+ * @return \Psr\Log\LoggerInterface
+ * @static
*/
public static function channel($channel = null)
{
@@ -9959,8 +9917,8 @@ namespace Illuminate\Support\Facades {
* Get a log driver instance.
*
* @param string|null $driver
- * @return \Psr\Log\LoggerInterface
- * @static
+ * @return \Psr\Log\LoggerInterface
+ * @static
*/
public static function driver($driver = null)
{
@@ -9972,8 +9930,8 @@ namespace Illuminate\Support\Facades {
* Share context across channels and stacks.
*
* @param array $context
- * @return \Illuminate\Log\LogManager
- * @static
+ * @return \Illuminate\Log\LogManager
+ * @static
*/
public static function shareContext($context)
{
@@ -9984,8 +9942,8 @@ namespace Illuminate\Support\Facades {
/**
* The context shared across channels and stacks.
*
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function sharedContext()
{
@@ -9996,8 +9954,8 @@ namespace Illuminate\Support\Facades {
/**
* Flush the log context on all currently resolved channels.
*
- * @return \Illuminate\Log\LogManager
- * @static
+ * @return \Illuminate\Log\LogManager
+ * @static
*/
public static function withoutContext()
{
@@ -10008,8 +9966,8 @@ namespace Illuminate\Support\Facades {
/**
* Flush the shared context.
*
- * @return \Illuminate\Log\LogManager
- * @static
+ * @return \Illuminate\Log\LogManager
+ * @static
*/
public static function flushSharedContext()
{
@@ -10020,8 +9978,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the default log driver name.
*
- * @return string|null
- * @static
+ * @return string|null
+ * @static
*/
public static function getDefaultDriver()
{
@@ -10033,8 +9991,8 @@ namespace Illuminate\Support\Facades {
* Set the default log driver name.
*
* @param string $name
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function setDefaultDriver($name)
{
@@ -10047,8 +10005,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $driver
* @param \Closure $callback
- * @return \Illuminate\Log\LogManager
- * @static
+ * @return \Illuminate\Log\LogManager
+ * @static
*/
public static function extend($driver, $callback)
{
@@ -10060,8 +10018,8 @@ namespace Illuminate\Support\Facades {
* Unset the given channel instance.
*
* @param string|null $driver
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function forgetChannel($driver = null)
{
@@ -10072,8 +10030,8 @@ namespace Illuminate\Support\Facades {
/**
* Get all of the resolved log channels.
*
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function getChannels()
{
@@ -10086,8 +10044,8 @@ namespace Illuminate\Support\Facades {
*
* @param string|\Stringable $message
* @param array $context
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function emergency($message, $context = [])
{
@@ -10097,14 +10055,14 @@ namespace Illuminate\Support\Facades {
/**
* Action must be taken immediately.
- *
+ *
* Example: Entire website down, database unavailable, etc. This should
* trigger the SMS alerts and wake you up.
*
* @param string|\Stringable $message
* @param array $context
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function alert($message, $context = [])
{
@@ -10114,13 +10072,13 @@ namespace Illuminate\Support\Facades {
/**
* Critical conditions.
- *
+ *
* Example: Application component unavailable, unexpected exception.
*
* @param string|\Stringable $message
* @param array $context
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function critical($message, $context = [])
{
@@ -10134,8 +10092,8 @@ namespace Illuminate\Support\Facades {
*
* @param string|\Stringable $message
* @param array $context
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function error($message, $context = [])
{
@@ -10145,14 +10103,14 @@ namespace Illuminate\Support\Facades {
/**
* Exceptional occurrences that are not errors.
- *
+ *
* Example: Use of deprecated APIs, poor use of an API, undesirable things
* that are not necessarily wrong.
*
* @param string|\Stringable $message
* @param array $context
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function warning($message, $context = [])
{
@@ -10165,8 +10123,8 @@ namespace Illuminate\Support\Facades {
*
* @param string|\Stringable $message
* @param array $context
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function notice($message, $context = [])
{
@@ -10176,13 +10134,13 @@ namespace Illuminate\Support\Facades {
/**
* Interesting events.
- *
+ *
* Example: User logs in, SQL logs.
*
* @param string|\Stringable $message
* @param array $context
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function info($message, $context = [])
{
@@ -10195,8 +10153,8 @@ namespace Illuminate\Support\Facades {
*
* @param string|\Stringable $message
* @param array $context
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function debug($message, $context = [])
{
@@ -10210,8 +10168,8 @@ namespace Illuminate\Support\Facades {
* @param mixed $level
* @param string|\Stringable $message
* @param array $context
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function log($level, $message, $context = [])
{
@@ -10223,8 +10181,8 @@ namespace Illuminate\Support\Facades {
* Set the application instance used by the manager.
*
* @param \Illuminate\Contracts\Foundation\Application $app
- * @return \Illuminate\Log\LogManager
- * @static
+ * @return \Illuminate\Log\LogManager
+ * @static
*/
public static function setApplication($app)
{
@@ -10234,8 +10192,6 @@ namespace Illuminate\Support\Facades {
}
/**
- *
- *
* @method static void alwaysFrom(string $address, string|null $name = null)
* @method static void alwaysReplyTo(string $address, string|null $name = null)
* @method static void alwaysReturnPath(string $address)
@@ -10262,8 +10218,8 @@ namespace Illuminate\Support\Facades {
* Get a mailer instance by name.
*
* @param string|null $name
- * @return \Illuminate\Contracts\Mail\Mailer
- * @static
+ * @return \Illuminate\Contracts\Mail\Mailer
+ * @static
*/
public static function mailer($name = null)
{
@@ -10275,8 +10231,8 @@ namespace Illuminate\Support\Facades {
* Get a mailer driver instance.
*
* @param string|null $driver
- * @return \Illuminate\Mail\Mailer
- * @static
+ * @return \Illuminate\Mail\Mailer
+ * @static
*/
public static function driver($driver = null)
{
@@ -10288,8 +10244,8 @@ namespace Illuminate\Support\Facades {
* Build a new mailer instance.
*
* @param array $config
- * @return \Illuminate\Mail\Mailer
- * @static
+ * @return \Illuminate\Mail\Mailer
+ * @static
*/
public static function build($config)
{
@@ -10301,9 +10257,9 @@ namespace Illuminate\Support\Facades {
* Create a new transport instance.
*
* @param array $config
- * @return \Symfony\Component\Mailer\Transport\TransportInterface
+ * @return \Symfony\Component\Mailer\Transport\TransportInterface
* @throws \InvalidArgumentException
- * @static
+ * @static
*/
public static function createSymfonyTransport($config)
{
@@ -10314,8 +10270,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the default mail driver name.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function getDefaultDriver()
{
@@ -10327,8 +10283,8 @@ namespace Illuminate\Support\Facades {
* Set the default mail driver name.
*
* @param string $name
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function setDefaultDriver($name)
{
@@ -10340,8 +10296,8 @@ namespace Illuminate\Support\Facades {
* Disconnect the given mailer and remove from local cache.
*
* @param string|null $name
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function purge($name = null)
{
@@ -10354,8 +10310,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $driver
* @param \Closure $callback
- * @return \Illuminate\Mail\MailManager
- * @static
+ * @return \Illuminate\Mail\MailManager
+ * @static
*/
public static function extend($driver, $callback)
{
@@ -10366,8 +10322,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the application instance used by the manager.
*
- * @return \Illuminate\Contracts\Foundation\Application
- * @static
+ * @return \Illuminate\Contracts\Foundation\Application
+ * @static
*/
public static function getApplication()
{
@@ -10379,8 +10335,8 @@ namespace Illuminate\Support\Facades {
* Set the application instance used by the manager.
*
* @param \Illuminate\Contracts\Foundation\Application $app
- * @return \Illuminate\Mail\MailManager
- * @static
+ * @return \Illuminate\Mail\MailManager
+ * @static
*/
public static function setApplication($app)
{
@@ -10391,8 +10347,8 @@ namespace Illuminate\Support\Facades {
/**
* Forget all of the resolved mailer instances.
*
- * @return \Illuminate\Mail\MailManager
- * @static
+ * @return \Illuminate\Mail\MailManager
+ * @static
*/
public static function forgetMailers()
{
@@ -10405,8 +10361,8 @@ namespace Illuminate\Support\Facades {
*
* @param string|\Closure $mailable
* @param callable|array|string|int|null $callback
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function assertSent($mailable, $callback = null)
{
@@ -10419,8 +10375,8 @@ namespace Illuminate\Support\Facades {
*
* @param string|\Closure $mailable
* @param callable|null $callback
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function assertNotOutgoing($mailable, $callback = null)
{
@@ -10433,8 +10389,8 @@ namespace Illuminate\Support\Facades {
*
* @param string|\Closure $mailable
* @param callable|array|string|null $callback
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function assertNotSent($mailable, $callback = null)
{
@@ -10445,8 +10401,8 @@ namespace Illuminate\Support\Facades {
/**
* Assert that no mailables were sent or queued to be sent.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function assertNothingOutgoing()
{
@@ -10457,8 +10413,8 @@ namespace Illuminate\Support\Facades {
/**
* Assert that no mailables were sent.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function assertNothingSent()
{
@@ -10471,8 +10427,8 @@ namespace Illuminate\Support\Facades {
*
* @param string|\Closure $mailable
* @param callable|array|string|int|null $callback
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function assertQueued($mailable, $callback = null)
{
@@ -10485,8 +10441,8 @@ namespace Illuminate\Support\Facades {
*
* @param string|\Closure $mailable
* @param callable|array|string|null $callback
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function assertNotQueued($mailable, $callback = null)
{
@@ -10497,8 +10453,8 @@ namespace Illuminate\Support\Facades {
/**
* Assert that no mailables were queued.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function assertNothingQueued()
{
@@ -10510,8 +10466,8 @@ namespace Illuminate\Support\Facades {
* Assert the total number of mailables that were sent.
*
* @param int $count
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function assertSentCount($count)
{
@@ -10523,8 +10479,8 @@ namespace Illuminate\Support\Facades {
* Assert the total number of mailables that were queued.
*
* @param int $count
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function assertQueuedCount($count)
{
@@ -10536,8 +10492,8 @@ namespace Illuminate\Support\Facades {
* Assert the total number of mailables that were sent or queued.
*
* @param int $count
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function assertOutgoingCount($count)
{
@@ -10550,8 +10506,8 @@ namespace Illuminate\Support\Facades {
*
* @param string|\Closure $mailable
* @param callable|null $callback
- * @return \Illuminate\Support\Collection
- * @static
+ * @return \Illuminate\Support\Collection
+ * @static
*/
public static function sent($mailable, $callback = null)
{
@@ -10563,8 +10519,8 @@ namespace Illuminate\Support\Facades {
* Determine if the given mailable has been sent.
*
* @param string $mailable
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function hasSent($mailable)
{
@@ -10577,8 +10533,8 @@ namespace Illuminate\Support\Facades {
*
* @param string|\Closure $mailable
* @param callable|null $callback
- * @return \Illuminate\Support\Collection
- * @static
+ * @return \Illuminate\Support\Collection
+ * @static
*/
public static function queued($mailable, $callback = null)
{
@@ -10590,8 +10546,8 @@ namespace Illuminate\Support\Facades {
* Determine if the given mailable has been queued.
*
* @param string $mailable
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function hasQueued($mailable)
{
@@ -10603,8 +10559,8 @@ namespace Illuminate\Support\Facades {
* Begin the process of mailing a mailable class instance.
*
* @param mixed $users
- * @return \Illuminate\Mail\PendingMail
- * @static
+ * @return \Illuminate\Mail\PendingMail
+ * @static
*/
public static function to($users)
{
@@ -10616,8 +10572,8 @@ namespace Illuminate\Support\Facades {
* Begin the process of mailing a mailable class instance.
*
* @param mixed $users
- * @return \Illuminate\Mail\PendingMail
- * @static
+ * @return \Illuminate\Mail\PendingMail
+ * @static
*/
public static function cc($users)
{
@@ -10629,8 +10585,8 @@ namespace Illuminate\Support\Facades {
* Begin the process of mailing a mailable class instance.
*
* @param mixed $users
- * @return \Illuminate\Mail\PendingMail
- * @static
+ * @return \Illuminate\Mail\PendingMail
+ * @static
*/
public static function bcc($users)
{
@@ -10643,8 +10599,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $text
* @param \Closure|string $callback
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function raw($text, $callback)
{
@@ -10658,8 +10614,8 @@ namespace Illuminate\Support\Facades {
* @param \Illuminate\Contracts\Mail\Mailable|string|array $view
* @param array $data
* @param \Closure|string|null $callback
- * @return mixed|void
- * @static
+ * @return mixed|void
+ * @static
*/
public static function send($view, $data = [], $callback = null)
{
@@ -10673,8 +10629,8 @@ namespace Illuminate\Support\Facades {
* @param \Illuminate\Contracts\Mail\Mailable|string|array $mailable
* @param array $data
* @param \Closure|string|null $callback
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function sendNow($mailable, $data = [], $callback = null)
{
@@ -10687,8 +10643,8 @@ namespace Illuminate\Support\Facades {
*
* @param \Illuminate\Contracts\Mail\Mailable|string|array $view
* @param string|null $queue
- * @return mixed
- * @static
+ * @return mixed
+ * @static
*/
public static function queue($view, $queue = null)
{
@@ -10702,8 +10658,8 @@ namespace Illuminate\Support\Facades {
* @param \DateTimeInterface|\DateInterval|int $delay
* @param \Illuminate\Contracts\Mail\Mailable|string|array $view
* @param string|null $queue
- * @return mixed
- * @static
+ * @return mixed
+ * @static
*/
public static function later($delay, $view, $queue = null)
{
@@ -10713,8 +10669,6 @@ namespace Illuminate\Support\Facades {
}
/**
- *
- *
* @see \Illuminate\Notifications\ChannelManager
* @see \Illuminate\Support\Testing\Fakes\NotificationFake
*/
@@ -10724,8 +10678,8 @@ namespace Illuminate\Support\Facades {
*
* @param \Illuminate\Support\Collection|array|mixed $notifiables
* @param mixed $notification
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function send($notifiables, $notification)
{
@@ -10739,8 +10693,8 @@ namespace Illuminate\Support\Facades {
* @param \Illuminate\Support\Collection|array|mixed $notifiables
* @param mixed $notification
* @param array|null $channels
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function sendNow($notifiables, $notification, $channels = null)
{
@@ -10752,8 +10706,8 @@ namespace Illuminate\Support\Facades {
* Get a channel instance.
*
* @param string|null $name
- * @return mixed
- * @static
+ * @return mixed
+ * @static
*/
public static function channel($name = null)
{
@@ -10764,8 +10718,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the default channel driver name.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function getDefaultDriver()
{
@@ -10776,8 +10730,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the default channel driver name.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function deliversVia()
{
@@ -10789,8 +10743,8 @@ namespace Illuminate\Support\Facades {
* Set the default channel driver name.
*
* @param string $channel
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function deliverVia($channel)
{
@@ -10802,8 +10756,8 @@ namespace Illuminate\Support\Facades {
* Set the locale of notifications.
*
* @param string $locale
- * @return \Illuminate\Notifications\ChannelManager
- * @static
+ * @return \Illuminate\Notifications\ChannelManager
+ * @static
*/
public static function locale($locale)
{
@@ -10815,9 +10769,9 @@ namespace Illuminate\Support\Facades {
* Get a driver instance.
*
* @param string|null $driver
- * @return mixed
+ * @return mixed
* @throws \InvalidArgumentException
- * @static
+ * @static
*/
public static function driver($driver = null)
{
@@ -10831,8 +10785,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $driver
* @param \Closure $callback
- * @return \Illuminate\Notifications\ChannelManager
- * @static
+ * @return \Illuminate\Notifications\ChannelManager
+ * @static
*/
public static function extend($driver, $callback)
{
@@ -10844,8 +10798,8 @@ namespace Illuminate\Support\Facades {
/**
* Get all of the created "drivers".
*
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function getDrivers()
{
@@ -10857,8 +10811,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the container instance used by the manager.
*
- * @return \Illuminate\Contracts\Container\Container
- * @static
+ * @return \Illuminate\Contracts\Container\Container
+ * @static
*/
public static function getContainer()
{
@@ -10871,8 +10825,8 @@ namespace Illuminate\Support\Facades {
* Set the container instance used by the manager.
*
* @param \Illuminate\Contracts\Container\Container $container
- * @return \Illuminate\Notifications\ChannelManager
- * @static
+ * @return \Illuminate\Notifications\ChannelManager
+ * @static
*/
public static function setContainer($container)
{
@@ -10884,8 +10838,8 @@ namespace Illuminate\Support\Facades {
/**
* Forget all of the resolved driver instances.
*
- * @return \Illuminate\Notifications\ChannelManager
- * @static
+ * @return \Illuminate\Notifications\ChannelManager
+ * @static
*/
public static function forgetDrivers()
{
@@ -10899,9 +10853,9 @@ namespace Illuminate\Support\Facades {
*
* @param string|\Closure $notification
* @param callable|null $callback
- * @return void
+ * @return void
* @throws \Exception
- * @static
+ * @static
*/
public static function assertSentOnDemand($notification, $callback = null)
{
@@ -10915,9 +10869,9 @@ namespace Illuminate\Support\Facades {
* @param mixed $notifiable
* @param string|\Closure $notification
* @param callable|null $callback
- * @return void
+ * @return void
* @throws \Exception
- * @static
+ * @static
*/
public static function assertSentTo($notifiable, $notification, $callback = null)
{
@@ -10930,8 +10884,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $notification
* @param int $times
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function assertSentOnDemandTimes($notification, $times = 1)
{
@@ -10945,8 +10899,8 @@ namespace Illuminate\Support\Facades {
* @param mixed $notifiable
* @param string $notification
* @param int $times
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function assertSentToTimes($notifiable, $notification, $times = 1)
{
@@ -10960,9 +10914,9 @@ namespace Illuminate\Support\Facades {
* @param mixed $notifiable
* @param string|\Closure $notification
* @param callable|null $callback
- * @return void
+ * @return void
* @throws \Exception
- * @static
+ * @static
*/
public static function assertNotSentTo($notifiable, $notification, $callback = null)
{
@@ -10973,8 +10927,8 @@ namespace Illuminate\Support\Facades {
/**
* Assert that no notifications were sent.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function assertNothingSent()
{
@@ -10986,9 +10940,9 @@ namespace Illuminate\Support\Facades {
* Assert that no notifications were sent to the given notifiable.
*
* @param mixed $notifiable
- * @return void
+ * @return void
* @throws \Exception
- * @static
+ * @static
*/
public static function assertNothingSentTo($notifiable)
{
@@ -11001,8 +10955,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $notification
* @param int $expectedCount
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function assertSentTimes($notification, $expectedCount)
{
@@ -11014,8 +10968,8 @@ namespace Illuminate\Support\Facades {
* Assert the total count of notification that were sent.
*
* @param int $expectedCount
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function assertCount($expectedCount)
{
@@ -11029,8 +10983,8 @@ namespace Illuminate\Support\Facades {
* @param mixed $notifiable
* @param string $notification
* @param callable|null $callback
- * @return \Illuminate\Support\Collection
- * @static
+ * @return \Illuminate\Support\Collection
+ * @static
*/
public static function sent($notifiable, $notification, $callback = null)
{
@@ -11043,8 +10997,8 @@ namespace Illuminate\Support\Facades {
*
* @param mixed $notifiable
* @param string $notification
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function hasSent($notifiable, $notification)
{
@@ -11056,8 +11010,8 @@ namespace Illuminate\Support\Facades {
* Specify if notification should be serialized and restored when being "pushed" to the queue.
*
* @param bool $serializeAndRestore
- * @return \Illuminate\Support\Testing\Fakes\NotificationFake
- * @static
+ * @return \Illuminate\Support\Testing\Fakes\NotificationFake
+ * @static
*/
public static function serializeAndRestore($serializeAndRestore = true)
{
@@ -11068,8 +11022,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the notifications that have been sent.
*
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function sentNotifications()
{
@@ -11083,8 +11037,8 @@ namespace Illuminate\Support\Facades {
* @param string $name
* @param object|callable $macro
* @param-closure-this static $macro
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function macro($name, $macro)
{
@@ -11096,9 +11050,9 @@ namespace Illuminate\Support\Facades {
*
* @param object $mixin
* @param bool $replace
- * @return void
+ * @return void
* @throws \ReflectionException
- * @static
+ * @static
*/
public static function mixin($mixin, $replace = true)
{
@@ -11109,8 +11063,8 @@ namespace Illuminate\Support\Facades {
* Checks if macro is registered.
*
* @param string $name
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function hasMacro($name)
{
@@ -11120,8 +11074,8 @@ namespace Illuminate\Support\Facades {
/**
* Flush the existing macros.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function flushMacros()
{
@@ -11130,8 +11084,6 @@ namespace Illuminate\Support\Facades {
}
/**
- *
- *
* @method static string sendResetLink(array $credentials, \Closure|null $callback = null)
* @method static mixed reset(array $credentials, \Closure $callback)
* @method static \Illuminate\Contracts\Auth\CanResetPassword|null getUser(array $credentials)
@@ -11139,6 +11091,7 @@ namespace Illuminate\Support\Facades {
* @method static void deleteToken(\Illuminate\Contracts\Auth\CanResetPassword $user)
* @method static bool tokenExists(\Illuminate\Contracts\Auth\CanResetPassword $user, string $token)
* @method static \Illuminate\Auth\Passwords\TokenRepositoryInterface getRepository()
+ * @method static \Illuminate\Support\Timebox getTimebox()
* @see \Illuminate\Auth\Passwords\PasswordBrokerManager
* @see \Illuminate\Auth\Passwords\PasswordBroker
*/
@@ -11147,8 +11100,8 @@ namespace Illuminate\Support\Facades {
* Attempt to get the broker from the local cache.
*
* @param string|null $name
- * @return \Illuminate\Contracts\Auth\PasswordBroker
- * @static
+ * @return \Illuminate\Contracts\Auth\PasswordBroker
+ * @static
*/
public static function broker($name = null)
{
@@ -11159,8 +11112,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the default password broker name.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function getDefaultDriver()
{
@@ -11172,8 +11125,8 @@ namespace Illuminate\Support\Facades {
* Set the default password broker name.
*
* @param string $name
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function setDefaultDriver($name)
{
@@ -11183,8 +11136,6 @@ namespace Illuminate\Support\Facades {
}
/**
- *
- *
* @see \Illuminate\Queue\QueueManager
* @see \Illuminate\Queue\Queue
* @see \Illuminate\Support\Testing\Fakes\QueueFake
@@ -11194,8 +11145,8 @@ namespace Illuminate\Support\Facades {
* Register an event listener for the before job event.
*
* @param mixed $callback
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function before($callback)
{
@@ -11207,8 +11158,8 @@ namespace Illuminate\Support\Facades {
* Register an event listener for the after job event.
*
* @param mixed $callback
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function after($callback)
{
@@ -11220,8 +11171,8 @@ namespace Illuminate\Support\Facades {
* Register an event listener for the exception occurred job event.
*
* @param mixed $callback
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function exceptionOccurred($callback)
{
@@ -11233,8 +11184,8 @@ namespace Illuminate\Support\Facades {
* Register an event listener for the daemon queue loop.
*
* @param mixed $callback
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function looping($callback)
{
@@ -11246,8 +11197,8 @@ namespace Illuminate\Support\Facades {
* Register an event listener for the failed job event.
*
* @param mixed $callback
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function failing($callback)
{
@@ -11259,8 +11210,8 @@ namespace Illuminate\Support\Facades {
* Register an event listener for the daemon queue stopping.
*
* @param mixed $callback
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function stopping($callback)
{
@@ -11272,8 +11223,8 @@ namespace Illuminate\Support\Facades {
* Determine if the driver is connected.
*
* @param string|null $name
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function connected($name = null)
{
@@ -11285,8 +11236,8 @@ namespace Illuminate\Support\Facades {
* Resolve a queue connection instance.
*
* @param string|null $name
- * @return \Illuminate\Contracts\Queue\Queue
- * @static
+ * @return \Illuminate\Contracts\Queue\Queue
+ * @static
*/
public static function connection($name = null)
{
@@ -11299,8 +11250,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $driver
* @param \Closure $resolver
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function extend($driver, $resolver)
{
@@ -11313,8 +11264,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $driver
* @param \Closure $resolver
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function addConnector($driver, $resolver)
{
@@ -11325,8 +11276,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the name of the default queue connection.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function getDefaultDriver()
{
@@ -11338,8 +11289,8 @@ namespace Illuminate\Support\Facades {
* Set the name of the default queue connection.
*
* @param string $name
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function setDefaultDriver($name)
{
@@ -11351,8 +11302,8 @@ namespace Illuminate\Support\Facades {
* Get the full name for the given connection.
*
* @param string|null $connection
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function getName($connection = null)
{
@@ -11363,8 +11314,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the application instance used by the manager.
*
- * @return \Illuminate\Contracts\Foundation\Application
- * @static
+ * @return \Illuminate\Contracts\Foundation\Application
+ * @static
*/
public static function getApplication()
{
@@ -11376,8 +11327,8 @@ namespace Illuminate\Support\Facades {
* Set the application instance used by the manager.
*
* @param \Illuminate\Contracts\Foundation\Application $app
- * @return \Illuminate\Queue\QueueManager
- * @static
+ * @return \Illuminate\Queue\QueueManager
+ * @static
*/
public static function setApplication($app)
{
@@ -11389,8 +11340,8 @@ namespace Illuminate\Support\Facades {
* Specify the jobs that should be queued instead of faked.
*
* @param array|string $jobsToBeQueued
- * @return \Illuminate\Support\Testing\Fakes\QueueFake
- * @static
+ * @return \Illuminate\Support\Testing\Fakes\QueueFake
+ * @static
*/
public static function except($jobsToBeQueued)
{
@@ -11403,8 +11354,8 @@ namespace Illuminate\Support\Facades {
*
* @param string|\Closure $job
* @param callable|int|null $callback
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function assertPushed($job, $callback = null)
{
@@ -11418,8 +11369,8 @@ namespace Illuminate\Support\Facades {
* @param string $queue
* @param string|\Closure $job
* @param callable|null $callback
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function assertPushedOn($queue, $job, $callback = null)
{
@@ -11433,8 +11384,8 @@ namespace Illuminate\Support\Facades {
* @param string $job
* @param array $expectedChain
* @param callable|null $callback
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function assertPushedWithChain($job, $expectedChain = [], $callback = null)
{
@@ -11447,8 +11398,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $job
* @param callable|null $callback
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function assertPushedWithoutChain($job, $callback = null)
{
@@ -11460,8 +11411,8 @@ namespace Illuminate\Support\Facades {
* Assert if a closure was pushed based on a truth-test callback.
*
* @param callable|int|null $callback
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function assertClosurePushed($callback = null)
{
@@ -11473,8 +11424,8 @@ namespace Illuminate\Support\Facades {
* Assert that a closure was not pushed based on a truth-test callback.
*
* @param callable|null $callback
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function assertClosureNotPushed($callback = null)
{
@@ -11487,8 +11438,8 @@ namespace Illuminate\Support\Facades {
*
* @param string|\Closure $job
* @param callable|null $callback
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function assertNotPushed($job, $callback = null)
{
@@ -11500,8 +11451,8 @@ namespace Illuminate\Support\Facades {
* Assert the total count of jobs that were pushed.
*
* @param int $expectedCount
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function assertCount($expectedCount)
{
@@ -11512,8 +11463,8 @@ namespace Illuminate\Support\Facades {
/**
* Assert that no jobs were pushed.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function assertNothingPushed()
{
@@ -11526,8 +11477,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $job
* @param callable|null $callback
- * @return \Illuminate\Support\Collection
- * @static
+ * @return \Illuminate\Support\Collection
+ * @static
*/
public static function pushed($job, $callback = null)
{
@@ -11539,8 +11490,8 @@ namespace Illuminate\Support\Facades {
* Get all of the raw pushes matching a truth-test callback.
*
* @param null|\Closure(string, ?string, array): bool $callback
- * @return \Illuminate\Support\Collection
- * @static
+ * @return \Illuminate\Support\Collection
+ * @static
*/
public static function pushedRaw($callback = null)
{
@@ -11552,8 +11503,8 @@ namespace Illuminate\Support\Facades {
* Determine if there are any stored jobs for a given class.
*
* @param string $job
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function hasPushed($job)
{
@@ -11565,8 +11516,8 @@ namespace Illuminate\Support\Facades {
* Get the size of the queue.
*
* @param string|null $queue
- * @return int
- * @static
+ * @return int
+ * @static
*/
public static function size($queue = null)
{
@@ -11580,8 +11531,8 @@ namespace Illuminate\Support\Facades {
* @param string|object $job
* @param mixed $data
* @param string|null $queue
- * @return mixed
- * @static
+ * @return mixed
+ * @static
*/
public static function push($job, $data = '', $queue = null)
{
@@ -11593,8 +11544,8 @@ namespace Illuminate\Support\Facades {
* Determine if a job should be faked or actually dispatched.
*
* @param object $job
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function shouldFakeJob($job)
{
@@ -11608,8 +11559,8 @@ namespace Illuminate\Support\Facades {
* @param string $payload
* @param string|null $queue
* @param array $options
- * @return mixed
- * @static
+ * @return mixed
+ * @static
*/
public static function pushRaw($payload, $queue = null, $options = [])
{
@@ -11624,8 +11575,8 @@ namespace Illuminate\Support\Facades {
* @param string|object $job
* @param mixed $data
* @param string|null $queue
- * @return mixed
- * @static
+ * @return mixed
+ * @static
*/
public static function later($delay, $job, $data = '', $queue = null)
{
@@ -11639,8 +11590,8 @@ namespace Illuminate\Support\Facades {
* @param string $queue
* @param string|object $job
* @param mixed $data
- * @return mixed
- * @static
+ * @return mixed
+ * @static
*/
public static function pushOn($queue, $job, $data = '')
{
@@ -11655,8 +11606,8 @@ namespace Illuminate\Support\Facades {
* @param \DateTimeInterface|\DateInterval|int $delay
* @param string|object $job
* @param mixed $data
- * @return mixed
- * @static
+ * @return mixed
+ * @static
*/
public static function laterOn($queue, $delay, $job, $data = '')
{
@@ -11668,8 +11619,8 @@ namespace Illuminate\Support\Facades {
* Pop the next job off of the queue.
*
* @param string|null $queue
- * @return \Illuminate\Contracts\Queue\Job|null
- * @static
+ * @return \Illuminate\Contracts\Queue\Job|null
+ * @static
*/
public static function pop($queue = null)
{
@@ -11683,8 +11634,8 @@ namespace Illuminate\Support\Facades {
* @param array $jobs
* @param mixed $data
* @param string|null $queue
- * @return mixed
- * @static
+ * @return mixed
+ * @static
*/
public static function bulk($jobs, $data = '', $queue = null)
{
@@ -11695,8 +11646,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the jobs that have been pushed.
*
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function pushedJobs()
{
@@ -11707,8 +11658,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the payloads that were pushed raw.
*
- * @return list
- * @static
+ * @return list
+ * @static
*/
public static function rawPushes()
{
@@ -11720,8 +11671,8 @@ namespace Illuminate\Support\Facades {
* Specify if jobs should be serialized and restored when being "pushed" to the queue.
*
* @param bool $serializeAndRestore
- * @return \Illuminate\Support\Testing\Fakes\QueueFake
- * @static
+ * @return \Illuminate\Support\Testing\Fakes\QueueFake
+ * @static
*/
public static function serializeAndRestore($serializeAndRestore = true)
{
@@ -11732,8 +11683,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the connection name for the queue.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function getConnectionName()
{
@@ -11745,8 +11696,8 @@ namespace Illuminate\Support\Facades {
* Set the connection name for the queue.
*
* @param string $name
- * @return \Illuminate\Support\Testing\Fakes\QueueFake
- * @static
+ * @return \Illuminate\Support\Testing\Fakes\QueueFake
+ * @static
*/
public static function setConnectionName($name)
{
@@ -11758,8 +11709,8 @@ namespace Illuminate\Support\Facades {
* Get the maximum number of attempts for an object-based queue handler.
*
* @param mixed $job
- * @return mixed
- * @static
+ * @return mixed
+ * @static
*/
public static function getJobTries($job)
{
@@ -11772,8 +11723,8 @@ namespace Illuminate\Support\Facades {
* Get the backoff for an object-based queue handler.
*
* @param mixed $job
- * @return mixed
- * @static
+ * @return mixed
+ * @static
*/
public static function getJobBackoff($job)
{
@@ -11786,8 +11737,8 @@ namespace Illuminate\Support\Facades {
* Get the expiration timestamp for an object-based queue handler.
*
* @param mixed $job
- * @return mixed
- * @static
+ * @return mixed
+ * @static
*/
public static function getJobExpiration($job)
{
@@ -11800,8 +11751,8 @@ namespace Illuminate\Support\Facades {
* Register a callback to be executed when creating job payloads.
*
* @param callable|null $callback
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function createPayloadUsing($callback)
{
@@ -11812,8 +11763,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the container instance being used by the connection.
*
- * @return \Illuminate\Container\Container
- * @static
+ * @return \Illuminate\Container\Container
+ * @static
*/
public static function getContainer()
{
@@ -11826,8 +11777,8 @@ namespace Illuminate\Support\Facades {
* Set the IoC container instance.
*
* @param \Illuminate\Container\Container $container
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function setContainer($container)
{
@@ -11838,8 +11789,6 @@ namespace Illuminate\Support\Facades {
}
/**
- *
- *
* @see \Illuminate\Routing\Redirector
*/
class Redirect {
@@ -11849,8 +11798,8 @@ namespace Illuminate\Support\Facades {
* @param int $status
* @param array $headers
* @param mixed $fallback
- * @return \Illuminate\Http\RedirectResponse
- * @static
+ * @return \Illuminate\Http\RedirectResponse
+ * @static
*/
public static function back($status = 302, $headers = [], $fallback = false)
{
@@ -11863,8 +11812,8 @@ namespace Illuminate\Support\Facades {
*
* @param int $status
* @param array $headers
- * @return \Illuminate\Http\RedirectResponse
- * @static
+ * @return \Illuminate\Http\RedirectResponse
+ * @static
*/
public static function refresh($status = 302, $headers = [])
{
@@ -11879,8 +11828,8 @@ namespace Illuminate\Support\Facades {
* @param int $status
* @param array $headers
* @param bool|null $secure
- * @return \Illuminate\Http\RedirectResponse
- * @static
+ * @return \Illuminate\Http\RedirectResponse
+ * @static
*/
public static function guest($path, $status = 302, $headers = [], $secure = null)
{
@@ -11895,8 +11844,8 @@ namespace Illuminate\Support\Facades {
* @param int $status
* @param array $headers
* @param bool|null $secure
- * @return \Illuminate\Http\RedirectResponse
- * @static
+ * @return \Illuminate\Http\RedirectResponse
+ * @static
*/
public static function intended($default = '/', $status = 302, $headers = [], $secure = null)
{
@@ -11911,8 +11860,8 @@ namespace Illuminate\Support\Facades {
* @param int $status
* @param array $headers
* @param bool|null $secure
- * @return \Illuminate\Http\RedirectResponse
- * @static
+ * @return \Illuminate\Http\RedirectResponse
+ * @static
*/
public static function to($path, $status = 302, $headers = [], $secure = null)
{
@@ -11926,8 +11875,8 @@ namespace Illuminate\Support\Facades {
* @param string $path
* @param int $status
* @param array $headers
- * @return \Illuminate\Http\RedirectResponse
- * @static
+ * @return \Illuminate\Http\RedirectResponse
+ * @static
*/
public static function away($path, $status = 302, $headers = [])
{
@@ -11941,8 +11890,8 @@ namespace Illuminate\Support\Facades {
* @param string $path
* @param int $status
* @param array $headers
- * @return \Illuminate\Http\RedirectResponse
- * @static
+ * @return \Illuminate\Http\RedirectResponse
+ * @static
*/
public static function secure($path, $status = 302, $headers = [])
{
@@ -11957,8 +11906,8 @@ namespace Illuminate\Support\Facades {
* @param mixed $parameters
* @param int $status
* @param array $headers
- * @return \Illuminate\Http\RedirectResponse
- * @static
+ * @return \Illuminate\Http\RedirectResponse
+ * @static
*/
public static function route($route, $parameters = [], $status = 302, $headers = [])
{
@@ -11974,8 +11923,8 @@ namespace Illuminate\Support\Facades {
* @param \DateTimeInterface|\DateInterval|int|null $expiration
* @param int $status
* @param array $headers
- * @return \Illuminate\Http\RedirectResponse
- * @static
+ * @return \Illuminate\Http\RedirectResponse
+ * @static
*/
public static function signedRoute($route, $parameters = [], $expiration = null, $status = 302, $headers = [])
{
@@ -11991,8 +11940,8 @@ namespace Illuminate\Support\Facades {
* @param mixed $parameters
* @param int $status
* @param array $headers
- * @return \Illuminate\Http\RedirectResponse
- * @static
+ * @return \Illuminate\Http\RedirectResponse
+ * @static
*/
public static function temporarySignedRoute($route, $expiration, $parameters = [], $status = 302, $headers = [])
{
@@ -12007,8 +11956,8 @@ namespace Illuminate\Support\Facades {
* @param mixed $parameters
* @param int $status
* @param array $headers
- * @return \Illuminate\Http\RedirectResponse
- * @static
+ * @return \Illuminate\Http\RedirectResponse
+ * @static
*/
public static function action($action, $parameters = [], $status = 302, $headers = [])
{
@@ -12019,8 +11968,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the URL generator instance.
*
- * @return \Illuminate\Routing\UrlGenerator
- * @static
+ * @return \Illuminate\Routing\UrlGenerator
+ * @static
*/
public static function getUrlGenerator()
{
@@ -12032,8 +11981,8 @@ namespace Illuminate\Support\Facades {
* Set the active session store.
*
* @param \Illuminate\Session\Store $session
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function setSession($session)
{
@@ -12044,8 +11993,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the "intended" URL from the session.
*
- * @return string|null
- * @static
+ * @return string|null
+ * @static
*/
public static function getIntendedUrl()
{
@@ -12057,8 +12006,8 @@ namespace Illuminate\Support\Facades {
* Set the "intended" URL in the session.
*
* @param string $url
- * @return \Illuminate\Routing\Redirector
- * @static
+ * @return \Illuminate\Routing\Redirector
+ * @static
*/
public static function setIntendedUrl($url)
{
@@ -12072,8 +12021,8 @@ namespace Illuminate\Support\Facades {
* @param string $name
* @param object|callable $macro
* @param-closure-this static $macro
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function macro($name, $macro)
{
@@ -12085,9 +12034,9 @@ namespace Illuminate\Support\Facades {
*
* @param object $mixin
* @param bool $replace
- * @return void
+ * @return void
* @throws \ReflectionException
- * @static
+ * @static
*/
public static function mixin($mixin, $replace = true)
{
@@ -12098,8 +12047,8 @@ namespace Illuminate\Support\Facades {
* Checks if macro is registered.
*
* @param string $name
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function hasMacro($name)
{
@@ -12109,8 +12058,8 @@ namespace Illuminate\Support\Facades {
/**
* Flush the existing macros.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function flushMacros()
{
@@ -12119,19 +12068,14 @@ namespace Illuminate\Support\Facades {
}
/**
- *
- *
- * @method static array validate(array $rules, ...$params)
- * @method static array validateWithBag(string $errorBag, array $rules, ...$params)
- * @method static bool hasValidSignature(bool $absolute = true)
* @see \Illuminate\Http\Request
*/
class Request {
/**
* Create a new Illuminate HTTP request from server variables.
*
- * @return static
- * @static
+ * @return static
+ * @static
*/
public static function capture()
{
@@ -12141,8 +12085,8 @@ namespace Illuminate\Support\Facades {
/**
* Return the Request instance.
*
- * @return \Illuminate\Http\Request
- * @static
+ * @return \Illuminate\Http\Request
+ * @static
*/
public static function instance()
{
@@ -12153,8 +12097,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the request method.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function method()
{
@@ -12165,8 +12109,8 @@ namespace Illuminate\Support\Facades {
/**
* Get a URI instance for the request.
*
- * @return \Illuminate\Support\Uri
- * @static
+ * @return \Illuminate\Support\Uri
+ * @static
*/
public static function uri()
{
@@ -12177,8 +12121,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the root URL for the application.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function root()
{
@@ -12189,8 +12133,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the URL (no query string) for the request.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function url()
{
@@ -12201,8 +12145,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the full URL for the request.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function fullUrl()
{
@@ -12214,8 +12158,8 @@ namespace Illuminate\Support\Facades {
* Get the full URL for the request with the added query string parameters.
*
* @param array $query
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function fullUrlWithQuery($query)
{
@@ -12227,8 +12171,8 @@ namespace Illuminate\Support\Facades {
* Get the full URL for the request without the given query string parameters.
*
* @param array|string $keys
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function fullUrlWithoutQuery($keys)
{
@@ -12239,8 +12183,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the current path info for the request.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function path()
{
@@ -12251,8 +12195,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the current decoded path info for the request.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function decodedPath()
{
@@ -12265,8 +12209,8 @@ namespace Illuminate\Support\Facades {
*
* @param int $index
* @param string|null $default
- * @return string|null
- * @static
+ * @return string|null
+ * @static
*/
public static function segment($index, $default = null)
{
@@ -12277,8 +12221,8 @@ namespace Illuminate\Support\Facades {
/**
* Get all of the segments for the request path.
*
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function segments()
{
@@ -12290,8 +12234,8 @@ namespace Illuminate\Support\Facades {
* Determine if the current request URI matches a pattern.
*
* @param mixed $patterns
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function is(...$patterns)
{
@@ -12303,8 +12247,8 @@ namespace Illuminate\Support\Facades {
* Determine if the route name matches a given pattern.
*
* @param mixed $patterns
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function routeIs(...$patterns)
{
@@ -12316,8 +12260,8 @@ namespace Illuminate\Support\Facades {
* Determine if the current request URL and query string match a pattern.
*
* @param mixed $patterns
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function fullUrlIs(...$patterns)
{
@@ -12328,8 +12272,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the host name.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function host()
{
@@ -12340,8 +12284,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the HTTP host being requested.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function httpHost()
{
@@ -12352,8 +12296,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the scheme and HTTP host.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function schemeAndHttpHost()
{
@@ -12364,8 +12308,8 @@ namespace Illuminate\Support\Facades {
/**
* Determine if the request is the result of an AJAX call.
*
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function ajax()
{
@@ -12376,8 +12320,8 @@ namespace Illuminate\Support\Facades {
/**
* Determine if the request is the result of a PJAX call.
*
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function pjax()
{
@@ -12388,8 +12332,8 @@ namespace Illuminate\Support\Facades {
/**
* Determine if the request is the result of a prefetch call.
*
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function prefetch()
{
@@ -12400,8 +12344,8 @@ namespace Illuminate\Support\Facades {
/**
* Determine if the request is over HTTPS.
*
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function secure()
{
@@ -12412,8 +12356,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the client IP address.
*
- * @return string|null
- * @static
+ * @return string|null
+ * @static
*/
public static function ip()
{
@@ -12424,8 +12368,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the client IP addresses.
*
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function ips()
{
@@ -12436,8 +12380,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the client user agent.
*
- * @return string|null
- * @static
+ * @return string|null
+ * @static
*/
public static function userAgent()
{
@@ -12449,8 +12393,8 @@ namespace Illuminate\Support\Facades {
* Merge new input into the current request's input array.
*
* @param array $input
- * @return \Illuminate\Http\Request
- * @static
+ * @return \Illuminate\Http\Request
+ * @static
*/
public static function merge($input)
{
@@ -12462,8 +12406,8 @@ namespace Illuminate\Support\Facades {
* Merge new input into the request's input, but only when that key is missing from the request.
*
* @param array $input
- * @return \Illuminate\Http\Request
- * @static
+ * @return \Illuminate\Http\Request
+ * @static
*/
public static function mergeIfMissing($input)
{
@@ -12475,8 +12419,8 @@ namespace Illuminate\Support\Facades {
* Replace the input values for the current request.
*
* @param array $input
- * @return \Illuminate\Http\Request
- * @static
+ * @return \Illuminate\Http\Request
+ * @static
*/
public static function replace($input)
{
@@ -12486,13 +12430,13 @@ namespace Illuminate\Support\Facades {
/**
* This method belongs to Symfony HttpFoundation and is not usually needed when using Laravel.
- *
+ *
* Instead, you may use the "input" method.
*
* @param string $key
* @param mixed $default
- * @return mixed
- * @static
+ * @return mixed
+ * @static
*/
public static function get($key, $default = null)
{
@@ -12505,8 +12449,8 @@ namespace Illuminate\Support\Facades {
*
* @param string|null $key
* @param mixed $default
- * @return \Symfony\Component\HttpFoundation\InputBag|mixed
- * @static
+ * @return \Symfony\Component\HttpFoundation\InputBag|mixed
+ * @static
*/
public static function json($key = null, $default = null)
{
@@ -12519,8 +12463,8 @@ namespace Illuminate\Support\Facades {
*
* @param \Illuminate\Http\Request $from
* @param \Illuminate\Http\Request|null $to
- * @return static
- * @static
+ * @return static
+ * @static
*/
public static function createFrom($from, $to = null)
{
@@ -12531,8 +12475,8 @@ namespace Illuminate\Support\Facades {
* Create an Illuminate request from a Symfony instance.
*
* @param \Symfony\Component\HttpFoundation\Request $request
- * @return static
- * @static
+ * @return static
+ * @static
*/
public static function createFromBase($request)
{
@@ -12542,14 +12486,14 @@ namespace Illuminate\Support\Facades {
/**
* Clones a request and overrides some of its parameters.
*
- * @return static
+ * @return static
* @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
- * @static
+ * @static
*/
public static function duplicate($query = null, $request = null, $attributes = null, $cookies = null, $files = null, $server = null)
{
@@ -12559,13 +12503,13 @@ namespace Illuminate\Support\Facades {
/**
* Whether the request contains a Session object.
- *
+ *
* This method does not give any information about the state of the session object,
* like whether the session is started or not. It is just a way to check if this Request
* is associated with a Session instance.
*
* @param bool $skipIfUninitialized When true, ignores factories injected by `setSessionFactory`
- * @static
+ * @static
*/
public static function hasSession($skipIfUninitialized = false)
{
@@ -12577,7 +12521,7 @@ namespace Illuminate\Support\Facades {
* Gets the Session.
*
* @throws SessionNotFoundException When session is not set properly
- * @static
+ * @static
*/
public static function getSession()
{
@@ -12588,9 +12532,9 @@ namespace Illuminate\Support\Facades {
/**
* Get the session associated with the request.
*
- * @return \Illuminate\Contracts\Session\Session
+ * @return \Illuminate\Contracts\Session\Session
* @throws \RuntimeException
- * @static
+ * @static
*/
public static function session()
{
@@ -12602,8 +12546,8 @@ namespace Illuminate\Support\Facades {
* Set the session instance on the request.
*
* @param \Illuminate\Contracts\Session\Session $session
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function setLaravelSession($session)
{
@@ -12615,8 +12559,8 @@ namespace Illuminate\Support\Facades {
* Set the locale for the request instance.
*
* @param string $locale
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function setRequestLocale($locale)
{
@@ -12628,8 +12572,8 @@ namespace Illuminate\Support\Facades {
* Set the default locale for the request instance.
*
* @param string $locale
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function setDefaultRequestLocale($locale)
{
@@ -12641,8 +12585,8 @@ namespace Illuminate\Support\Facades {
* Get the user making the request.
*
* @param string|null $guard
- * @return mixed
- * @static
+ * @return mixed
+ * @static
*/
public static function user($guard = null)
{
@@ -12655,8 +12599,8 @@ namespace Illuminate\Support\Facades {
*
* @param string|null $param
* @param mixed $default
- * @return \Illuminate\Routing\Route|object|string|null
- * @static
+ * @return \Illuminate\Routing\Route|object|string|null
+ * @static
*/
public static function route($param = null, $default = null)
{
@@ -12667,9 +12611,9 @@ namespace Illuminate\Support\Facades {
/**
* Get a unique fingerprint for the request / route / IP address.
*
- * @return string
+ * @return string
* @throws \RuntimeException
- * @static
+ * @static
*/
public static function fingerprint()
{
@@ -12681,8 +12625,8 @@ namespace Illuminate\Support\Facades {
* Set the JSON payload for the request.
*
* @param \Symfony\Component\HttpFoundation\InputBag $json
- * @return \Illuminate\Http\Request
- * @static
+ * @return \Illuminate\Http\Request
+ * @static
*/
public static function setJson($json)
{
@@ -12693,8 +12637,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the user resolver callback.
*
- * @return \Closure
- * @static
+ * @return \Closure
+ * @static
*/
public static function getUserResolver()
{
@@ -12706,8 +12650,8 @@ namespace Illuminate\Support\Facades {
* Set the user resolver callback.
*
* @param \Closure $callback
- * @return \Illuminate\Http\Request
- * @static
+ * @return \Illuminate\Http\Request
+ * @static
*/
public static function setUserResolver($callback)
{
@@ -12718,8 +12662,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the route resolver callback.
*
- * @return \Closure
- * @static
+ * @return \Closure
+ * @static
*/
public static function getRouteResolver()
{
@@ -12731,8 +12675,8 @@ namespace Illuminate\Support\Facades {
* Set the route resolver callback.
*
* @param \Closure $callback
- * @return \Illuminate\Http\Request
- * @static
+ * @return \Illuminate\Http\Request
+ * @static
*/
public static function setRouteResolver($callback)
{
@@ -12743,8 +12687,8 @@ namespace Illuminate\Support\Facades {
/**
* Get all of the input and files for the request.
*
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function toArray()
{
@@ -12756,8 +12700,8 @@ namespace Illuminate\Support\Facades {
* Determine if the given offset exists.
*
* @param string $offset
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function offsetExists($offset)
{
@@ -12769,8 +12713,8 @@ namespace Illuminate\Support\Facades {
* Get the value at the given offset.
*
* @param string $offset
- * @return mixed
- * @static
+ * @return mixed
+ * @static
*/
public static function offsetGet($offset)
{
@@ -12783,8 +12727,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $offset
* @param mixed $value
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function offsetSet($offset, $value)
{
@@ -12796,8 +12740,8 @@ namespace Illuminate\Support\Facades {
* Remove the value at the given offset.
*
* @param string $offset
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function offsetUnset($offset)
{
@@ -12807,7 +12751,7 @@ namespace Illuminate\Support\Facades {
/**
* Sets the parameters for this request.
- *
+ *
* This method also re-initializes all properties.
*
* @param array $query The GET parameters
@@ -12817,7 +12761,7 @@ namespace Illuminate\Support\Facades {
* @param array $files The FILES parameters
* @param array $server The SERVER parameters
* @param string|resource|null $content The raw body data
- * @static
+ * @static
*/
public static function initialize($query = [], $request = [], $attributes = [], $cookies = [], $files = [], $server = [], $content = null)
{
@@ -12829,7 +12773,7 @@ namespace Illuminate\Support\Facades {
/**
* Creates a new request with values from PHP's super globals.
*
- * @static
+ * @static
*/
public static function createFromGlobals()
{
@@ -12839,7 +12783,7 @@ namespace Illuminate\Support\Facades {
/**
* Creates a Request based on a given URI and configuration.
- *
+ *
* The information contained in the URI always take precedence
* over the other information (server and parameters).
*
@@ -12851,7 +12795,7 @@ namespace Illuminate\Support\Facades {
* @param array $server The server parameters ($_SERVER)
* @param string|resource|null $content The raw body data
* @throws BadRequestException When the URI is invalid
- * @static
+ * @static
*/
public static function create($uri, $method = 'GET', $parameters = [], $cookies = [], $files = [], $server = [], $content = null)
{
@@ -12861,12 +12805,12 @@ namespace Illuminate\Support\Facades {
/**
* Sets a callable able to create a Request instance.
- *
+ *
* This is mainly useful when you need to override the Request class
* to keep BC with an existing system. It should not be used for any
* other purpose.
*
- * @static
+ * @static
*/
public static function setFactory($callable)
{
@@ -12876,11 +12820,11 @@ namespace Illuminate\Support\Facades {
/**
* Overrides the PHP global variables according to this request instance.
- *
+ *
* It overrides $_GET, $_POST, $_REQUEST, $_SERVER, $_COOKIE.
* $_FILES is never overridden, see rfc1867
*
- * @static
+ * @static
*/
public static function overrideGlobals()
{
@@ -12891,12 +12835,12 @@ namespace Illuminate\Support\Facades {
/**
* Sets a list of trusted proxies.
- *
+ *
* You should only list the reverse proxies that you manage directly.
*
* @param array $proxies A list of trusted proxies, the string 'REMOTE_ADDR' will be replaced with $_SERVER['REMOTE_ADDR'] and 'PRIVATE_SUBNETS' by IpUtils::PRIVATE_SUBNETS
* @param int-mask-of $trustedHeaderSet A bit field to set which headers to trust from your proxies
- * @static
+ * @static
*/
public static function setTrustedProxies($proxies, $trustedHeaderSet)
{
@@ -12907,8 +12851,8 @@ namespace Illuminate\Support\Facades {
/**
* Gets the list of trusted proxies.
*
- * @return string[]
- * @static
+ * @return string[]
+ * @static
*/
public static function getTrustedProxies()
{
@@ -12920,7 +12864,7 @@ namespace Illuminate\Support\Facades {
* Gets the set of trusted headers from trusted proxies.
*
* @return int A bit field of Request::HEADER_* that defines which headers are trusted from your proxies
- * @static
+ * @static
*/
public static function getTrustedHeaderSet()
{
@@ -12930,11 +12874,11 @@ namespace Illuminate\Support\Facades {
/**
* Sets a list of trusted host patterns.
- *
+ *
* You should only list the hosts you manage using regexs.
*
* @param array $hostPatterns A list of trusted host patterns
- * @static
+ * @static
*/
public static function setTrustedHosts($hostPatterns)
{
@@ -12945,8 +12889,8 @@ namespace Illuminate\Support\Facades {
/**
* Gets the list of trusted host patterns.
*
- * @return string[]
- * @static
+ * @return string[]
+ * @static
*/
public static function getTrustedHosts()
{
@@ -12956,11 +12900,11 @@ namespace Illuminate\Support\Facades {
/**
* Normalizes a query string.
- *
+ *
* It builds a normalized query string, where keys/value pairs are alphabetized,
* have consistent escaping and unneeded delimiters are removed.
*
- * @static
+ * @static
*/
public static function normalizeQueryString($qs)
{
@@ -12970,16 +12914,16 @@ namespace Illuminate\Support\Facades {
/**
* Enables support for the _method request parameter to determine the intended HTTP method.
- *
+ *
* Be warned that enabling this feature might lead to CSRF issues in your code.
* Check that you are using CSRF tokens when required.
* If the HTTP method parameter override is enabled, an html-form with method "POST" can be altered
* and used to send a "PUT" or "DELETE" request via the _method request parameter.
* If these methods are not protected against CSRF, this presents a possible vulnerability.
- *
+ *
* The HTTP method can only be overridden when the real HTTP method is POST.
*
- * @static
+ * @static
*/
public static function enableHttpMethodParameterOverride()
{
@@ -12990,7 +12934,7 @@ namespace Illuminate\Support\Facades {
/**
* Checks whether support for the _method request parameter is enabled.
*
- * @static
+ * @static
*/
public static function getHttpMethodParameterOverride()
{
@@ -12998,11 +12942,39 @@ namespace Illuminate\Support\Facades {
return \Illuminate\Http\Request::getHttpMethodParameterOverride();
}
+ /**
+ * Sets the list of HTTP methods that can be overridden.
+ *
+ * Set to null to allow all methods to be overridden (default). Set to an
+ * empty array to disallow overrides entirely. Otherwise, provide the list
+ * of uppercased method names that are allowed.
+ *
+ * @param \Symfony\Component\HttpFoundation\uppercase-string[]|null $methods
+ * @static
+ */
+ public static function setAllowedHttpMethodOverride($methods)
+ {
+ //Method inherited from \Symfony\Component\HttpFoundation\Request
+ return \Illuminate\Http\Request::setAllowedHttpMethodOverride($methods);
+ }
+
+ /**
+ * Gets the list of HTTP methods that can be overridden.
+ *
+ * @return \Symfony\Component\HttpFoundation\uppercase-string[]|null
+ * @static
+ */
+ public static function getAllowedHttpMethodOverride()
+ {
+ //Method inherited from \Symfony\Component\HttpFoundation\Request
+ return \Illuminate\Http\Request::getAllowedHttpMethodOverride();
+ }
+
/**
* Whether the request contains a Session which was started in one of the
* previous requests.
*
- * @static
+ * @static
*/
public static function hasPreviousSession()
{
@@ -13012,9 +12984,7 @@ namespace Illuminate\Support\Facades {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function setSession($session)
{
@@ -13024,11 +12994,9 @@ namespace Illuminate\Support\Facades {
}
/**
- *
- *
- * @internal
+ * @internal
* @param callable(): SessionInterface $factory
- * @static
+ * @static
*/
public static function setSessionFactory($factory)
{
@@ -13039,15 +13007,15 @@ namespace Illuminate\Support\Facades {
/**
* Returns the client IP addresses.
- *
+ *
* In the returned array the most trusted IP address is first, and the
* least trusted one last. The "real" client IP address is the last one,
* but this is also the least trusted one. Trusted proxies are stripped.
- *
+ *
* Use this method carefully; you should use getClientIp() instead.
*
* @see getClientIp()
- * @static
+ * @static
*/
public static function getClientIps()
{
@@ -13058,20 +13026,20 @@ namespace Illuminate\Support\Facades {
/**
* Returns the client IP address.
- *
+ *
* This method can read the client IP address from the "X-Forwarded-For" header
* when trusted proxies were set via "setTrustedProxies()". The "X-Forwarded-For"
* header value is a comma+space separated list of IP addresses, the left-most
* being the original client, and each successive proxy that passed the request
* adding the IP address where it received the request from.
- *
+ *
* If your reverse proxy uses a different header name than "X-Forwarded-For",
* ("Client-Ip" for instance), configure it via the $trustedHeaderSet
* argument of the Request::setTrustedProxies() method instead.
*
* @see getClientIps()
* @see https://wikipedia.org/wiki/X-Forwarded-For
- * @static
+ * @static
*/
public static function getClientIp()
{
@@ -13083,7 +13051,7 @@ namespace Illuminate\Support\Facades {
/**
* Returns current script name.
*
- * @static
+ * @static
*/
public static function getScriptName()
{
@@ -13094,18 +13062,18 @@ namespace Illuminate\Support\Facades {
/**
* Returns the path being requested relative to the executed script.
- *
+ *
* The path info always starts with a /.
- *
+ *
* Suppose this request is instantiated from /mysite on localhost:
- *
- * * http://localhost/mysite returns an empty string
+ *
+ * * http://localhost/mysite returns '/'
* * http://localhost/mysite/about returns '/about'
* * http://localhost/mysite/enco%20ded returns '/enco%20ded'
* * http://localhost/mysite/about?var=1 returns '/about'
*
* @return string The raw path (i.e. not urldecoded)
- * @static
+ * @static
*/
public static function getPathInfo()
{
@@ -13116,16 +13084,16 @@ namespace Illuminate\Support\Facades {
/**
* Returns the root path from which this request is executed.
- *
+ *
* Suppose that an index.php file instantiates this request object:
- *
+ *
* * http://localhost/index.php returns an empty string
* * http://localhost/index.php/page returns an empty string
* * http://localhost/web/index.php returns '/web'
* * http://localhost/we%20b/index.php returns '/we%20b'
*
* @return string The raw path (i.e. not urldecoded)
- * @static
+ * @static
*/
public static function getBasePath()
{
@@ -13136,14 +13104,14 @@ namespace Illuminate\Support\Facades {
/**
* Returns the root URL from which this request is executed.
- *
+ *
* The base URL never ends with a /.
- *
+ *
* This is similar to getBasePath(), except that it also includes the
* script filename (e.g. index.php) if one exists.
*
* @return string The raw URL (i.e. not urldecoded)
- * @static
+ * @static
*/
public static function getBaseUrl()
{
@@ -13155,7 +13123,7 @@ namespace Illuminate\Support\Facades {
/**
* Gets the request's scheme.
*
- * @static
+ * @static
*/
public static function getScheme()
{
@@ -13166,14 +13134,14 @@ namespace Illuminate\Support\Facades {
/**
* Returns the port on which the request is made.
- *
+ *
* This method can read the client port from the "X-Forwarded-Port" header
* when trusted proxies were set via "setTrustedProxies()".
- *
+ *
* The "X-Forwarded-Port" header must contain the client port.
*
* @return int|string|null Can be a string if fetched from the server bag
- * @static
+ * @static
*/
public static function getPort()
{
@@ -13185,7 +13153,7 @@ namespace Illuminate\Support\Facades {
/**
* Returns the user.
*
- * @static
+ * @static
*/
public static function getUser()
{
@@ -13197,7 +13165,7 @@ namespace Illuminate\Support\Facades {
/**
* Returns the password.
*
- * @static
+ * @static
*/
public static function getPassword()
{
@@ -13210,7 +13178,7 @@ namespace Illuminate\Support\Facades {
* Gets the user info.
*
* @return string|null A user name if any and, optionally, scheme-specific information about how to gain authorization to access the server
- * @static
+ * @static
*/
public static function getUserInfo()
{
@@ -13221,10 +13189,10 @@ namespace Illuminate\Support\Facades {
/**
* Returns the HTTP host being requested.
- *
+ *
* The port name will be appended to the host if it's non-standard.
*
- * @static
+ * @static
*/
public static function getHttpHost()
{
@@ -13237,7 +13205,7 @@ namespace Illuminate\Support\Facades {
* Returns the requested URI (path and query string).
*
* @return string The raw URI (i.e. not URI decoded)
- * @static
+ * @static
*/
public static function getRequestUri()
{
@@ -13248,11 +13216,11 @@ namespace Illuminate\Support\Facades {
/**
* Gets the scheme and HTTP host.
- *
+ *
* If the URL was called with basic authentication, the user
* and the password are not added to the generated string.
*
- * @static
+ * @static
*/
public static function getSchemeAndHttpHost()
{
@@ -13265,7 +13233,7 @@ namespace Illuminate\Support\Facades {
* Generates a normalized URI (URL) for the Request.
*
* @see getQueryString()
- * @static
+ * @static
*/
public static function getUri()
{
@@ -13278,7 +13246,7 @@ namespace Illuminate\Support\Facades {
* Generates a normalized URI for the given path.
*
* @param string $path A path to use instead of the current one
- * @static
+ * @static
*/
public static function getUriForPath($path)
{
@@ -13289,12 +13257,12 @@ namespace Illuminate\Support\Facades {
/**
* Returns the path as relative reference from the current Request path.
- *
+ *
* Only the URIs path component (no schema, host etc.) is relevant and must be given.
* Both paths must be absolute and not contain relative parts.
* Relative URLs from one resource to another are useful when generating self-contained downloadable document archives.
* Furthermore, they can be used to reduce the link size in documents.
- *
+ *
* Example target paths, given a base path of "/a/b/c/d":
* - "/a/b/c/d" -> ""
* - "/a/b/c/" -> "./"
@@ -13302,7 +13270,7 @@ namespace Illuminate\Support\Facades {
* - "/a/b/c/other" -> "other"
* - "/a/x/y" -> "../../x/y"
*
- * @static
+ * @static
*/
public static function getRelativeUriForPath($path)
{
@@ -13313,11 +13281,11 @@ namespace Illuminate\Support\Facades {
/**
* Generates the normalized query string for the Request.
- *
+ *
* It builds a normalized query string, where keys/value pairs are alphabetized
* and have consistent escaping.
*
- * @static
+ * @static
*/
public static function getQueryString()
{
@@ -13328,13 +13296,13 @@ namespace Illuminate\Support\Facades {
/**
* Checks whether the request is secure or not.
- *
+ *
* This method can read the client protocol from the "X-Forwarded-Proto" header
* when trusted proxies were set via "setTrustedProxies()".
- *
+ *
* The "X-Forwarded-Proto" header must contain the protocol: "https" or "http".
*
- * @static
+ * @static
*/
public static function isSecure()
{
@@ -13345,14 +13313,14 @@ namespace Illuminate\Support\Facades {
/**
* Returns the host name.
- *
+ *
* This method can read the client host name from the "X-Forwarded-Host" header
* when trusted proxies were set via "setTrustedProxies()".
- *
+ *
* The "X-Forwarded-Host" header must contain the client host name.
*
* @throws SuspiciousOperationException when the host name is invalid or not trusted
- * @static
+ * @static
*/
public static function getHost()
{
@@ -13364,7 +13332,7 @@ namespace Illuminate\Support\Facades {
/**
* Sets the request method.
*
- * @static
+ * @static
*/
public static function setMethod($method)
{
@@ -13375,17 +13343,17 @@ namespace Illuminate\Support\Facades {
/**
* Gets the request "intended" method.
- *
+ *
* If the X-HTTP-Method-Override header is set, and if the method is a POST,
* then it is used to determine the "real" intended HTTP method.
- *
+ *
* The _method request parameter can also be used to determine the HTTP method,
* but only if enableHttpMethodParameterOverride() has been called.
- *
+ *
* The method is always an uppercased string.
*
* @see getRealMethod()
- * @static
+ * @static
*/
public static function getMethod()
{
@@ -13398,7 +13366,7 @@ namespace Illuminate\Support\Facades {
* Gets the "real" request method.
*
* @see getMethod()
- * @static
+ * @static
*/
public static function getRealMethod()
{
@@ -13410,7 +13378,7 @@ namespace Illuminate\Support\Facades {
/**
* Gets the mime type associated with the format.
*
- * @static
+ * @static
*/
public static function getMimeType($format)
{
@@ -13422,8 +13390,8 @@ namespace Illuminate\Support\Facades {
/**
* Gets the mime types associated with the format.
*
- * @return string[]
- * @static
+ * @return string[]
+ * @static
*/
public static function getMimeTypes($format)
{
@@ -13434,7 +13402,18 @@ namespace Illuminate\Support\Facades {
/**
* Gets the format associated with the mime type.
*
- * @static
+ * Resolution order:
+ * 1) Exact match on the full MIME type (e.g. "application/json").
+ * 2) Match on the canonical MIME type (i.e. before the first ";" parameter).
+ * 3) If the type is "application/*+suffix", use the structured syntax suffix
+ * mapping (e.g. "application/foo+json" → "json"), when available.
+ * 4) If $subtypeFallback is true and no match was found:
+ * - return the MIME subtype (without "x-" prefix), provided it does not
+ * contain a "+" (e.g. "application/x-yaml" → "yaml", "text/csv" → "csv").
+ *
+ * @param string|null $mimeType The mime type to check
+ * @param bool $subtypeFallback Whether to fall back to the subtype if no exact match is found
+ * @static
*/
public static function getFormat($mimeType)
{
@@ -13446,8 +13425,9 @@ namespace Illuminate\Support\Facades {
/**
* Associates a format with mime types.
*
+ * @param string $format The format to set
* @param string|string[] $mimeTypes The associated mime types (the preferred one must be the first as it will be used as the content type)
- * @static
+ * @static
*/
public static function setFormat($format, $mimeTypes)
{
@@ -13458,15 +13438,15 @@ namespace Illuminate\Support\Facades {
/**
* Gets the request format.
- *
+ *
* Here is the process to determine the format:
- *
+ *
* * format defined by the user (with setRequestFormat())
* * _format request attribute
* * $default
*
* @see getPreferredFormat
- * @static
+ * @static
*/
public static function getRequestFormat($default = 'html')
{
@@ -13478,7 +13458,7 @@ namespace Illuminate\Support\Facades {
/**
* Sets the request format.
*
- * @static
+ * @static
*/
public static function setRequestFormat($format)
{
@@ -13491,7 +13471,7 @@ namespace Illuminate\Support\Facades {
* Gets the usual name of the format associated with the request's media type (provided in the Content-Type header).
*
* @see Request::$formats
- * @static
+ * @static
*/
public static function getContentTypeFormat()
{
@@ -13503,7 +13483,7 @@ namespace Illuminate\Support\Facades {
/**
* Sets the default locale.
*
- * @static
+ * @static
*/
public static function setDefaultLocale($locale)
{
@@ -13515,7 +13495,7 @@ namespace Illuminate\Support\Facades {
/**
* Get the default locale.
*
- * @static
+ * @static
*/
public static function getDefaultLocale()
{
@@ -13527,7 +13507,7 @@ namespace Illuminate\Support\Facades {
/**
* Sets the locale.
*
- * @static
+ * @static
*/
public static function setLocale($locale)
{
@@ -13539,7 +13519,7 @@ namespace Illuminate\Support\Facades {
/**
* Get the locale.
*
- * @static
+ * @static
*/
public static function getLocale()
{
@@ -13552,7 +13532,7 @@ namespace Illuminate\Support\Facades {
* Checks if the request method is of specified type.
*
* @param string $method Uppercase request method (GET, POST etc)
- * @static
+ * @static
*/
public static function isMethod($method)
{
@@ -13565,7 +13545,7 @@ namespace Illuminate\Support\Facades {
* Checks whether or not the method is safe.
*
* @see https://tools.ietf.org/html/rfc7231#section-4.2.1
- * @static
+ * @static
*/
public static function isMethodSafe()
{
@@ -13577,7 +13557,7 @@ namespace Illuminate\Support\Facades {
/**
* Checks whether or not the method is idempotent.
*
- * @static
+ * @static
*/
public static function isMethodIdempotent()
{
@@ -13590,7 +13570,7 @@ namespace Illuminate\Support\Facades {
* Checks whether the method is cacheable or not.
*
* @see https://tools.ietf.org/html/rfc7231#section-4.2.3
- * @static
+ * @static
*/
public static function isMethodCacheable()
{
@@ -13601,14 +13581,14 @@ namespace Illuminate\Support\Facades {
/**
* Returns the protocol version.
- *
+ *
* If the application is behind a proxy, the protocol version used in the
* requests between the client and the proxy and between the proxy and the
* server might be different. This returns the former (from the "Via" header)
* if the proxy is trusted (see "setTrustedProxies()"), otherwise it returns
* the latter (from the "SERVER_PROTOCOL" server parameter).
*
- * @static
+ * @static
*/
public static function getProtocolVersion()
{
@@ -13621,9 +13601,9 @@ namespace Illuminate\Support\Facades {
* Returns the request body content.
*
* @param bool $asResource If true, a resource will be returned
- * @return string|resource
+ * @return string|resource
* @psalm-return ($asResource is true ? resource : string)
- * @static
+ * @static
*/
public static function getContent($asResource = false)
{
@@ -13636,7 +13616,7 @@ namespace Illuminate\Support\Facades {
* Gets the decoded form or json request body.
*
* @throws JsonException When the body cannot be decoded to an array
- * @static
+ * @static
*/
public static function getPayload()
{
@@ -13648,7 +13628,7 @@ namespace Illuminate\Support\Facades {
/**
* Gets the Etags.
*
- * @static
+ * @static
*/
public static function getETags()
{
@@ -13658,9 +13638,7 @@ namespace Illuminate\Support\Facades {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function isNoCache()
{
@@ -13673,11 +13651,11 @@ namespace Illuminate\Support\Facades {
* Gets the preferred format for the response by inspecting, in the following order:
* * the request format set using setRequestFormat;
* * the values of the Accept HTTP header.
- *
+ *
* Note that if you use this method, you should send the "Vary: Accept" header
* in the response to prevent any issues with intermediary HTTP caches.
*
- * @static
+ * @static
*/
public static function getPreferredFormat($default = 'html')
{
@@ -13690,7 +13668,7 @@ namespace Illuminate\Support\Facades {
* Returns the preferred language.
*
* @param string[] $locales An array of ordered available locales
- * @static
+ * @static
*/
public static function getPreferredLanguage($locales = null)
{
@@ -13702,8 +13680,8 @@ namespace Illuminate\Support\Facades {
/**
* Gets a list of languages acceptable by the client browser ordered in the user browser preferences.
*
- * @return string[]
- * @static
+ * @return string[]
+ * @static
*/
public static function getLanguages()
{
@@ -13715,8 +13693,8 @@ namespace Illuminate\Support\Facades {
/**
* Gets a list of charsets acceptable by the client browser in preferable order.
*
- * @return string[]
- * @static
+ * @return string[]
+ * @static
*/
public static function getCharsets()
{
@@ -13728,8 +13706,8 @@ namespace Illuminate\Support\Facades {
/**
* Gets a list of encodings acceptable by the client browser in preferable order.
*
- * @return string[]
- * @static
+ * @return string[]
+ * @static
*/
public static function getEncodings()
{
@@ -13741,8 +13719,8 @@ namespace Illuminate\Support\Facades {
/**
* Gets a list of content types acceptable by the client browser in preferable order.
*
- * @return string[]
- * @static
+ * @return string[]
+ * @static
*/
public static function getAcceptableContentTypes()
{
@@ -13753,12 +13731,12 @@ namespace Illuminate\Support\Facades {
/**
* Returns true if the request is an XMLHttpRequest.
- *
+ *
* It works if your JavaScript library sets an X-Requested-With HTTP header.
* It is known to work with common JavaScript frameworks:
*
* @see https://wikipedia.org/wiki/List_of_Ajax_frameworks#JavaScript
- * @static
+ * @static
*/
public static function isXmlHttpRequest()
{
@@ -13771,7 +13749,7 @@ namespace Illuminate\Support\Facades {
* Checks whether the client browser prefers safe content or not according to RFC8674.
*
* @see https://tools.ietf.org/html/rfc8674
- * @static
+ * @static
*/
public static function preferSafeContent()
{
@@ -13782,11 +13760,11 @@ namespace Illuminate\Support\Facades {
/**
* Indicates whether this request originated from a trusted proxy.
- *
+ *
* This can be useful to determine whether or not to trust the
* contents of a proxy-specific header.
*
- * @static
+ * @static
*/
public static function isFromTrustedProxy()
{
@@ -13799,8 +13777,8 @@ namespace Illuminate\Support\Facades {
* Filter the given array of rules into an array of rules that are included in precognitive headers.
*
* @param array $rules
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function filterPrecognitiveRules($rules)
{
@@ -13811,8 +13789,8 @@ namespace Illuminate\Support\Facades {
/**
* Determine if the request is attempting to be precognitive.
*
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function isAttemptingPrecognition()
{
@@ -13823,8 +13801,8 @@ namespace Illuminate\Support\Facades {
/**
* Determine if the request is precognitive.
*
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function isPrecognitive()
{
@@ -13835,8 +13813,8 @@ namespace Illuminate\Support\Facades {
/**
* Determine if the request is sending JSON.
*
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function isJson()
{
@@ -13847,8 +13825,8 @@ namespace Illuminate\Support\Facades {
/**
* Determine if the current request probably expects a JSON response.
*
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function expectsJson()
{
@@ -13859,8 +13837,8 @@ namespace Illuminate\Support\Facades {
/**
* Determine if the current request is asking for JSON.
*
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function wantsJson()
{
@@ -13872,8 +13850,8 @@ namespace Illuminate\Support\Facades {
* Determines whether the current requests accepts a given content type.
*
* @param string|array $contentTypes
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function accepts($contentTypes)
{
@@ -13885,8 +13863,8 @@ namespace Illuminate\Support\Facades {
* Return the most suitable content type from the given array based on content negotiation.
*
* @param string|array $contentTypes
- * @return string|null
- * @static
+ * @return string|null
+ * @static
*/
public static function prefers($contentTypes)
{
@@ -13897,8 +13875,8 @@ namespace Illuminate\Support\Facades {
/**
* Determine if the current request accepts any content type.
*
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function acceptsAnyContentType()
{
@@ -13909,8 +13887,8 @@ namespace Illuminate\Support\Facades {
/**
* Determines whether a request accepts JSON.
*
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function acceptsJson()
{
@@ -13921,8 +13899,8 @@ namespace Illuminate\Support\Facades {
/**
* Determines whether a request accepts HTML.
*
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function acceptsHtml()
{
@@ -13935,8 +13913,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $actual
* @param string $type
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function matchesType($actual, $type)
{
@@ -13947,8 +13925,8 @@ namespace Illuminate\Support\Facades {
* Get the data format expected in the response.
*
* @param string $default
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function format($default = 'html')
{
@@ -13961,8 +13939,8 @@ namespace Illuminate\Support\Facades {
*
* @param string|null $key
* @param \Illuminate\Database\Eloquent\Model|string|array|null $default
- * @return string|array|null
- * @static
+ * @return string|array|null
+ * @static
*/
public static function old($key = null, $default = null)
{
@@ -13973,8 +13951,8 @@ namespace Illuminate\Support\Facades {
/**
* Flash the input for the current request to the session.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function flash()
{
@@ -13986,8 +13964,8 @@ namespace Illuminate\Support\Facades {
* Flash only some of the input to the session.
*
* @param array|mixed $keys
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function flashOnly($keys)
{
@@ -13999,8 +13977,8 @@ namespace Illuminate\Support\Facades {
* Flash only some of the input to the session.
*
* @param array|mixed $keys
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function flashExcept($keys)
{
@@ -14011,8 +13989,8 @@ namespace Illuminate\Support\Facades {
/**
* Flush all of the old input from the session.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function flush()
{
@@ -14025,8 +14003,8 @@ namespace Illuminate\Support\Facades {
*
* @param string|null $key
* @param string|array|null $default
- * @return string|array|null
- * @static
+ * @return string|array|null
+ * @static
*/
public static function server($key = null, $default = null)
{
@@ -14038,8 +14016,8 @@ namespace Illuminate\Support\Facades {
* Determine if a header is set on the request.
*
* @param string $key
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function hasHeader($key)
{
@@ -14052,8 +14030,8 @@ namespace Illuminate\Support\Facades {
*
* @param string|null $key
* @param string|array|null $default
- * @return string|array|null
- * @static
+ * @return string|array|null
+ * @static
*/
public static function header($key = null, $default = null)
{
@@ -14064,8 +14042,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the bearer token from the request headers.
*
- * @return string|null
- * @static
+ * @return string|null
+ * @static
*/
public static function bearerToken()
{
@@ -14076,8 +14054,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the keys for all of the input and files.
*
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function keys()
{
@@ -14089,8 +14067,8 @@ namespace Illuminate\Support\Facades {
* Get all of the input and files for the request.
*
* @param array|mixed|null $keys
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function all($keys = null)
{
@@ -14103,8 +14081,8 @@ namespace Illuminate\Support\Facades {
*
* @param string|null $key
* @param mixed $default
- * @return mixed
- * @static
+ * @return mixed
+ * @static
*/
public static function input($key = null, $default = null)
{
@@ -14116,8 +14094,8 @@ namespace Illuminate\Support\Facades {
* Retrieve input from the request as a Fluent object instance.
*
* @param array|string|null $key
- * @return \Illuminate\Support\Fluent
- * @static
+ * @return \Illuminate\Support\Fluent
+ * @static
*/
public static function fluent($key = null)
{
@@ -14130,8 +14108,8 @@ namespace Illuminate\Support\Facades {
*
* @param string|null $key
* @param string|array|null $default
- * @return string|array|null
- * @static
+ * @return string|array|null
+ * @static
*/
public static function query($key = null, $default = null)
{
@@ -14144,8 +14122,8 @@ namespace Illuminate\Support\Facades {
*
* @param string|null $key
* @param string|array|null $default
- * @return string|array|null
- * @static
+ * @return string|array|null
+ * @static
*/
public static function post($key = null, $default = null)
{
@@ -14157,8 +14135,8 @@ namespace Illuminate\Support\Facades {
* Determine if a cookie is set on the request.
*
* @param string $key
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function hasCookie($key)
{
@@ -14171,8 +14149,8 @@ namespace Illuminate\Support\Facades {
*
* @param string|null $key
* @param string|array|null $default
- * @return string|array|null
- * @static
+ * @return string|array|null
+ * @static
*/
public static function cookie($key = null, $default = null)
{
@@ -14183,8 +14161,8 @@ namespace Illuminate\Support\Facades {
/**
* Get an array of all of the files on the request.
*
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function allFiles()
{
@@ -14196,8 +14174,8 @@ namespace Illuminate\Support\Facades {
* Determine if the uploaded data contains a file.
*
* @param string $key
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function hasFile($key)
{
@@ -14210,8 +14188,8 @@ namespace Illuminate\Support\Facades {
*
* @param string|null $key
* @param mixed $default
- * @return \Illuminate\Http\UploadedFile|\Illuminate\Http\UploadedFile[]|array|null
- * @static
+ * @return \Illuminate\Http\UploadedFile|\Illuminate\Http\UploadedFile[]|array|null
+ * @static
*/
public static function file($key = null, $default = null)
{
@@ -14223,8 +14201,8 @@ namespace Illuminate\Support\Facades {
* Dump the items.
*
* @param mixed $keys
- * @return \Illuminate\Http\Request
- * @static
+ * @return \Illuminate\Http\Request
+ * @static
*/
public static function dump($keys = [])
{
@@ -14236,8 +14214,8 @@ namespace Illuminate\Support\Facades {
* Dump the given arguments and terminate execution.
*
* @param mixed $args
- * @return never
- * @static
+ * @return never
+ * @static
*/
public static function dd(...$args)
{
@@ -14249,8 +14227,8 @@ namespace Illuminate\Support\Facades {
* Determine if the data contains a given key.
*
* @param string|array $key
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function exists($key)
{
@@ -14262,8 +14240,8 @@ namespace Illuminate\Support\Facades {
* Determine if the data contains a given key.
*
* @param string|array $key
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function has($key)
{
@@ -14275,8 +14253,8 @@ namespace Illuminate\Support\Facades {
* Determine if the instance contains any of the given keys.
*
* @param string|array $keys
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function hasAny($keys)
{
@@ -14290,8 +14268,8 @@ namespace Illuminate\Support\Facades {
* @param string $key
* @param callable $callback
* @param callable|null $default
- * @return $this|mixed
- * @static
+ * @return $this|mixed
+ * @static
*/
public static function whenHas($key, $callback, $default = null)
{
@@ -14303,8 +14281,8 @@ namespace Illuminate\Support\Facades {
* Determine if the instance contains a non-empty value for the given key.
*
* @param string|array $key
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function filled($key)
{
@@ -14316,8 +14294,8 @@ namespace Illuminate\Support\Facades {
* Determine if the instance contains an empty value for the given key.
*
* @param string|array $key
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function isNotFilled($key)
{
@@ -14329,8 +14307,8 @@ namespace Illuminate\Support\Facades {
* Determine if the instance contains a non-empty value for any of the given keys.
*
* @param string|array $keys
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function anyFilled($keys)
{
@@ -14344,8 +14322,8 @@ namespace Illuminate\Support\Facades {
* @param string $key
* @param callable $callback
* @param callable|null $default
- * @return $this|mixed
- * @static
+ * @return $this|mixed
+ * @static
*/
public static function whenFilled($key, $callback, $default = null)
{
@@ -14357,8 +14335,8 @@ namespace Illuminate\Support\Facades {
* Determine if the instance is missing a given key.
*
* @param string|array $key
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function missing($key)
{
@@ -14372,8 +14350,8 @@ namespace Illuminate\Support\Facades {
* @param string $key
* @param callable $callback
* @param callable|null $default
- * @return $this|mixed
- * @static
+ * @return $this|mixed
+ * @static
*/
public static function whenMissing($key, $callback, $default = null)
{
@@ -14386,8 +14364,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $key
* @param mixed $default
- * @return \Illuminate\Support\Stringable
- * @static
+ * @return \Illuminate\Support\Stringable
+ * @static
*/
public static function str($key, $default = null)
{
@@ -14400,8 +14378,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $key
* @param mixed $default
- * @return \Illuminate\Support\Stringable
- * @static
+ * @return \Illuminate\Support\Stringable
+ * @static
*/
public static function string($key, $default = null)
{
@@ -14411,13 +14389,13 @@ namespace Illuminate\Support\Facades {
/**
* Retrieve data as a boolean value.
- *
+ *
* Returns true when value is "1", "true", "on", and "yes". Otherwise, returns false.
*
* @param string|null $key
* @param bool $default
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function boolean($key = null, $default = false)
{
@@ -14430,8 +14408,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $key
* @param int $default
- * @return int
- * @static
+ * @return int
+ * @static
*/
public static function integer($key, $default = 0)
{
@@ -14444,8 +14422,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $key
* @param float $default
- * @return float
- * @static
+ * @return float
+ * @static
*/
public static function float($key, $default = 0.0)
{
@@ -14459,9 +14437,9 @@ namespace Illuminate\Support\Facades {
* @param string $key
* @param string|null $format
* @param string|null $tz
- * @return \Illuminate\Support\Carbon|null
+ * @return \Illuminate\Support\Carbon|null
* @throws \Carbon\Exceptions\InvalidFormatException
- * @static
+ * @static
*/
public static function date($key, $format = null, $tz = null)
{
@@ -14475,8 +14453,8 @@ namespace Illuminate\Support\Facades {
* @template TEnum of \BackedEnum
* @param string $key
* @param class-string $enumClass
- * @return TEnum|null
- * @static
+ * @return TEnum|null
+ * @static
*/
public static function enum($key, $enumClass)
{
@@ -14490,8 +14468,8 @@ namespace Illuminate\Support\Facades {
* @template TEnum of \BackedEnum
* @param string $key
* @param class-string $enumClass
- * @return TEnum[]
- * @static
+ * @return TEnum[]
+ * @static
*/
public static function enums($key, $enumClass)
{
@@ -14503,8 +14481,8 @@ namespace Illuminate\Support\Facades {
* Retrieve data from the instance as an array.
*
* @param array|string|null $key
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function array($key = null)
{
@@ -14516,8 +14494,8 @@ namespace Illuminate\Support\Facades {
* Retrieve data from the instance as a collection.
*
* @param array|string|null $key
- * @return \Illuminate\Support\Collection
- * @static
+ * @return \Illuminate\Support\Collection
+ * @static
*/
public static function collect($key = null)
{
@@ -14529,8 +14507,8 @@ namespace Illuminate\Support\Facades {
* Get a subset containing the provided keys with values from the instance data.
*
* @param array|mixed $keys
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function only($keys)
{
@@ -14542,8 +14520,8 @@ namespace Illuminate\Support\Facades {
* Get all of the data except for a specified array of items.
*
* @param array|mixed $keys
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function except($keys)
{
@@ -14559,8 +14537,8 @@ namespace Illuminate\Support\Facades {
* @param (\Closure($this): TWhenParameter)|TWhenParameter|null $value
* @param (callable($this, TWhenParameter): TWhenReturnType)|null $callback
* @param (callable($this, TWhenParameter): TWhenReturnType)|null $default
- * @return $this|TWhenReturnType
- * @static
+ * @return $this|TWhenReturnType
+ * @static
*/
public static function when($value = null, $callback = null, $default = null)
{
@@ -14576,8 +14554,8 @@ namespace Illuminate\Support\Facades {
* @param (\Closure($this): TUnlessParameter)|TUnlessParameter|null $value
* @param (callable($this, TUnlessParameter): TUnlessReturnType)|null $callback
* @param (callable($this, TUnlessParameter): TUnlessReturnType)|null $default
- * @return $this|TUnlessReturnType
- * @static
+ * @return $this|TUnlessReturnType
+ * @static
*/
public static function unless($value = null, $callback = null, $default = null)
{
@@ -14591,8 +14569,8 @@ namespace Illuminate\Support\Facades {
* @param string $name
* @param object|callable $macro
* @param-closure-this static $macro
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function macro($name, $macro)
{
@@ -14604,9 +14582,9 @@ namespace Illuminate\Support\Facades {
*
* @param object $mixin
* @param bool $replace
- * @return void
+ * @return void
* @throws \ReflectionException
- * @static
+ * @static
*/
public static function mixin($mixin, $replace = true)
{
@@ -14617,8 +14595,8 @@ namespace Illuminate\Support\Facades {
* Checks if macro is registered.
*
* @param string $name
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function hasMacro($name)
{
@@ -14628,18 +14606,79 @@ namespace Illuminate\Support\Facades {
/**
* Flush the existing macros.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function flushMacros()
{
\Illuminate\Http\Request::flushMacros();
}
+ /**
+ * @see \Illuminate\Foundation\Providers\FoundationServiceProvider::registerRequestValidation()
+ * @param array $rules
+ * @param mixed $params
+ * @static
+ */
+ public static function validate($rules, ...$params)
+ {
+ return \Illuminate\Http\Request::validate($rules, ...$params);
+ }
+
+ /**
+ * @see \Illuminate\Foundation\Providers\FoundationServiceProvider::registerRequestValidation()
+ * @param string $errorBag
+ * @param array $rules
+ * @param mixed $params
+ * @static
+ */
+ public static function validateWithBag($errorBag, $rules, ...$params)
+ {
+ return \Illuminate\Http\Request::validateWithBag($errorBag, $rules, ...$params);
+ }
+
+ /**
+ * @see \Illuminate\Foundation\Providers\FoundationServiceProvider::registerRequestSignatureValidation()
+ * @param mixed $absolute
+ * @static
+ */
+ public static function hasValidSignature($absolute = true)
+ {
+ return \Illuminate\Http\Request::hasValidSignature($absolute);
+ }
+
+ /**
+ * @see \Illuminate\Foundation\Providers\FoundationServiceProvider::registerRequestSignatureValidation()
+ * @static
+ */
+ public static function hasValidRelativeSignature()
+ {
+ return \Illuminate\Http\Request::hasValidRelativeSignature();
+ }
+
+ /**
+ * @see \Illuminate\Foundation\Providers\FoundationServiceProvider::registerRequestSignatureValidation()
+ * @param mixed $ignoreQuery
+ * @param mixed $absolute
+ * @static
+ */
+ public static function hasValidSignatureWhileIgnoring($ignoreQuery = [], $absolute = true)
+ {
+ return \Illuminate\Http\Request::hasValidSignatureWhileIgnoring($ignoreQuery, $absolute);
+ }
+
+ /**
+ * @see \Illuminate\Foundation\Providers\FoundationServiceProvider::registerRequestSignatureValidation()
+ * @param mixed $ignoreQuery
+ * @static
+ */
+ public static function hasValidRelativeSignatureWhileIgnoring($ignoreQuery = [])
+ {
+ return \Illuminate\Http\Request::hasValidRelativeSignatureWhileIgnoring($ignoreQuery);
+ }
+
}
/**
- *
- *
* @see \Illuminate\Routing\ResponseFactory
*/
class Response {
@@ -14649,8 +14688,8 @@ namespace Illuminate\Support\Facades {
* @param mixed $content
* @param int $status
* @param array $headers
- * @return \Illuminate\Http\Response
- * @static
+ * @return \Illuminate\Http\Response
+ * @static
*/
public static function make($content = '', $status = 200, $headers = [])
{
@@ -14663,8 +14702,8 @@ namespace Illuminate\Support\Facades {
*
* @param int $status
* @param array $headers
- * @return \Illuminate\Http\Response
- * @static
+ * @return \Illuminate\Http\Response
+ * @static
*/
public static function noContent($status = 204, $headers = [])
{
@@ -14679,8 +14718,8 @@ namespace Illuminate\Support\Facades {
* @param array $data
* @param int $status
* @param array $headers
- * @return \Illuminate\Http\Response
- * @static
+ * @return \Illuminate\Http\Response
+ * @static
*/
public static function view($view, $data = [], $status = 200, $headers = [])
{
@@ -14695,8 +14734,8 @@ namespace Illuminate\Support\Facades {
* @param int $status
* @param array $headers
* @param int $options
- * @return \Illuminate\Http\JsonResponse
- * @static
+ * @return \Illuminate\Http\JsonResponse
+ * @static
*/
public static function json($data = [], $status = 200, $headers = [], $options = 0)
{
@@ -14712,8 +14751,8 @@ namespace Illuminate\Support\Facades {
* @param int $status
* @param array $headers
* @param int $options
- * @return \Illuminate\Http\JsonResponse
- * @static
+ * @return \Illuminate\Http\JsonResponse
+ * @static
*/
public static function jsonp($callback, $data = [], $status = 200, $headers = [], $options = 0)
{
@@ -14727,8 +14766,8 @@ namespace Illuminate\Support\Facades {
* @param \Closure $callback
* @param array $headers
* @param string $endStreamWith
- * @return \Symfony\Component\HttpFoundation\StreamedResponse
- * @static
+ * @return \Symfony\Component\HttpFoundation\StreamedResponse
+ * @static
*/
public static function eventStream($callback, $headers = [], $endStreamWith = '')
{
@@ -14742,8 +14781,8 @@ namespace Illuminate\Support\Facades {
* @param callable $callback
* @param int $status
* @param array $headers
- * @return \Symfony\Component\HttpFoundation\StreamedResponse
- * @static
+ * @return \Symfony\Component\HttpFoundation\StreamedResponse
+ * @static
*/
public static function stream($callback, $status = 200, $headers = [])
{
@@ -14758,8 +14797,8 @@ namespace Illuminate\Support\Facades {
* @param int $status
* @param array $headers
* @param int $encodingOptions
- * @return \Symfony\Component\HttpFoundation\StreamedJsonResponse
- * @static
+ * @return \Symfony\Component\HttpFoundation\StreamedJsonResponse
+ * @static
*/
public static function streamJson($data, $status = 200, $headers = [], $encodingOptions = 15)
{
@@ -14774,9 +14813,9 @@ namespace Illuminate\Support\Facades {
* @param string|null $name
* @param array $headers
* @param string|null $disposition
- * @return \Symfony\Component\HttpFoundation\StreamedResponse
+ * @return \Symfony\Component\HttpFoundation\StreamedResponse
* @throws \Illuminate\Routing\Exceptions\StreamedResponseException
- * @static
+ * @static
*/
public static function streamDownload($callback, $name = null, $headers = [], $disposition = 'attachment')
{
@@ -14791,8 +14830,8 @@ namespace Illuminate\Support\Facades {
* @param string|null $name
* @param array $headers
* @param string|null $disposition
- * @return \Symfony\Component\HttpFoundation\BinaryFileResponse
- * @static
+ * @return \Symfony\Component\HttpFoundation\BinaryFileResponse
+ * @static
*/
public static function download($file, $name = null, $headers = [], $disposition = 'attachment')
{
@@ -14805,8 +14844,8 @@ namespace Illuminate\Support\Facades {
*
* @param \SplFileInfo|string $file
* @param array $headers
- * @return \Symfony\Component\HttpFoundation\BinaryFileResponse
- * @static
+ * @return \Symfony\Component\HttpFoundation\BinaryFileResponse
+ * @static
*/
public static function file($file, $headers = [])
{
@@ -14821,8 +14860,8 @@ namespace Illuminate\Support\Facades {
* @param int $status
* @param array $headers
* @param bool|null $secure
- * @return \Illuminate\Http\RedirectResponse
- * @static
+ * @return \Illuminate\Http\RedirectResponse
+ * @static
*/
public static function redirectTo($path, $status = 302, $headers = [], $secure = null)
{
@@ -14837,8 +14876,8 @@ namespace Illuminate\Support\Facades {
* @param mixed $parameters
* @param int $status
* @param array $headers
- * @return \Illuminate\Http\RedirectResponse
- * @static
+ * @return \Illuminate\Http\RedirectResponse
+ * @static
*/
public static function redirectToRoute($route, $parameters = [], $status = 302, $headers = [])
{
@@ -14853,8 +14892,8 @@ namespace Illuminate\Support\Facades {
* @param mixed $parameters
* @param int $status
* @param array $headers
- * @return \Illuminate\Http\RedirectResponse
- * @static
+ * @return \Illuminate\Http\RedirectResponse
+ * @static
*/
public static function redirectToAction($action, $parameters = [], $status = 302, $headers = [])
{
@@ -14869,8 +14908,8 @@ namespace Illuminate\Support\Facades {
* @param int $status
* @param array $headers
* @param bool|null $secure
- * @return \Illuminate\Http\RedirectResponse
- * @static
+ * @return \Illuminate\Http\RedirectResponse
+ * @static
*/
public static function redirectGuest($path, $status = 302, $headers = [], $secure = null)
{
@@ -14885,8 +14924,8 @@ namespace Illuminate\Support\Facades {
* @param int $status
* @param array $headers
* @param bool|null $secure
- * @return \Illuminate\Http\RedirectResponse
- * @static
+ * @return \Illuminate\Http\RedirectResponse
+ * @static
*/
public static function redirectToIntended($default = '/', $status = 302, $headers = [], $secure = null)
{
@@ -14900,8 +14939,8 @@ namespace Illuminate\Support\Facades {
* @param string $name
* @param object|callable $macro
* @param-closure-this static $macro
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function macro($name, $macro)
{
@@ -14913,9 +14952,9 @@ namespace Illuminate\Support\Facades {
*
* @param object $mixin
* @param bool $replace
- * @return void
+ * @return void
* @throws \ReflectionException
- * @static
+ * @static
*/
public static function mixin($mixin, $replace = true)
{
@@ -14926,8 +14965,8 @@ namespace Illuminate\Support\Facades {
* Checks if macro is registered.
*
* @param string $name
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function hasMacro($name)
{
@@ -14937,8 +14976,8 @@ namespace Illuminate\Support\Facades {
/**
* Flush the existing macros.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function flushMacros()
{
@@ -14947,8 +14986,6 @@ namespace Illuminate\Support\Facades {
}
/**
- *
- *
* @method static \Illuminate\Routing\RouteRegistrar attribute(string $key, mixed $value)
* @method static \Illuminate\Routing\RouteRegistrar whereAlpha(array|string $parameters)
* @method static \Illuminate\Routing\RouteRegistrar whereAlphaNumeric(array|string $parameters)
@@ -14977,8 +15014,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $uri
* @param array|string|callable|null $action
- * @return \Illuminate\Routing\Route
- * @static
+ * @return \Illuminate\Routing\Route
+ * @static
*/
public static function get($uri, $action = null)
{
@@ -14991,8 +15028,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $uri
* @param array|string|callable|null $action
- * @return \Illuminate\Routing\Route
- * @static
+ * @return \Illuminate\Routing\Route
+ * @static
*/
public static function post($uri, $action = null)
{
@@ -15005,8 +15042,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $uri
* @param array|string|callable|null $action
- * @return \Illuminate\Routing\Route
- * @static
+ * @return \Illuminate\Routing\Route
+ * @static
*/
public static function put($uri, $action = null)
{
@@ -15019,8 +15056,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $uri
* @param array|string|callable|null $action
- * @return \Illuminate\Routing\Route
- * @static
+ * @return \Illuminate\Routing\Route
+ * @static
*/
public static function patch($uri, $action = null)
{
@@ -15033,8 +15070,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $uri
* @param array|string|callable|null $action
- * @return \Illuminate\Routing\Route
- * @static
+ * @return \Illuminate\Routing\Route
+ * @static
*/
public static function delete($uri, $action = null)
{
@@ -15047,8 +15084,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $uri
* @param array|string|callable|null $action
- * @return \Illuminate\Routing\Route
- * @static
+ * @return \Illuminate\Routing\Route
+ * @static
*/
public static function options($uri, $action = null)
{
@@ -15061,8 +15098,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $uri
* @param array|string|callable|null $action
- * @return \Illuminate\Routing\Route
- * @static
+ * @return \Illuminate\Routing\Route
+ * @static
*/
public static function any($uri, $action = null)
{
@@ -15074,8 +15111,8 @@ namespace Illuminate\Support\Facades {
* Register a new fallback route with the router.
*
* @param array|string|callable|null $action
- * @return \Illuminate\Routing\Route
- * @static
+ * @return \Illuminate\Routing\Route
+ * @static
*/
public static function fallback($action)
{
@@ -15089,8 +15126,8 @@ namespace Illuminate\Support\Facades {
* @param string $uri
* @param string $destination
* @param int $status
- * @return \Illuminate\Routing\Route
- * @static
+ * @return \Illuminate\Routing\Route
+ * @static
*/
public static function redirect($uri, $destination, $status = 302)
{
@@ -15103,8 +15140,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $uri
* @param string $destination
- * @return \Illuminate\Routing\Route
- * @static
+ * @return \Illuminate\Routing\Route
+ * @static
*/
public static function permanentRedirect($uri, $destination)
{
@@ -15120,8 +15157,8 @@ namespace Illuminate\Support\Facades {
* @param array $data
* @param int|array $status
* @param array $headers
- * @return \Illuminate\Routing\Route
- * @static
+ * @return \Illuminate\Routing\Route
+ * @static
*/
public static function view($uri, $view, $data = [], $status = 200, $headers = [])
{
@@ -15135,8 +15172,8 @@ namespace Illuminate\Support\Facades {
* @param array|string $methods
* @param string $uri
* @param array|string|callable|null $action
- * @return \Illuminate\Routing\Route
- * @static
+ * @return \Illuminate\Routing\Route
+ * @static
*/
public static function match($methods, $uri, $action = null)
{
@@ -15149,8 +15186,8 @@ namespace Illuminate\Support\Facades {
*
* @param array $resources
* @param array $options
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function resources($resources, $options = [])
{
@@ -15164,8 +15201,8 @@ namespace Illuminate\Support\Facades {
* @param string $name
* @param string $controller
* @param array $options
- * @return \Illuminate\Routing\PendingResourceRegistration
- * @static
+ * @return \Illuminate\Routing\PendingResourceRegistration
+ * @static
*/
public static function resource($name, $controller, $options = [])
{
@@ -15178,8 +15215,8 @@ namespace Illuminate\Support\Facades {
*
* @param array $resources
* @param array $options
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function apiResources($resources, $options = [])
{
@@ -15193,8 +15230,8 @@ namespace Illuminate\Support\Facades {
* @param string $name
* @param string $controller
* @param array $options
- * @return \Illuminate\Routing\PendingResourceRegistration
- * @static
+ * @return \Illuminate\Routing\PendingResourceRegistration
+ * @static
*/
public static function apiResource($name, $controller, $options = [])
{
@@ -15207,8 +15244,8 @@ namespace Illuminate\Support\Facades {
*
* @param array $singletons
* @param array $options
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function singletons($singletons, $options = [])
{
@@ -15222,8 +15259,8 @@ namespace Illuminate\Support\Facades {
* @param string $name
* @param string $controller
* @param array $options
- * @return \Illuminate\Routing\PendingSingletonResourceRegistration
- * @static
+ * @return \Illuminate\Routing\PendingSingletonResourceRegistration
+ * @static
*/
public static function singleton($name, $controller, $options = [])
{
@@ -15236,8 +15273,8 @@ namespace Illuminate\Support\Facades {
*
* @param array $singletons
* @param array $options
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function apiSingletons($singletons, $options = [])
{
@@ -15251,8 +15288,8 @@ namespace Illuminate\Support\Facades {
* @param string $name
* @param string $controller
* @param array $options
- * @return \Illuminate\Routing\PendingSingletonResourceRegistration
- * @static
+ * @return \Illuminate\Routing\PendingSingletonResourceRegistration
+ * @static
*/
public static function apiSingleton($name, $controller, $options = [])
{
@@ -15265,8 +15302,8 @@ namespace Illuminate\Support\Facades {
*
* @param array $attributes
* @param \Closure|array|string $routes
- * @return \Illuminate\Routing\Router
- * @static
+ * @return \Illuminate\Routing\Router
+ * @static
*/
public static function group($attributes, $routes)
{
@@ -15279,8 +15316,8 @@ namespace Illuminate\Support\Facades {
*
* @param array $new
* @param bool $prependExistingPrefix
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function mergeWithLastGroup($new, $prependExistingPrefix = true)
{
@@ -15291,8 +15328,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the prefix from the last group on the stack.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function getLastGroupPrefix()
{
@@ -15306,8 +15343,8 @@ namespace Illuminate\Support\Facades {
* @param array|string $methods
* @param string $uri
* @param array|string|callable|null $action
- * @return \Illuminate\Routing\Route
- * @static
+ * @return \Illuminate\Routing\Route
+ * @static
*/
public static function addRoute($methods, $uri, $action)
{
@@ -15321,8 +15358,8 @@ namespace Illuminate\Support\Facades {
* @param array|string $methods
* @param string $uri
* @param mixed $action
- * @return \Illuminate\Routing\Route
- * @static
+ * @return \Illuminate\Routing\Route
+ * @static
*/
public static function newRoute($methods, $uri, $action)
{
@@ -15334,8 +15371,8 @@ namespace Illuminate\Support\Facades {
* Return the response returned by the given route.
*
* @param string $name
- * @return \Symfony\Component\HttpFoundation\Response
- * @static
+ * @return \Symfony\Component\HttpFoundation\Response
+ * @static
*/
public static function respondWithRoute($name)
{
@@ -15347,8 +15384,8 @@ namespace Illuminate\Support\Facades {
* Dispatch the request to the application.
*
* @param \Illuminate\Http\Request $request
- * @return \Symfony\Component\HttpFoundation\Response
- * @static
+ * @return \Symfony\Component\HttpFoundation\Response
+ * @static
*/
public static function dispatch($request)
{
@@ -15360,8 +15397,8 @@ namespace Illuminate\Support\Facades {
* Dispatch the request to a route and return the response.
*
* @param \Illuminate\Http\Request $request
- * @return \Symfony\Component\HttpFoundation\Response
- * @static
+ * @return \Symfony\Component\HttpFoundation\Response
+ * @static
*/
public static function dispatchToRoute($request)
{
@@ -15373,8 +15410,8 @@ namespace Illuminate\Support\Facades {
* Gather the middleware for the given route with resolved class names.
*
* @param \Illuminate\Routing\Route $route
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function gatherRouteMiddleware($route)
{
@@ -15387,8 +15424,8 @@ namespace Illuminate\Support\Facades {
*
* @param array $middleware
* @param array $excluded
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function resolveMiddleware($middleware, $excluded = [])
{
@@ -15401,8 +15438,8 @@ namespace Illuminate\Support\Facades {
*
* @param \Symfony\Component\HttpFoundation\Request $request
* @param mixed $response
- * @return \Symfony\Component\HttpFoundation\Response
- * @static
+ * @return \Symfony\Component\HttpFoundation\Response
+ * @static
*/
public static function prepareResponse($request, $response)
{
@@ -15415,8 +15452,8 @@ namespace Illuminate\Support\Facades {
*
* @param \Symfony\Component\HttpFoundation\Request $request
* @param mixed $response
- * @return \Symfony\Component\HttpFoundation\Response
- * @static
+ * @return \Symfony\Component\HttpFoundation\Response
+ * @static
*/
public static function toResponse($request, $response)
{
@@ -15427,10 +15464,10 @@ namespace Illuminate\Support\Facades {
* Substitute the route bindings onto the route.
*
* @param \Illuminate\Routing\Route $route
- * @return \Illuminate\Routing\Route
+ * @return \Illuminate\Routing\Route
* @throws \Illuminate\Database\Eloquent\ModelNotFoundException<\Illuminate\Database\Eloquent\Model>
* @throws \Illuminate\Routing\Exceptions\BackedEnumCaseNotFoundException
- * @static
+ * @static
*/
public static function substituteBindings($route)
{
@@ -15442,10 +15479,10 @@ namespace Illuminate\Support\Facades {
* Substitute the implicit route bindings for the given route.
*
* @param \Illuminate\Routing\Route $route
- * @return void
+ * @return void
* @throws \Illuminate\Database\Eloquent\ModelNotFoundException<\Illuminate\Database\Eloquent\Model>
* @throws \Illuminate\Routing\Exceptions\BackedEnumCaseNotFoundException
- * @static
+ * @static
*/
public static function substituteImplicitBindings($route)
{
@@ -15457,8 +15494,8 @@ namespace Illuminate\Support\Facades {
* Register a callback to run after implicit bindings are substituted.
*
* @param callable $callback
- * @return \Illuminate\Routing\Router
- * @static
+ * @return \Illuminate\Routing\Router
+ * @static
*/
public static function substituteImplicitBindingsUsing($callback)
{
@@ -15470,8 +15507,8 @@ namespace Illuminate\Support\Facades {
* Register a route matched event listener.
*
* @param string|callable $callback
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function matched($callback)
{
@@ -15482,8 +15519,8 @@ namespace Illuminate\Support\Facades {
/**
* Get all of the defined middleware short-hand names.
*
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function getMiddleware()
{
@@ -15496,8 +15533,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $name
* @param string $class
- * @return \Illuminate\Routing\Router
- * @static
+ * @return \Illuminate\Routing\Router
+ * @static
*/
public static function aliasMiddleware($name, $class)
{
@@ -15509,8 +15546,8 @@ namespace Illuminate\Support\Facades {
* Check if a middlewareGroup with the given name exists.
*
* @param string $name
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function hasMiddlewareGroup($name)
{
@@ -15521,8 +15558,8 @@ namespace Illuminate\Support\Facades {
/**
* Get all of the defined middleware groups.
*
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function getMiddlewareGroups()
{
@@ -15535,8 +15572,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $name
* @param array $middleware
- * @return \Illuminate\Routing\Router
- * @static
+ * @return \Illuminate\Routing\Router
+ * @static
*/
public static function middlewareGroup($name, $middleware)
{
@@ -15546,13 +15583,13 @@ namespace Illuminate\Support\Facades {
/**
* Add a middleware to the beginning of a middleware group.
- *
+ *
* If the middleware is already in the group, it will not be added again.
*
* @param string $group
* @param string $middleware
- * @return \Illuminate\Routing\Router
- * @static
+ * @return \Illuminate\Routing\Router
+ * @static
*/
public static function prependMiddlewareToGroup($group, $middleware)
{
@@ -15562,13 +15599,13 @@ namespace Illuminate\Support\Facades {
/**
* Add a middleware to the end of a middleware group.
- *
+ *
* If the middleware is already in the group, it will not be added again.
*
* @param string $group
* @param string $middleware
- * @return \Illuminate\Routing\Router
- * @static
+ * @return \Illuminate\Routing\Router
+ * @static
*/
public static function pushMiddlewareToGroup($group, $middleware)
{
@@ -15581,8 +15618,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $group
* @param string $middleware
- * @return \Illuminate\Routing\Router
- * @static
+ * @return \Illuminate\Routing\Router
+ * @static
*/
public static function removeMiddlewareFromGroup($group, $middleware)
{
@@ -15593,8 +15630,8 @@ namespace Illuminate\Support\Facades {
/**
* Flush the router's middleware groups.
*
- * @return \Illuminate\Routing\Router
- * @static
+ * @return \Illuminate\Routing\Router
+ * @static
*/
public static function flushMiddlewareGroups()
{
@@ -15607,8 +15644,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $key
* @param string|callable $binder
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function bind($key, $binder)
{
@@ -15622,8 +15659,8 @@ namespace Illuminate\Support\Facades {
* @param string $key
* @param string $class
* @param \Closure|null $callback
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function model($key, $class, $callback = null)
{
@@ -15635,8 +15672,8 @@ namespace Illuminate\Support\Facades {
* Get the binding callback for a given binding.
*
* @param string $key
- * @return \Closure|null
- * @static
+ * @return \Closure|null
+ * @static
*/
public static function getBindingCallback($key)
{
@@ -15647,8 +15684,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the global "where" patterns.
*
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function getPatterns()
{
@@ -15661,8 +15698,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $key
* @param string $pattern
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function pattern($key, $pattern)
{
@@ -15674,8 +15711,8 @@ namespace Illuminate\Support\Facades {
* Set a group of global where patterns on all routes.
*
* @param array $patterns
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function patterns($patterns)
{
@@ -15686,8 +15723,8 @@ namespace Illuminate\Support\Facades {
/**
* Determine if the router currently has a group stack.
*
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function hasGroupStack()
{
@@ -15698,8 +15735,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the current group stack for the router.
*
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function getGroupStack()
{
@@ -15712,8 +15749,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $key
* @param string|null $default
- * @return mixed
- * @static
+ * @return mixed
+ * @static
*/
public static function input($key, $default = null)
{
@@ -15724,8 +15761,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the request currently being dispatched.
*
- * @return \Illuminate\Http\Request
- * @static
+ * @return \Illuminate\Http\Request
+ * @static
*/
public static function getCurrentRequest()
{
@@ -15736,8 +15773,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the currently dispatched route instance.
*
- * @return \Illuminate\Routing\Route|null
- * @static
+ * @return \Illuminate\Routing\Route|null
+ * @static
*/
public static function getCurrentRoute()
{
@@ -15748,8 +15785,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the currently dispatched route instance.
*
- * @return \Illuminate\Routing\Route|null
- * @static
+ * @return \Illuminate\Routing\Route|null
+ * @static
*/
public static function current()
{
@@ -15761,8 +15798,8 @@ namespace Illuminate\Support\Facades {
* Check if a route with the given name exists.
*
* @param string|array $name
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function has($name)
{
@@ -15773,8 +15810,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the current route name.
*
- * @return string|null
- * @static
+ * @return string|null
+ * @static
*/
public static function currentRouteName()
{
@@ -15786,8 +15823,8 @@ namespace Illuminate\Support\Facades {
* Alias for the "currentRouteNamed" method.
*
* @param mixed $patterns
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function is(...$patterns)
{
@@ -15799,8 +15836,8 @@ namespace Illuminate\Support\Facades {
* Determine if the current route matches a pattern.
*
* @param mixed $patterns
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function currentRouteNamed(...$patterns)
{
@@ -15811,8 +15848,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the current route action.
*
- * @return string|null
- * @static
+ * @return string|null
+ * @static
*/
public static function currentRouteAction()
{
@@ -15824,8 +15861,8 @@ namespace Illuminate\Support\Facades {
* Alias for the "currentRouteUses" method.
*
* @param array|string $patterns
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function uses(...$patterns)
{
@@ -15837,8 +15874,8 @@ namespace Illuminate\Support\Facades {
* Determine if the current route action matches a given action.
*
* @param string $action
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function currentRouteUses($action)
{
@@ -15850,8 +15887,8 @@ namespace Illuminate\Support\Facades {
* Set the unmapped global resource parameters to singular.
*
* @param bool $singular
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function singularResourceParameters($singular = true)
{
@@ -15863,8 +15900,8 @@ namespace Illuminate\Support\Facades {
* Set the global resource parameter mapping.
*
* @param array $parameters
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function resourceParameters($parameters = [])
{
@@ -15876,8 +15913,8 @@ namespace Illuminate\Support\Facades {
* Get or set the verbs used in the resource URIs.
*
* @param array $verbs
- * @return array|null
- * @static
+ * @return array|null
+ * @static
*/
public static function resourceVerbs($verbs = [])
{
@@ -15888,8 +15925,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the underlying route collection.
*
- * @return \Illuminate\Routing\RouteCollectionInterface
- * @static
+ * @return \Illuminate\Routing\RouteCollectionInterface
+ * @static
*/
public static function getRoutes()
{
@@ -15901,8 +15938,8 @@ namespace Illuminate\Support\Facades {
* Set the route collection instance.
*
* @param \Illuminate\Routing\RouteCollection $routes
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function setRoutes($routes)
{
@@ -15914,8 +15951,8 @@ namespace Illuminate\Support\Facades {
* Set the compiled route collection instance.
*
* @param array $routes
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function setCompiledRoutes($routes)
{
@@ -15927,8 +15964,8 @@ namespace Illuminate\Support\Facades {
* Remove any duplicate middleware from the given array.
*
* @param array $middleware
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function uniqueMiddleware($middleware)
{
@@ -15939,8 +15976,8 @@ namespace Illuminate\Support\Facades {
* Set the container instance used by the router.
*
* @param \Illuminate\Container\Container $container
- * @return \Illuminate\Routing\Router
- * @static
+ * @return \Illuminate\Routing\Router
+ * @static
*/
public static function setContainer($container)
{
@@ -15954,8 +15991,8 @@ namespace Illuminate\Support\Facades {
* @param string $name
* @param object|callable $macro
* @param-closure-this static $macro
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function macro($name, $macro)
{
@@ -15967,9 +16004,9 @@ namespace Illuminate\Support\Facades {
*
* @param object $mixin
* @param bool $replace
- * @return void
+ * @return void
* @throws \ReflectionException
- * @static
+ * @static
*/
public static function mixin($mixin, $replace = true)
{
@@ -15980,8 +16017,8 @@ namespace Illuminate\Support\Facades {
* Checks if macro is registered.
*
* @param string $name
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function hasMacro($name)
{
@@ -15991,8 +16028,8 @@ namespace Illuminate\Support\Facades {
/**
* Flush the existing macros.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function flushMacros()
{
@@ -16004,9 +16041,9 @@ namespace Illuminate\Support\Facades {
*
* @param string $method
* @param array $parameters
- * @return mixed
+ * @return mixed
* @throws \BadMethodCallException
- * @static
+ * @static
*/
public static function macroCall($method, $parameters)
{
@@ -16019,7 +16056,7 @@ namespace Illuminate\Support\Facades {
*
* @param (callable($this): mixed)|null $callback
* @return ($callback is null ? \Illuminate\Support\HigherOrderTapProxy : $this)
- * @static
+ * @static
*/
public static function tap($callback = null)
{
@@ -16027,10 +16064,45 @@ namespace Illuminate\Support\Facades {
return $instance->tap($callback);
}
+ /**
+ * @see \Laravel\Ui\AuthRouteMethods::auth()
+ * @param mixed $options
+ * @static
+ */
+ public static function auth($options = [])
+ {
+ return \Illuminate\Routing\Router::auth($options);
+ }
+
+ /**
+ * @see \Laravel\Ui\AuthRouteMethods::resetPassword()
+ * @static
+ */
+ public static function resetPassword()
+ {
+ return \Illuminate\Routing\Router::resetPassword();
+ }
+
+ /**
+ * @see \Laravel\Ui\AuthRouteMethods::confirmPassword()
+ * @static
+ */
+ public static function confirmPassword()
+ {
+ return \Illuminate\Routing\Router::confirmPassword();
+ }
+
+ /**
+ * @see \Laravel\Ui\AuthRouteMethods::emailVerification()
+ * @static
+ */
+ public static function emailVerification()
+ {
+ return \Illuminate\Routing\Router::emailVerification();
+ }
+
}
/**
- *
- *
* @see \Illuminate\Database\Schema\Builder
*/
class Schema {
@@ -16038,8 +16110,8 @@ namespace Illuminate\Support\Facades {
* Create a database in the schema.
*
* @param string $name
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function createDatabase($name)
{
@@ -16051,8 +16123,8 @@ namespace Illuminate\Support\Facades {
* Drop a database from the schema if the database exists.
*
* @param string $name
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function dropDatabaseIfExists($name)
{
@@ -16064,8 +16136,8 @@ namespace Illuminate\Support\Facades {
* Determine if the given table exists.
*
* @param string $table
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function hasTable($table)
{
@@ -16076,8 +16148,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the tables for the database.
*
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function getTables()
{
@@ -16088,8 +16160,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the views for the database.
*
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function getViews()
{
@@ -16101,8 +16173,8 @@ namespace Illuminate\Support\Facades {
* Get the columns for a given table.
*
* @param string $table
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function getColumns($table)
{
@@ -16114,8 +16186,8 @@ namespace Illuminate\Support\Facades {
* Get the indexes for a given table.
*
* @param string $table
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function getIndexes($table)
{
@@ -16127,8 +16199,8 @@ namespace Illuminate\Support\Facades {
* Get the foreign keys for a given table.
*
* @param string $table
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function getForeignKeys($table)
{
@@ -16139,8 +16211,8 @@ namespace Illuminate\Support\Facades {
/**
* Drop all tables from the database.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function dropAllTables()
{
@@ -16151,8 +16223,8 @@ namespace Illuminate\Support\Facades {
/**
* Drop all views from the database.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function dropAllViews()
{
@@ -16164,8 +16236,8 @@ namespace Illuminate\Support\Facades {
* Set the default string length for migrations.
*
* @param int $length
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function defaultStringLength($length)
{
@@ -16177,9 +16249,9 @@ namespace Illuminate\Support\Facades {
* Set the default morph key type for migrations.
*
* @param string $type
- * @return void
+ * @return void
* @throws \InvalidArgumentException
- * @static
+ * @static
*/
public static function defaultMorphKeyType($type)
{
@@ -16190,8 +16262,8 @@ namespace Illuminate\Support\Facades {
/**
* Set the default morph key type for migrations to UUIDs.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function morphUsingUuids()
{
@@ -16202,8 +16274,8 @@ namespace Illuminate\Support\Facades {
/**
* Set the default morph key type for migrations to ULIDs.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function morphUsingUlids()
{
@@ -16215,8 +16287,8 @@ namespace Illuminate\Support\Facades {
* Determine if the given view exists.
*
* @param string $view
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function hasView($view)
{
@@ -16228,8 +16300,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the names of the tables that belong to the database.
*
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function getTableListing()
{
@@ -16241,8 +16313,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the user-defined types that belong to the database.
*
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function getTypes()
{
@@ -16256,8 +16328,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $table
* @param string $column
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function hasColumn($table, $column)
{
@@ -16271,8 +16343,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $table
* @param array $columns
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function hasColumns($table, $columns)
{
@@ -16287,8 +16359,8 @@ namespace Illuminate\Support\Facades {
* @param string $table
* @param string $column
* @param \Closure $callback
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function whenTableHasColumn($table, $column, $callback)
{
@@ -16303,8 +16375,8 @@ namespace Illuminate\Support\Facades {
* @param string $table
* @param string $column
* @param \Closure $callback
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function whenTableDoesntHaveColumn($table, $column, $callback)
{
@@ -16319,8 +16391,8 @@ namespace Illuminate\Support\Facades {
* @param string $table
* @param string $column
* @param bool $fullDefinition
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function getColumnType($table, $column, $fullDefinition = false)
{
@@ -16333,8 +16405,8 @@ namespace Illuminate\Support\Facades {
* Get the column listing for a given table.
*
* @param string $table
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function getColumnListing($table)
{
@@ -16347,8 +16419,8 @@ namespace Illuminate\Support\Facades {
* Get the names of the indexes for a given table.
*
* @param string $table
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function getIndexListing($table)
{
@@ -16363,8 +16435,8 @@ namespace Illuminate\Support\Facades {
* @param string $table
* @param string|array $index
* @param string|null $type
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function hasIndex($table, $index, $type = null)
{
@@ -16378,8 +16450,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $table
* @param \Closure $callback
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function table($table, $callback)
{
@@ -16393,8 +16465,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $table
* @param \Closure $callback
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function create($table, $callback)
{
@@ -16407,8 +16479,8 @@ namespace Illuminate\Support\Facades {
* Drop a table from the schema.
*
* @param string $table
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function drop($table)
{
@@ -16421,8 +16493,8 @@ namespace Illuminate\Support\Facades {
* Drop a table from the schema if it exists.
*
* @param string $table
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function dropIfExists($table)
{
@@ -16436,8 +16508,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $table
* @param string|array $columns
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function dropColumns($table, $columns)
{
@@ -16449,9 +16521,9 @@ namespace Illuminate\Support\Facades {
/**
* Drop all types from the database.
*
- * @return void
+ * @return void
* @throws \LogicException
- * @static
+ * @static
*/
public static function dropAllTypes()
{
@@ -16465,8 +16537,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $from
* @param string $to
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function rename($from, $to)
{
@@ -16478,8 +16550,8 @@ namespace Illuminate\Support\Facades {
/**
* Enable foreign key constraints.
*
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function enableForeignKeyConstraints()
{
@@ -16491,8 +16563,8 @@ namespace Illuminate\Support\Facades {
/**
* Disable foreign key constraints.
*
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function disableForeignKeyConstraints()
{
@@ -16505,8 +16577,8 @@ namespace Illuminate\Support\Facades {
* Disable foreign key constraints during the execution of a callback.
*
* @param \Closure $callback
- * @return mixed
- * @static
+ * @return mixed
+ * @static
*/
public static function withoutForeignKeyConstraints($callback)
{
@@ -16518,8 +16590,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the database connection instance.
*
- * @return \Illuminate\Database\Connection
- * @static
+ * @return \Illuminate\Database\Connection
+ * @static
*/
public static function getConnection()
{
@@ -16532,8 +16604,8 @@ namespace Illuminate\Support\Facades {
* Set the database connection instance.
*
* @param \Illuminate\Database\Connection $connection
- * @return \Illuminate\Database\Schema\MySqlBuilder
- * @static
+ * @return \Illuminate\Database\Schema\MySqlBuilder
+ * @static
*/
public static function setConnection($connection)
{
@@ -16546,8 +16618,8 @@ namespace Illuminate\Support\Facades {
* Set the Schema Blueprint resolver callback.
*
* @param \Closure $resolver
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function blueprintResolver($resolver)
{
@@ -16562,8 +16634,8 @@ namespace Illuminate\Support\Facades {
* @param string $name
* @param object|callable $macro
* @param-closure-this static $macro
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function macro($name, $macro)
{
@@ -16576,9 +16648,9 @@ namespace Illuminate\Support\Facades {
*
* @param object $mixin
* @param bool $replace
- * @return void
+ * @return void
* @throws \ReflectionException
- * @static
+ * @static
*/
public static function mixin($mixin, $replace = true)
{
@@ -16590,8 +16662,8 @@ namespace Illuminate\Support\Facades {
* Checks if macro is registered.
*
* @param string $name
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function hasMacro($name)
{
@@ -16602,8 +16674,8 @@ namespace Illuminate\Support\Facades {
/**
* Flush the existing macros.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function flushMacros()
{
@@ -16613,16 +16685,14 @@ namespace Illuminate\Support\Facades {
}
/**
- *
- *
* @see \Illuminate\Session\SessionManager
*/
class Session {
/**
* Determine if requests for the same session should wait for each to finish before executing.
*
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function shouldBlock()
{
@@ -16633,8 +16703,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the name of the cache store / driver that should be used to acquire session locks.
*
- * @return string|null
- * @static
+ * @return string|null
+ * @static
*/
public static function blockDriver()
{
@@ -16645,8 +16715,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the maximum number of seconds the session lock should be held for.
*
- * @return int
- * @static
+ * @return int
+ * @static
*/
public static function defaultRouteBlockLockSeconds()
{
@@ -16657,8 +16727,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the maximum number of seconds to wait while attempting to acquire a route block session lock.
*
- * @return int
- * @static
+ * @return int
+ * @static
*/
public static function defaultRouteBlockWaitSeconds()
{
@@ -16669,8 +16739,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the session configuration.
*
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function getSessionConfig()
{
@@ -16681,8 +16751,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the default session driver name.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function getDefaultDriver()
{
@@ -16694,8 +16764,8 @@ namespace Illuminate\Support\Facades {
* Set the default session driver name.
*
* @param string $name
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function setDefaultDriver($name)
{
@@ -16707,9 +16777,9 @@ namespace Illuminate\Support\Facades {
* Get a driver instance.
*
* @param string|null $driver
- * @return mixed
+ * @return mixed
* @throws \InvalidArgumentException
- * @static
+ * @static
*/
public static function driver($driver = null)
{
@@ -16723,8 +16793,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $driver
* @param \Closure $callback
- * @return \Illuminate\Session\SessionManager
- * @static
+ * @return \Illuminate\Session\SessionManager
+ * @static
*/
public static function extend($driver, $callback)
{
@@ -16736,8 +16806,8 @@ namespace Illuminate\Support\Facades {
/**
* Get all of the created "drivers".
*
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function getDrivers()
{
@@ -16749,8 +16819,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the container instance used by the manager.
*
- * @return \Illuminate\Contracts\Container\Container
- * @static
+ * @return \Illuminate\Contracts\Container\Container
+ * @static
*/
public static function getContainer()
{
@@ -16763,8 +16833,8 @@ namespace Illuminate\Support\Facades {
* Set the container instance used by the manager.
*
* @param \Illuminate\Contracts\Container\Container $container
- * @return \Illuminate\Session\SessionManager
- * @static
+ * @return \Illuminate\Session\SessionManager
+ * @static
*/
public static function setContainer($container)
{
@@ -16776,8 +16846,8 @@ namespace Illuminate\Support\Facades {
/**
* Forget all of the resolved driver instances.
*
- * @return \Illuminate\Session\SessionManager
- * @static
+ * @return \Illuminate\Session\SessionManager
+ * @static
*/
public static function forgetDrivers()
{
@@ -16789,8 +16859,8 @@ namespace Illuminate\Support\Facades {
/**
* Start the session, reading the data from a handler.
*
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function start()
{
@@ -16801,8 +16871,8 @@ namespace Illuminate\Support\Facades {
/**
* Save the session data to storage.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function save()
{
@@ -16813,8 +16883,8 @@ namespace Illuminate\Support\Facades {
/**
* Age the flash data for the session.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function ageFlashData()
{
@@ -16825,8 +16895,8 @@ namespace Illuminate\Support\Facades {
/**
* Get all of the session data.
*
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function all()
{
@@ -16838,8 +16908,8 @@ namespace Illuminate\Support\Facades {
* Get a subset of the session data.
*
* @param array $keys
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function only($keys)
{
@@ -16851,8 +16921,8 @@ namespace Illuminate\Support\Facades {
* Get all the session data except for a specified array of items.
*
* @param array $keys
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function except($keys)
{
@@ -16864,8 +16934,8 @@ namespace Illuminate\Support\Facades {
* Checks if a key exists.
*
* @param string|array $key
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function exists($key)
{
@@ -16877,8 +16947,8 @@ namespace Illuminate\Support\Facades {
* Determine if the given key is missing from the session data.
*
* @param string|array $key
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function missing($key)
{
@@ -16890,8 +16960,8 @@ namespace Illuminate\Support\Facades {
* Determine if a key is present and not null.
*
* @param string|array $key
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function has($key)
{
@@ -16903,8 +16973,8 @@ namespace Illuminate\Support\Facades {
* Determine if any of the given keys are present and not null.
*
* @param string|array $key
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function hasAny($key)
{
@@ -16917,8 +16987,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $key
* @param mixed $default
- * @return mixed
- * @static
+ * @return mixed
+ * @static
*/
public static function get($key, $default = null)
{
@@ -16931,8 +17001,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $key
* @param mixed $default
- * @return mixed
- * @static
+ * @return mixed
+ * @static
*/
public static function pull($key, $default = null)
{
@@ -16944,8 +17014,8 @@ namespace Illuminate\Support\Facades {
* Determine if the session contains old input.
*
* @param string|null $key
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function hasOldInput($key = null)
{
@@ -16958,8 +17028,8 @@ namespace Illuminate\Support\Facades {
*
* @param string|null $key
* @param mixed $default
- * @return mixed
- * @static
+ * @return mixed
+ * @static
*/
public static function getOldInput($key = null, $default = null)
{
@@ -16971,8 +17041,8 @@ namespace Illuminate\Support\Facades {
* Replace the given session attributes entirely.
*
* @param array $attributes
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function replace($attributes)
{
@@ -16985,8 +17055,8 @@ namespace Illuminate\Support\Facades {
*
* @param string|array $key
* @param mixed $value
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function put($key, $value = null)
{
@@ -16999,8 +17069,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $key
* @param \Closure $callback
- * @return mixed
- * @static
+ * @return mixed
+ * @static
*/
public static function remember($key, $callback)
{
@@ -17013,8 +17083,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $key
* @param mixed $value
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function push($key, $value)
{
@@ -17027,8 +17097,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $key
* @param int $amount
- * @return mixed
- * @static
+ * @return mixed
+ * @static
*/
public static function increment($key, $amount = 1)
{
@@ -17041,8 +17111,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $key
* @param int $amount
- * @return int
- * @static
+ * @return int
+ * @static
*/
public static function decrement($key, $amount = 1)
{
@@ -17055,8 +17125,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $key
* @param mixed $value
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function flash($key, $value = true)
{
@@ -17069,8 +17139,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $key
* @param mixed $value
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function now($key, $value)
{
@@ -17081,8 +17151,8 @@ namespace Illuminate\Support\Facades {
/**
* Reflash all of the session flash data.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function reflash()
{
@@ -17094,8 +17164,8 @@ namespace Illuminate\Support\Facades {
* Reflash a subset of the current flash data.
*
* @param array|mixed $keys
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function keep($keys = null)
{
@@ -17107,8 +17177,8 @@ namespace Illuminate\Support\Facades {
* Flash an input array to the session.
*
* @param array $value
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function flashInput($value)
{
@@ -17120,8 +17190,8 @@ namespace Illuminate\Support\Facades {
* Remove an item from the session, returning its value.
*
* @param string $key
- * @return mixed
- * @static
+ * @return mixed
+ * @static
*/
public static function remove($key)
{
@@ -17133,8 +17203,8 @@ namespace Illuminate\Support\Facades {
* Remove one or many items from the session.
*
* @param string|array $keys
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function forget($keys)
{
@@ -17145,8 +17215,8 @@ namespace Illuminate\Support\Facades {
/**
* Remove all of the items from the session.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function flush()
{
@@ -17157,8 +17227,8 @@ namespace Illuminate\Support\Facades {
/**
* Flush the session data and regenerate the ID.
*
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function invalidate()
{
@@ -17170,8 +17240,8 @@ namespace Illuminate\Support\Facades {
* Generate a new session identifier.
*
* @param bool $destroy
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function regenerate($destroy = false)
{
@@ -17183,8 +17253,8 @@ namespace Illuminate\Support\Facades {
* Generate a new session ID for the session.
*
* @param bool $destroy
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function migrate($destroy = false)
{
@@ -17195,8 +17265,8 @@ namespace Illuminate\Support\Facades {
/**
* Determine if the session has been started.
*
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function isStarted()
{
@@ -17207,8 +17277,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the name of the session.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function getName()
{
@@ -17220,8 +17290,8 @@ namespace Illuminate\Support\Facades {
* Set the name of the session.
*
* @param string $name
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function setName($name)
{
@@ -17232,8 +17302,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the current session ID.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function id()
{
@@ -17244,8 +17314,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the current session ID.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function getId()
{
@@ -17257,8 +17327,8 @@ namespace Illuminate\Support\Facades {
* Set the session ID.
*
* @param string|null $id
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function setId($id)
{
@@ -17270,8 +17340,8 @@ namespace Illuminate\Support\Facades {
* Determine if this is a valid session ID.
*
* @param string|null $id
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function isValidId($id)
{
@@ -17283,8 +17353,8 @@ namespace Illuminate\Support\Facades {
* Set the existence of the session on the handler if applicable.
*
* @param bool $value
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function setExists($value)
{
@@ -17295,8 +17365,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the CSRF token value.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function token()
{
@@ -17307,8 +17377,8 @@ namespace Illuminate\Support\Facades {
/**
* Regenerate the CSRF token value.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function regenerateToken()
{
@@ -17319,8 +17389,8 @@ namespace Illuminate\Support\Facades {
/**
* Determine if the previous URI is available.
*
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function hasPreviousUri()
{
@@ -17331,9 +17401,9 @@ namespace Illuminate\Support\Facades {
/**
* Get the previous URL from the session as a URI instance.
*
- * @return \Illuminate\Support\Uri
+ * @return \Illuminate\Support\Uri
* @throws \RuntimeException
- * @static
+ * @static
*/
public static function previousUri()
{
@@ -17344,8 +17414,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the previous URL from the session.
*
- * @return string|null
- * @static
+ * @return string|null
+ * @static
*/
public static function previousUrl()
{
@@ -17357,8 +17427,8 @@ namespace Illuminate\Support\Facades {
* Set the "previous" URL in the session.
*
* @param string $url
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function setPreviousUrl($url)
{
@@ -17369,8 +17439,8 @@ namespace Illuminate\Support\Facades {
/**
* Specify that the user has confirmed their password.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function passwordConfirmed()
{
@@ -17381,8 +17451,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the underlying session handler implementation.
*
- * @return \SessionHandlerInterface
- * @static
+ * @return \SessionHandlerInterface
+ * @static
*/
public static function getHandler()
{
@@ -17394,8 +17464,8 @@ namespace Illuminate\Support\Facades {
* Set the underlying session handler implementation.
*
* @param \SessionHandlerInterface $handler
- * @return \SessionHandlerInterface
- * @static
+ * @return \SessionHandlerInterface
+ * @static
*/
public static function setHandler($handler)
{
@@ -17406,8 +17476,8 @@ namespace Illuminate\Support\Facades {
/**
* Determine if the session handler needs a request.
*
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function handlerNeedsRequest()
{
@@ -17419,8 +17489,8 @@ namespace Illuminate\Support\Facades {
* Set the request on the handler instance.
*
* @param \Illuminate\Http\Request $request
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function setRequestOnHandler($request)
{
@@ -17434,8 +17504,8 @@ namespace Illuminate\Support\Facades {
* @param string $name
* @param object|callable $macro
* @param-closure-this static $macro
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function macro($name, $macro)
{
@@ -17447,9 +17517,9 @@ namespace Illuminate\Support\Facades {
*
* @param object $mixin
* @param bool $replace
- * @return void
+ * @return void
* @throws \ReflectionException
- * @static
+ * @static
*/
public static function mixin($mixin, $replace = true)
{
@@ -17460,8 +17530,8 @@ namespace Illuminate\Support\Facades {
* Checks if macro is registered.
*
* @param string $name
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function hasMacro($name)
{
@@ -17471,8 +17541,8 @@ namespace Illuminate\Support\Facades {
/**
* Flush the existing macros.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function flushMacros()
{
@@ -17481,8 +17551,6 @@ namespace Illuminate\Support\Facades {
}
/**
- *
- *
* @method static bool has(string $location)
* @method static string read(string $location)
* @method static \League\Flysystem\DirectoryListing listContents(string $location, bool $deep = false)
@@ -17497,8 +17565,8 @@ namespace Illuminate\Support\Facades {
* Get a filesystem instance.
*
* @param string|null $name
- * @return \Illuminate\Filesystem\LocalFilesystemAdapter
- * @static
+ * @return \Illuminate\Filesystem\LocalFilesystemAdapter
+ * @static
*/
public static function drive($name = null)
{
@@ -17510,8 +17578,8 @@ namespace Illuminate\Support\Facades {
* Get a filesystem instance.
*
* @param string|null $name
- * @return \Illuminate\Filesystem\LocalFilesystemAdapter
- * @static
+ * @return \Illuminate\Filesystem\LocalFilesystemAdapter
+ * @static
*/
public static function disk($name = null)
{
@@ -17522,8 +17590,8 @@ namespace Illuminate\Support\Facades {
/**
* Get a default cloud filesystem instance.
*
- * @return \Illuminate\Contracts\Filesystem\Cloud
- * @static
+ * @return \Illuminate\Contracts\Filesystem\Cloud
+ * @static
*/
public static function cloud()
{
@@ -17535,8 +17603,8 @@ namespace Illuminate\Support\Facades {
* Build an on-demand disk.
*
* @param string|array $config
- * @return \Illuminate\Filesystem\LocalFilesystemAdapter
- * @static
+ * @return \Illuminate\Filesystem\LocalFilesystemAdapter
+ * @static
*/
public static function build($config)
{
@@ -17549,8 +17617,8 @@ namespace Illuminate\Support\Facades {
*
* @param array $config
* @param string $name
- * @return \Illuminate\Filesystem\LocalFilesystemAdapter
- * @static
+ * @return \Illuminate\Filesystem\LocalFilesystemAdapter
+ * @static
*/
public static function createLocalDriver($config, $name = 'local')
{
@@ -17562,8 +17630,8 @@ namespace Illuminate\Support\Facades {
* Create an instance of the ftp driver.
*
* @param array $config
- * @return \Illuminate\Filesystem\LocalFilesystemAdapter
- * @static
+ * @return \Illuminate\Filesystem\LocalFilesystemAdapter
+ * @static
*/
public static function createFtpDriver($config)
{
@@ -17575,8 +17643,8 @@ namespace Illuminate\Support\Facades {
* Create an instance of the sftp driver.
*
* @param array $config
- * @return \Illuminate\Filesystem\LocalFilesystemAdapter
- * @static
+ * @return \Illuminate\Filesystem\LocalFilesystemAdapter
+ * @static
*/
public static function createSftpDriver($config)
{
@@ -17588,8 +17656,8 @@ namespace Illuminate\Support\Facades {
* Create an instance of the Amazon S3 driver.
*
* @param array $config
- * @return \Illuminate\Contracts\Filesystem\Cloud
- * @static
+ * @return \Illuminate\Contracts\Filesystem\Cloud
+ * @static
*/
public static function createS3Driver($config)
{
@@ -17601,8 +17669,8 @@ namespace Illuminate\Support\Facades {
* Create a scoped driver.
*
* @param array $config
- * @return \Illuminate\Filesystem\LocalFilesystemAdapter
- * @static
+ * @return \Illuminate\Filesystem\LocalFilesystemAdapter
+ * @static
*/
public static function createScopedDriver($config)
{
@@ -17615,8 +17683,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $name
* @param mixed $disk
- * @return \Illuminate\Filesystem\FilesystemManager
- * @static
+ * @return \Illuminate\Filesystem\FilesystemManager
+ * @static
*/
public static function set($name, $disk)
{
@@ -17627,8 +17695,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the default driver name.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function getDefaultDriver()
{
@@ -17639,8 +17707,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the default cloud driver name.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function getDefaultCloudDriver()
{
@@ -17652,8 +17720,8 @@ namespace Illuminate\Support\Facades {
* Unset the given disk instances.
*
* @param array|string $disk
- * @return \Illuminate\Filesystem\FilesystemManager
- * @static
+ * @return \Illuminate\Filesystem\FilesystemManager
+ * @static
*/
public static function forgetDisk($disk)
{
@@ -17665,8 +17733,8 @@ namespace Illuminate\Support\Facades {
* Disconnect the given disk and remove from local cache.
*
* @param string|null $name
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function purge($name = null)
{
@@ -17679,8 +17747,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $driver
* @param \Closure $callback
- * @return \Illuminate\Filesystem\FilesystemManager
- * @static
+ * @return \Illuminate\Filesystem\FilesystemManager
+ * @static
*/
public static function extend($driver, $callback)
{
@@ -17692,8 +17760,8 @@ namespace Illuminate\Support\Facades {
* Set the application instance used by the manager.
*
* @param \Illuminate\Contracts\Foundation\Application $app
- * @return \Illuminate\Filesystem\FilesystemManager
- * @static
+ * @return \Illuminate\Filesystem\FilesystemManager
+ * @static
*/
public static function setApplication($app)
{
@@ -17704,8 +17772,8 @@ namespace Illuminate\Support\Facades {
/**
* Determine if temporary URLs can be generated.
*
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function providesTemporaryUrls()
{
@@ -17719,8 +17787,8 @@ namespace Illuminate\Support\Facades {
* @param string $path
* @param \DateTimeInterface $expiration
* @param array $options
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function temporaryUrl($path, $expiration, $options = [])
{
@@ -17732,8 +17800,8 @@ namespace Illuminate\Support\Facades {
* Specify the name of the disk the adapter is managing.
*
* @param string $disk
- * @return \Illuminate\Filesystem\LocalFilesystemAdapter
- * @static
+ * @return \Illuminate\Filesystem\LocalFilesystemAdapter
+ * @static
*/
public static function diskName($disk)
{
@@ -17746,8 +17814,8 @@ namespace Illuminate\Support\Facades {
*
* @param bool $serve
* @param \Closure|null $urlGeneratorResolver
- * @return \Illuminate\Filesystem\LocalFilesystemAdapter
- * @static
+ * @return \Illuminate\Filesystem\LocalFilesystemAdapter
+ * @static
*/
public static function shouldServeSignedUrls($serve = true, $urlGeneratorResolver = null)
{
@@ -17760,8 +17828,8 @@ namespace Illuminate\Support\Facades {
*
* @param string|array $path
* @param string|null $content
- * @return \Illuminate\Filesystem\LocalFilesystemAdapter
- * @static
+ * @return \Illuminate\Filesystem\LocalFilesystemAdapter
+ * @static
*/
public static function assertExists($path, $content = null)
{
@@ -17776,8 +17844,8 @@ namespace Illuminate\Support\Facades {
* @param string $path
* @param int $count
* @param bool $recursive
- * @return \Illuminate\Filesystem\LocalFilesystemAdapter
- * @static
+ * @return \Illuminate\Filesystem\LocalFilesystemAdapter
+ * @static
*/
public static function assertCount($path, $count, $recursive = false)
{
@@ -17790,8 +17858,8 @@ namespace Illuminate\Support\Facades {
* Assert that the given file or directory does not exist.
*
* @param string|array $path
- * @return \Illuminate\Filesystem\LocalFilesystemAdapter
- * @static
+ * @return \Illuminate\Filesystem\LocalFilesystemAdapter
+ * @static
*/
public static function assertMissing($path)
{
@@ -17804,8 +17872,8 @@ namespace Illuminate\Support\Facades {
* Assert that the given directory is empty.
*
* @param string $path
- * @return \Illuminate\Filesystem\LocalFilesystemAdapter
- * @static
+ * @return \Illuminate\Filesystem\LocalFilesystemAdapter
+ * @static
*/
public static function assertDirectoryEmpty($path)
{
@@ -17818,8 +17886,8 @@ namespace Illuminate\Support\Facades {
* Determine if a file or directory exists.
*
* @param string $path
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function exists($path)
{
@@ -17832,8 +17900,8 @@ namespace Illuminate\Support\Facades {
* Determine if a file or directory is missing.
*
* @param string $path
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function missing($path)
{
@@ -17846,8 +17914,8 @@ namespace Illuminate\Support\Facades {
* Determine if a file exists.
*
* @param string $path
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function fileExists($path)
{
@@ -17860,8 +17928,8 @@ namespace Illuminate\Support\Facades {
* Determine if a file is missing.
*
* @param string $path
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function fileMissing($path)
{
@@ -17874,8 +17942,8 @@ namespace Illuminate\Support\Facades {
* Determine if a directory exists.
*
* @param string $path
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function directoryExists($path)
{
@@ -17888,8 +17956,8 @@ namespace Illuminate\Support\Facades {
* Determine if a directory is missing.
*
* @param string $path
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function directoryMissing($path)
{
@@ -17902,8 +17970,8 @@ namespace Illuminate\Support\Facades {
* Get the full path to the file that exists at the given relative path.
*
* @param string $path
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function path($path)
{
@@ -17916,8 +17984,8 @@ namespace Illuminate\Support\Facades {
* Get the contents of a file.
*
* @param string $path
- * @return string|null
- * @static
+ * @return string|null
+ * @static
*/
public static function get($path)
{
@@ -17931,8 +17999,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $path
* @param int $flags
- * @return array|null
- * @static
+ * @return array|null
+ * @static
*/
public static function json($path, $flags = 0)
{
@@ -17948,8 +18016,8 @@ namespace Illuminate\Support\Facades {
* @param string|null $name
* @param array $headers
* @param string|null $disposition
- * @return \Symfony\Component\HttpFoundation\StreamedResponse
- * @static
+ * @return \Symfony\Component\HttpFoundation\StreamedResponse
+ * @static
*/
public static function response($path, $name = null, $headers = [], $disposition = 'inline')
{
@@ -17965,8 +18033,8 @@ namespace Illuminate\Support\Facades {
* @param string $path
* @param string|null $name
* @param array $headers
- * @return \Symfony\Component\HttpFoundation\StreamedResponse
- * @static
+ * @return \Symfony\Component\HttpFoundation\StreamedResponse
+ * @static
*/
public static function serve($request, $path, $name = null, $headers = [])
{
@@ -17981,8 +18049,8 @@ namespace Illuminate\Support\Facades {
* @param string $path
* @param string|null $name
* @param array $headers
- * @return \Symfony\Component\HttpFoundation\StreamedResponse
- * @static
+ * @return \Symfony\Component\HttpFoundation\StreamedResponse
+ * @static
*/
public static function download($path, $name = null, $headers = [])
{
@@ -17997,8 +18065,8 @@ namespace Illuminate\Support\Facades {
* @param string $path
* @param \Psr\Http\Message\StreamInterface|\Illuminate\Http\File|\Illuminate\Http\UploadedFile|string|resource $contents
* @param mixed $options
- * @return string|bool
- * @static
+ * @return string|bool
+ * @static
*/
public static function put($path, $contents, $options = [])
{
@@ -18013,8 +18081,8 @@ namespace Illuminate\Support\Facades {
* @param \Illuminate\Http\File|\Illuminate\Http\UploadedFile|string $path
* @param \Illuminate\Http\File|\Illuminate\Http\UploadedFile|string|array|null $file
* @param mixed $options
- * @return string|false
- * @static
+ * @return string|false
+ * @static
*/
public static function putFile($path, $file = null, $options = [])
{
@@ -18030,8 +18098,8 @@ namespace Illuminate\Support\Facades {
* @param \Illuminate\Http\File|\Illuminate\Http\UploadedFile|string|array|null $file
* @param string|array|null $name
* @param mixed $options
- * @return string|false
- * @static
+ * @return string|false
+ * @static
*/
public static function putFileAs($path, $file, $name = null, $options = [])
{
@@ -18044,8 +18112,8 @@ namespace Illuminate\Support\Facades {
* Get the visibility for the given path.
*
* @param string $path
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function getVisibility($path)
{
@@ -18059,8 +18127,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $path
* @param string $visibility
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function setVisibility($path, $visibility)
{
@@ -18075,8 +18143,8 @@ namespace Illuminate\Support\Facades {
* @param string $path
* @param string $data
* @param string $separator
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function prepend($path, $data, $separator = '
')
@@ -18092,8 +18160,8 @@ namespace Illuminate\Support\Facades {
* @param string $path
* @param string $data
* @param string $separator
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function append($path, $data, $separator = '
')
@@ -18107,8 +18175,8 @@ namespace Illuminate\Support\Facades {
* Delete the file at a given path.
*
* @param string|array $paths
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function delete($paths)
{
@@ -18122,8 +18190,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $from
* @param string $to
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function copy($from, $to)
{
@@ -18137,8 +18205,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $from
* @param string $to
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function move($from, $to)
{
@@ -18151,8 +18219,8 @@ namespace Illuminate\Support\Facades {
* Get the file size of a given file.
*
* @param string $path
- * @return int
- * @static
+ * @return int
+ * @static
*/
public static function size($path)
{
@@ -18164,9 +18232,9 @@ namespace Illuminate\Support\Facades {
/**
* Get the checksum for a file.
*
- * @return string|false
+ * @return string|false
* @throws UnableToProvideChecksum
- * @static
+ * @static
*/
public static function checksum($path, $options = [])
{
@@ -18179,8 +18247,8 @@ namespace Illuminate\Support\Facades {
* Get the mime-type of a given file.
*
* @param string $path
- * @return string|false
- * @static
+ * @return string|false
+ * @static
*/
public static function mimeType($path)
{
@@ -18193,8 +18261,8 @@ namespace Illuminate\Support\Facades {
* Get the file's last modification time.
*
* @param string $path
- * @return int
- * @static
+ * @return int
+ * @static
*/
public static function lastModified($path)
{
@@ -18208,7 +18276,7 @@ namespace Illuminate\Support\Facades {
*
* @param string $path
* @return resource|null The path resource or null on failure.
- * @static
+ * @static
*/
public static function readStream($path)
{
@@ -18223,8 +18291,8 @@ namespace Illuminate\Support\Facades {
* @param string $path
* @param resource $resource
* @param array $options
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function writeStream($path, $resource, $options = [])
{
@@ -18237,9 +18305,9 @@ namespace Illuminate\Support\Facades {
* Get the URL for the file at the given path.
*
* @param string $path
- * @return string
+ * @return string
* @throws \RuntimeException
- * @static
+ * @static
*/
public static function url($path)
{
@@ -18254,9 +18322,9 @@ namespace Illuminate\Support\Facades {
* @param string $path
* @param \DateTimeInterface $expiration
* @param array $options
- * @return array
+ * @return array
* @throws \RuntimeException
- * @static
+ * @static
*/
public static function temporaryUploadUrl($path, $expiration, $options = [])
{
@@ -18270,8 +18338,8 @@ namespace Illuminate\Support\Facades {
*
* @param string|null $directory
* @param bool $recursive
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function files($directory = null, $recursive = false)
{
@@ -18284,8 +18352,8 @@ namespace Illuminate\Support\Facades {
* Get all of the files from the given directory (recursive).
*
* @param string|null $directory
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function allFiles($directory = null)
{
@@ -18299,8 +18367,8 @@ namespace Illuminate\Support\Facades {
*
* @param string|null $directory
* @param bool $recursive
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function directories($directory = null, $recursive = false)
{
@@ -18313,8 +18381,8 @@ namespace Illuminate\Support\Facades {
* Get all the directories within a given directory (recursive).
*
* @param string|null $directory
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function allDirectories($directory = null)
{
@@ -18327,8 +18395,8 @@ namespace Illuminate\Support\Facades {
* Create a directory.
*
* @param string $path
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function makeDirectory($path)
{
@@ -18341,8 +18409,8 @@ namespace Illuminate\Support\Facades {
* Recursively delete a directory.
*
* @param string $directory
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function deleteDirectory($directory)
{
@@ -18354,8 +18422,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the Flysystem driver.
*
- * @return \League\Flysystem\FilesystemOperator
- * @static
+ * @return \League\Flysystem\FilesystemOperator
+ * @static
*/
public static function getDriver()
{
@@ -18367,8 +18435,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the Flysystem adapter.
*
- * @return \League\Flysystem\FilesystemAdapter
- * @static
+ * @return \League\Flysystem\FilesystemAdapter
+ * @static
*/
public static function getAdapter()
{
@@ -18380,8 +18448,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the configuration values.
*
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function getConfig()
{
@@ -18394,8 +18462,8 @@ namespace Illuminate\Support\Facades {
* Define a custom callback that generates file download responses.
*
* @param \Closure $callback
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function serveUsing($callback)
{
@@ -18408,8 +18476,8 @@ namespace Illuminate\Support\Facades {
* Define a custom temporary URL builder callback.
*
* @param \Closure $callback
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function buildTemporaryUrlsUsing($callback)
{
@@ -18426,8 +18494,8 @@ namespace Illuminate\Support\Facades {
* @param (\Closure($this): TWhenParameter)|TWhenParameter|null $value
* @param (callable($this, TWhenParameter): TWhenReturnType)|null $callback
* @param (callable($this, TWhenParameter): TWhenReturnType)|null $default
- * @return $this|TWhenReturnType
- * @static
+ * @return $this|TWhenReturnType
+ * @static
*/
public static function when($value = null, $callback = null, $default = null)
{
@@ -18443,8 +18511,8 @@ namespace Illuminate\Support\Facades {
* @param (\Closure($this): TUnlessParameter)|TUnlessParameter|null $value
* @param (callable($this, TUnlessParameter): TUnlessReturnType)|null $callback
* @param (callable($this, TUnlessParameter): TUnlessReturnType)|null $default
- * @return $this|TUnlessReturnType
- * @static
+ * @return $this|TUnlessReturnType
+ * @static
*/
public static function unless($value = null, $callback = null, $default = null)
{
@@ -18458,8 +18526,8 @@ namespace Illuminate\Support\Facades {
* @param string $name
* @param object|callable $macro
* @param-closure-this static $macro
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function macro($name, $macro)
{
@@ -18472,9 +18540,9 @@ namespace Illuminate\Support\Facades {
*
* @param object $mixin
* @param bool $replace
- * @return void
+ * @return void
* @throws \ReflectionException
- * @static
+ * @static
*/
public static function mixin($mixin, $replace = true)
{
@@ -18486,8 +18554,8 @@ namespace Illuminate\Support\Facades {
* Checks if macro is registered.
*
* @param string $name
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function hasMacro($name)
{
@@ -18498,8 +18566,8 @@ namespace Illuminate\Support\Facades {
/**
* Flush the existing macros.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function flushMacros()
{
@@ -18512,9 +18580,9 @@ namespace Illuminate\Support\Facades {
*
* @param string $method
* @param array $parameters
- * @return mixed
+ * @return mixed
* @throws \BadMethodCallException
- * @static
+ * @static
*/
public static function macroCall($method, $parameters)
{
@@ -18525,16 +18593,14 @@ namespace Illuminate\Support\Facades {
}
/**
- *
- *
* @see \Illuminate\Routing\UrlGenerator
*/
class URL {
/**
* Get the full URL for the current request.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function full()
{
@@ -18545,8 +18611,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the current URL for the request.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function current()
{
@@ -18558,8 +18624,8 @@ namespace Illuminate\Support\Facades {
* Get the URL for the previous request.
*
* @param mixed $fallback
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function previous($fallback = false)
{
@@ -18571,8 +18637,8 @@ namespace Illuminate\Support\Facades {
* Get the previous path info for the request.
*
* @param mixed $fallback
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function previousPath($fallback = false)
{
@@ -18586,8 +18652,8 @@ namespace Illuminate\Support\Facades {
* @param string $path
* @param mixed $extra
* @param bool|null $secure
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function to($path, $extra = [], $secure = null)
{
@@ -18602,8 +18668,8 @@ namespace Illuminate\Support\Facades {
* @param array $query
* @param mixed $extra
* @param bool|null $secure
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function query($path, $query = [], $extra = [], $secure = null)
{
@@ -18616,8 +18682,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $path
* @param array $parameters
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function secure($path, $parameters = [])
{
@@ -18630,8 +18696,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $path
* @param bool|null $secure
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function asset($path, $secure = null)
{
@@ -18643,8 +18709,8 @@ namespace Illuminate\Support\Facades {
* Generate the URL to a secure asset.
*
* @param string $path
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function secureAsset($path)
{
@@ -18658,8 +18724,8 @@ namespace Illuminate\Support\Facades {
* @param string $root
* @param string $path
* @param bool|null $secure
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function assetFrom($root, $path, $secure = null)
{
@@ -18671,8 +18737,8 @@ namespace Illuminate\Support\Facades {
* Get the default scheme for a raw URL.
*
* @param bool|null $secure
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function formatScheme($secure = null)
{
@@ -18687,9 +18753,9 @@ namespace Illuminate\Support\Facades {
* @param mixed $parameters
* @param \DateTimeInterface|\DateInterval|int|null $expiration
* @param bool $absolute
- * @return string
+ * @return string
* @throws \InvalidArgumentException
- * @static
+ * @static
*/
public static function signedRoute($name, $parameters = [], $expiration = null, $absolute = true)
{
@@ -18704,8 +18770,8 @@ namespace Illuminate\Support\Facades {
* @param \DateTimeInterface|\DateInterval|int $expiration
* @param array $parameters
* @param bool $absolute
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function temporarySignedRoute($name, $expiration, $parameters = [], $absolute = true)
{
@@ -18719,8 +18785,8 @@ namespace Illuminate\Support\Facades {
* @param \Illuminate\Http\Request $request
* @param bool $absolute
* @param array $ignoreQuery
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function hasValidSignature($request, $absolute = true, $ignoreQuery = [])
{
@@ -18733,8 +18799,8 @@ namespace Illuminate\Support\Facades {
*
* @param \Illuminate\Http\Request $request
* @param array $ignoreQuery
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function hasValidRelativeSignature($request, $ignoreQuery = [])
{
@@ -18748,8 +18814,8 @@ namespace Illuminate\Support\Facades {
* @param \Illuminate\Http\Request $request
* @param bool $absolute
* @param array $ignoreQuery
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function hasCorrectSignature($request, $absolute = true, $ignoreQuery = [])
{
@@ -18761,8 +18827,8 @@ namespace Illuminate\Support\Facades {
* Determine if the expires timestamp from the given request is not from the past.
*
* @param \Illuminate\Http\Request $request
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function signatureHasNotExpired($request)
{
@@ -18776,9 +18842,9 @@ namespace Illuminate\Support\Facades {
* @param \BackedEnum|string $name
* @param mixed $parameters
* @param bool $absolute
- * @return string
+ * @return string
* @throws \Symfony\Component\Routing\Exception\RouteNotFoundException|\InvalidArgumentException
- * @static
+ * @static
*/
public static function route($name, $parameters = [], $absolute = true)
{
@@ -18792,9 +18858,9 @@ namespace Illuminate\Support\Facades {
* @param \Illuminate\Routing\Route $route
* @param mixed $parameters
* @param bool $absolute
- * @return string
+ * @return string
* @throws \Illuminate\Routing\Exceptions\UrlGenerationException
- * @static
+ * @static
*/
public static function toRoute($route, $parameters, $absolute)
{
@@ -18808,9 +18874,9 @@ namespace Illuminate\Support\Facades {
* @param string|array $action
* @param mixed $parameters
* @param bool $absolute
- * @return string
+ * @return string
* @throws \InvalidArgumentException
- * @static
+ * @static
*/
public static function action($action, $parameters = [], $absolute = true)
{
@@ -18822,8 +18888,8 @@ namespace Illuminate\Support\Facades {
* Format the array of URL parameters.
*
* @param mixed $parameters
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function formatParameters($parameters)
{
@@ -18836,8 +18902,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $scheme
* @param string|null $root
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function formatRoot($scheme, $root = null)
{
@@ -18851,8 +18917,8 @@ namespace Illuminate\Support\Facades {
* @param string $root
* @param string $path
* @param \Illuminate\Routing\Route|null $route
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function format($root, $path, $route = null)
{
@@ -18864,8 +18930,8 @@ namespace Illuminate\Support\Facades {
* Determine if the given path is a valid URL.
*
* @param string $path
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function isValidUrl($path)
{
@@ -18877,8 +18943,8 @@ namespace Illuminate\Support\Facades {
* Set the default named parameters used by the URL generator.
*
* @param array $defaults
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function defaults($defaults)
{
@@ -18889,8 +18955,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the default named parameters used by the URL generator.
*
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function getDefaultParameters()
{
@@ -18902,8 +18968,8 @@ namespace Illuminate\Support\Facades {
* Force the scheme for URLs.
*
* @param string|null $scheme
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function forceScheme($scheme)
{
@@ -18915,8 +18981,8 @@ namespace Illuminate\Support\Facades {
* Force the use of the HTTPS scheme for all generated URLs.
*
* @param bool $force
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function forceHttps($force = true)
{
@@ -18928,8 +18994,8 @@ namespace Illuminate\Support\Facades {
* Set the URL origin for all generated URLs.
*
* @param string|null $root
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function useOrigin($root)
{
@@ -18941,9 +19007,9 @@ namespace Illuminate\Support\Facades {
* Set the forced root URL.
*
* @param string|null $root
- * @return void
+ * @return void
* @deprecated Use useOrigin
- * @static
+ * @static
*/
public static function forceRootUrl($root)
{
@@ -18955,8 +19021,8 @@ namespace Illuminate\Support\Facades {
* Set the URL origin for all generated asset URLs.
*
* @param string|null $root
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function useAssetOrigin($root)
{
@@ -18968,8 +19034,8 @@ namespace Illuminate\Support\Facades {
* Set a callback to be used to format the host of generated URLs.
*
* @param \Closure $callback
- * @return \Illuminate\Routing\UrlGenerator
- * @static
+ * @return \Illuminate\Routing\UrlGenerator
+ * @static
*/
public static function formatHostUsing($callback)
{
@@ -18981,8 +19047,8 @@ namespace Illuminate\Support\Facades {
* Set a callback to be used to format the path of generated URLs.
*
* @param \Closure $callback
- * @return \Illuminate\Routing\UrlGenerator
- * @static
+ * @return \Illuminate\Routing\UrlGenerator
+ * @static
*/
public static function formatPathUsing($callback)
{
@@ -18993,8 +19059,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the path formatter being used by the URL generator.
*
- * @return \Closure
- * @static
+ * @return \Closure
+ * @static
*/
public static function pathFormatter()
{
@@ -19005,8 +19071,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the request instance.
*
- * @return \Illuminate\Http\Request
- * @static
+ * @return \Illuminate\Http\Request
+ * @static
*/
public static function getRequest()
{
@@ -19018,8 +19084,8 @@ namespace Illuminate\Support\Facades {
* Set the current request instance.
*
* @param \Illuminate\Http\Request $request
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function setRequest($request)
{
@@ -19031,8 +19097,8 @@ namespace Illuminate\Support\Facades {
* Set the route collection.
*
* @param \Illuminate\Routing\RouteCollectionInterface $routes
- * @return \Illuminate\Routing\UrlGenerator
- * @static
+ * @return \Illuminate\Routing\UrlGenerator
+ * @static
*/
public static function setRoutes($routes)
{
@@ -19044,8 +19110,8 @@ namespace Illuminate\Support\Facades {
* Set the session resolver for the generator.
*
* @param callable $sessionResolver
- * @return \Illuminate\Routing\UrlGenerator
- * @static
+ * @return \Illuminate\Routing\UrlGenerator
+ * @static
*/
public static function setSessionResolver($sessionResolver)
{
@@ -19057,8 +19123,8 @@ namespace Illuminate\Support\Facades {
* Set the encryption key resolver.
*
* @param callable $keyResolver
- * @return \Illuminate\Routing\UrlGenerator
- * @static
+ * @return \Illuminate\Routing\UrlGenerator
+ * @static
*/
public static function setKeyResolver($keyResolver)
{
@@ -19070,8 +19136,8 @@ namespace Illuminate\Support\Facades {
* Clone a new instance of the URL generator with a different encryption key resolver.
*
* @param callable $keyResolver
- * @return \Illuminate\Routing\UrlGenerator
- * @static
+ * @return \Illuminate\Routing\UrlGenerator
+ * @static
*/
public static function withKeyResolver($keyResolver)
{
@@ -19083,8 +19149,8 @@ namespace Illuminate\Support\Facades {
* Set the callback that should be used to attempt to resolve missing named routes.
*
* @param callable $missingNamedRouteResolver
- * @return \Illuminate\Routing\UrlGenerator
- * @static
+ * @return \Illuminate\Routing\UrlGenerator
+ * @static
*/
public static function resolveMissingNamedRoutesUsing($missingNamedRouteResolver)
{
@@ -19095,8 +19161,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the root controller namespace.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function getRootControllerNamespace()
{
@@ -19108,8 +19174,8 @@ namespace Illuminate\Support\Facades {
* Set the root controller namespace.
*
* @param string $rootNamespace
- * @return \Illuminate\Routing\UrlGenerator
- * @static
+ * @return \Illuminate\Routing\UrlGenerator
+ * @static
*/
public static function setRootControllerNamespace($rootNamespace)
{
@@ -19123,8 +19189,8 @@ namespace Illuminate\Support\Facades {
* @param string $name
* @param object|callable $macro
* @param-closure-this static $macro
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function macro($name, $macro)
{
@@ -19136,9 +19202,9 @@ namespace Illuminate\Support\Facades {
*
* @param object $mixin
* @param bool $replace
- * @return void
+ * @return void
* @throws \ReflectionException
- * @static
+ * @static
*/
public static function mixin($mixin, $replace = true)
{
@@ -19149,8 +19215,8 @@ namespace Illuminate\Support\Facades {
* Checks if macro is registered.
*
* @param string $name
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function hasMacro($name)
{
@@ -19160,8 +19226,8 @@ namespace Illuminate\Support\Facades {
/**
* Flush the existing macros.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function flushMacros()
{
@@ -19170,8 +19236,6 @@ namespace Illuminate\Support\Facades {
}
/**
- *
- *
* @see \Illuminate\Validation\Factory
*/
class Validator {
@@ -19182,8 +19246,8 @@ namespace Illuminate\Support\Facades {
* @param array $rules
* @param array $messages
* @param array $attributes
- * @return \Illuminate\Validation\Validator
- * @static
+ * @return \Illuminate\Validation\Validator
+ * @static
*/
public static function make($data, $rules, $messages = [], $attributes = [])
{
@@ -19198,9 +19262,9 @@ namespace Illuminate\Support\Facades {
* @param array $rules
* @param array $messages
* @param array $attributes
- * @return array
+ * @return array
* @throws \Illuminate\Validation\ValidationException
- * @static
+ * @static
*/
public static function validate($data, $rules, $messages = [], $attributes = [])
{
@@ -19214,8 +19278,8 @@ namespace Illuminate\Support\Facades {
* @param string $rule
* @param \Closure|string $extension
* @param string|null $message
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function extend($rule, $extension, $message = null)
{
@@ -19229,8 +19293,8 @@ namespace Illuminate\Support\Facades {
* @param string $rule
* @param \Closure|string $extension
* @param string|null $message
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function extendImplicit($rule, $extension, $message = null)
{
@@ -19244,8 +19308,8 @@ namespace Illuminate\Support\Facades {
* @param string $rule
* @param \Closure|string $extension
* @param string|null $message
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function extendDependent($rule, $extension, $message = null)
{
@@ -19258,8 +19322,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $rule
* @param \Closure|string $replacer
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function replacer($rule, $replacer)
{
@@ -19270,8 +19334,8 @@ namespace Illuminate\Support\Facades {
/**
* Indicate that unvalidated array keys should be included in validated data when the parent array is validated.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function includeUnvalidatedArrayKeys()
{
@@ -19282,8 +19346,8 @@ namespace Illuminate\Support\Facades {
/**
* Indicate that unvalidated array keys should be excluded from the validated data, even if the parent array was validated.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function excludeUnvalidatedArrayKeys()
{
@@ -19295,8 +19359,8 @@ namespace Illuminate\Support\Facades {
* Set the Validator instance resolver.
*
* @param \Closure $resolver
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function resolver($resolver)
{
@@ -19307,8 +19371,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the Translator implementation.
*
- * @return \Illuminate\Contracts\Translation\Translator
- * @static
+ * @return \Illuminate\Contracts\Translation\Translator
+ * @static
*/
public static function getTranslator()
{
@@ -19319,8 +19383,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the Presence Verifier implementation.
*
- * @return \Illuminate\Validation\PresenceVerifierInterface
- * @static
+ * @return \Illuminate\Validation\PresenceVerifierInterface
+ * @static
*/
public static function getPresenceVerifier()
{
@@ -19332,8 +19396,8 @@ namespace Illuminate\Support\Facades {
* Set the Presence Verifier implementation.
*
* @param \Illuminate\Validation\PresenceVerifierInterface $presenceVerifier
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function setPresenceVerifier($presenceVerifier)
{
@@ -19344,8 +19408,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the container instance used by the validation factory.
*
- * @return \Illuminate\Contracts\Container\Container|null
- * @static
+ * @return \Illuminate\Contracts\Container\Container|null
+ * @static
*/
public static function getContainer()
{
@@ -19357,8 +19421,8 @@ namespace Illuminate\Support\Facades {
* Set the container instance used by the validation factory.
*
* @param \Illuminate\Contracts\Container\Container $container
- * @return \Illuminate\Validation\Factory
- * @static
+ * @return \Illuminate\Validation\Factory
+ * @static
*/
public static function setContainer($container)
{
@@ -19368,8 +19432,6 @@ namespace Illuminate\Support\Facades {
}
/**
- *
- *
* @see \Illuminate\View\Factory
*/
class View {
@@ -19379,8 +19441,8 @@ namespace Illuminate\Support\Facades {
* @param string $path
* @param \Illuminate\Contracts\Support\Arrayable|array $data
* @param array $mergeData
- * @return \Illuminate\Contracts\View\View
- * @static
+ * @return \Illuminate\Contracts\View\View
+ * @static
*/
public static function file($path, $data = [], $mergeData = [])
{
@@ -19394,8 +19456,8 @@ namespace Illuminate\Support\Facades {
* @param string $view
* @param \Illuminate\Contracts\Support\Arrayable|array $data
* @param array $mergeData
- * @return \Illuminate\Contracts\View\View
- * @static
+ * @return \Illuminate\Contracts\View\View
+ * @static
*/
public static function make($view, $data = [], $mergeData = [])
{
@@ -19409,9 +19471,9 @@ namespace Illuminate\Support\Facades {
* @param array $views
* @param \Illuminate\Contracts\Support\Arrayable|array $data
* @param array $mergeData
- * @return \Illuminate\Contracts\View\View
+ * @return \Illuminate\Contracts\View\View
* @throws \InvalidArgumentException
- * @static
+ * @static
*/
public static function first($views, $data = [], $mergeData = [])
{
@@ -19426,8 +19488,8 @@ namespace Illuminate\Support\Facades {
* @param string $view
* @param \Illuminate\Contracts\Support\Arrayable|array $data
* @param array $mergeData
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function renderWhen($condition, $view, $data = [], $mergeData = [])
{
@@ -19442,8 +19504,8 @@ namespace Illuminate\Support\Facades {
* @param string $view
* @param \Illuminate\Contracts\Support\Arrayable|array $data
* @param array $mergeData
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function renderUnless($condition, $view, $data = [], $mergeData = [])
{
@@ -19458,8 +19520,8 @@ namespace Illuminate\Support\Facades {
* @param array $data
* @param string $iterator
* @param string $empty
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function renderEach($view, $data, $iterator, $empty = 'raw|')
{
@@ -19471,8 +19533,8 @@ namespace Illuminate\Support\Facades {
* Determine if a given view exists.
*
* @param string $view
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function exists($view)
{
@@ -19484,9 +19546,9 @@ namespace Illuminate\Support\Facades {
* Get the appropriate view engine for the given path.
*
* @param string $path
- * @return \Illuminate\Contracts\View\Engine
+ * @return \Illuminate\Contracts\View\Engine
* @throws \InvalidArgumentException
- * @static
+ * @static
*/
public static function getEngineFromPath($path)
{
@@ -19499,8 +19561,8 @@ namespace Illuminate\Support\Facades {
*
* @param array|string $key
* @param mixed|null $value
- * @return mixed
- * @static
+ * @return mixed
+ * @static
*/
public static function share($key, $value = null)
{
@@ -19511,8 +19573,8 @@ namespace Illuminate\Support\Facades {
/**
* Increment the rendering counter.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function incrementRender()
{
@@ -19523,8 +19585,8 @@ namespace Illuminate\Support\Facades {
/**
* Decrement the rendering counter.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function decrementRender()
{
@@ -19535,8 +19597,8 @@ namespace Illuminate\Support\Facades {
/**
* Check if there are no active render operations.
*
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function doneRendering()
{
@@ -19548,8 +19610,8 @@ namespace Illuminate\Support\Facades {
* Determine if the given once token has been rendered.
*
* @param string $id
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function hasRenderedOnce($id)
{
@@ -19561,8 +19623,8 @@ namespace Illuminate\Support\Facades {
* Mark the given once token as having been rendered.
*
* @param string $id
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function markAsRenderedOnce($id)
{
@@ -19574,8 +19636,8 @@ namespace Illuminate\Support\Facades {
* Add a location to the array of view locations.
*
* @param string $location
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function addLocation($location)
{
@@ -19587,8 +19649,8 @@ namespace Illuminate\Support\Facades {
* Prepend a location to the array of view locations.
*
* @param string $location
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function prependLocation($location)
{
@@ -19601,8 +19663,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $namespace
* @param string|array $hints
- * @return \Illuminate\View\Factory
- * @static
+ * @return \Illuminate\View\Factory
+ * @static
*/
public static function addNamespace($namespace, $hints)
{
@@ -19615,8 +19677,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $namespace
* @param string|array $hints
- * @return \Illuminate\View\Factory
- * @static
+ * @return \Illuminate\View\Factory
+ * @static
*/
public static function prependNamespace($namespace, $hints)
{
@@ -19629,8 +19691,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $namespace
* @param string|array $hints
- * @return \Illuminate\View\Factory
- * @static
+ * @return \Illuminate\View\Factory
+ * @static
*/
public static function replaceNamespace($namespace, $hints)
{
@@ -19644,8 +19706,8 @@ namespace Illuminate\Support\Facades {
* @param string $extension
* @param string $engine
* @param \Closure|null $resolver
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function addExtension($extension, $engine, $resolver = null)
{
@@ -19656,8 +19718,8 @@ namespace Illuminate\Support\Facades {
/**
* Flush all of the factory state like sections and stacks.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function flushState()
{
@@ -19668,8 +19730,8 @@ namespace Illuminate\Support\Facades {
/**
* Flush all of the section contents if done rendering.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function flushStateIfDoneRendering()
{
@@ -19680,8 +19742,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the extension to engine bindings.
*
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function getExtensions()
{
@@ -19692,8 +19754,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the engine resolver instance.
*
- * @return \Illuminate\View\Engines\EngineResolver
- * @static
+ * @return \Illuminate\View\Engines\EngineResolver
+ * @static
*/
public static function getEngineResolver()
{
@@ -19704,8 +19766,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the view finder instance.
*
- * @return \Illuminate\View\ViewFinderInterface
- * @static
+ * @return \Illuminate\View\ViewFinderInterface
+ * @static
*/
public static function getFinder()
{
@@ -19717,8 +19779,8 @@ namespace Illuminate\Support\Facades {
* Set the view finder instance.
*
* @param \Illuminate\View\ViewFinderInterface $finder
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function setFinder($finder)
{
@@ -19729,8 +19791,8 @@ namespace Illuminate\Support\Facades {
/**
* Flush the cache of views located by the finder.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function flushFinderCache()
{
@@ -19741,8 +19803,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the event dispatcher instance.
*
- * @return \Illuminate\Contracts\Events\Dispatcher
- * @static
+ * @return \Illuminate\Contracts\Events\Dispatcher
+ * @static
*/
public static function getDispatcher()
{
@@ -19754,8 +19816,8 @@ namespace Illuminate\Support\Facades {
* Set the event dispatcher instance.
*
* @param \Illuminate\Contracts\Events\Dispatcher $events
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function setDispatcher($events)
{
@@ -19766,8 +19828,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the IoC container instance.
*
- * @return \Illuminate\Contracts\Container\Container
- * @static
+ * @return \Illuminate\Contracts\Container\Container
+ * @static
*/
public static function getContainer()
{
@@ -19779,8 +19841,8 @@ namespace Illuminate\Support\Facades {
* Set the IoC container instance.
*
* @param \Illuminate\Contracts\Container\Container $container
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function setContainer($container)
{
@@ -19793,8 +19855,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $key
* @param mixed $default
- * @return mixed
- * @static
+ * @return mixed
+ * @static
*/
public static function shared($key, $default = null)
{
@@ -19805,8 +19867,8 @@ namespace Illuminate\Support\Facades {
/**
* Get all of the shared data for the environment.
*
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function getShared()
{
@@ -19820,8 +19882,8 @@ namespace Illuminate\Support\Facades {
* @param string $name
* @param object|callable $macro
* @param-closure-this static $macro
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function macro($name, $macro)
{
@@ -19833,9 +19895,9 @@ namespace Illuminate\Support\Facades {
*
* @param object $mixin
* @param bool $replace
- * @return void
+ * @return void
* @throws \ReflectionException
- * @static
+ * @static
*/
public static function mixin($mixin, $replace = true)
{
@@ -19846,8 +19908,8 @@ namespace Illuminate\Support\Facades {
* Checks if macro is registered.
*
* @param string $name
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function hasMacro($name)
{
@@ -19857,8 +19919,8 @@ namespace Illuminate\Support\Facades {
/**
* Flush the existing macros.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function flushMacros()
{
@@ -19870,8 +19932,8 @@ namespace Illuminate\Support\Facades {
*
* @param \Illuminate\Contracts\View\View|\Illuminate\Contracts\Support\Htmlable|\Closure|string $view
* @param array $data
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function startComponent($view, $data = [])
{
@@ -19884,8 +19946,8 @@ namespace Illuminate\Support\Facades {
*
* @param array $names
* @param array $data
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function startComponentFirst($names, $data = [])
{
@@ -19896,8 +19958,8 @@ namespace Illuminate\Support\Facades {
/**
* Render the current component.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function renderComponent()
{
@@ -19910,8 +19972,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $key
* @param mixed $default
- * @return mixed|null
- * @static
+ * @return mixed|null
+ * @static
*/
public static function getConsumableComponentData($key, $default = null)
{
@@ -19925,8 +19987,8 @@ namespace Illuminate\Support\Facades {
* @param string $name
* @param string|null $content
* @param array $attributes
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function slot($name, $content = null, $attributes = [])
{
@@ -19937,8 +19999,8 @@ namespace Illuminate\Support\Facades {
/**
* Save the slot content for rendering.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function endSlot()
{
@@ -19951,8 +20013,8 @@ namespace Illuminate\Support\Facades {
*
* @param array|string $views
* @param \Closure|string $callback
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function creator($views, $callback)
{
@@ -19964,8 +20026,8 @@ namespace Illuminate\Support\Facades {
* Register multiple view composers via an array.
*
* @param array $composers
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function composers($composers)
{
@@ -19978,8 +20040,8 @@ namespace Illuminate\Support\Facades {
*
* @param array|string $views
* @param \Closure|string $callback
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function composer($views, $callback)
{
@@ -19991,8 +20053,8 @@ namespace Illuminate\Support\Facades {
* Call the composer for a given view.
*
* @param \Illuminate\Contracts\View\View $view
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function callComposer($view)
{
@@ -20004,8 +20066,8 @@ namespace Illuminate\Support\Facades {
* Call the creator for a given view.
*
* @param \Illuminate\Contracts\View\View $view
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function callCreator($view)
{
@@ -20017,8 +20079,8 @@ namespace Illuminate\Support\Facades {
* Start injecting content into a fragment.
*
* @param string $fragment
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function startFragment($fragment)
{
@@ -20029,9 +20091,9 @@ namespace Illuminate\Support\Facades {
/**
* Stop injecting content into a fragment.
*
- * @return string
+ * @return string
* @throws \InvalidArgumentException
- * @static
+ * @static
*/
public static function stopFragment()
{
@@ -20044,8 +20106,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $name
* @param string|null $default
- * @return mixed
- * @static
+ * @return mixed
+ * @static
*/
public static function getFragment($name, $default = null)
{
@@ -20056,8 +20118,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the entire array of rendered fragments.
*
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function getFragments()
{
@@ -20068,8 +20130,8 @@ namespace Illuminate\Support\Facades {
/**
* Flush all of the fragments.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function flushFragments()
{
@@ -20082,8 +20144,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $section
* @param string|null $content
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function startSection($section, $content = null)
{
@@ -20096,8 +20158,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $section
* @param string $content
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function inject($section, $content)
{
@@ -20108,8 +20170,8 @@ namespace Illuminate\Support\Facades {
/**
* Stop injecting content into a section and return its contents.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function yieldSection()
{
@@ -20121,9 +20183,9 @@ namespace Illuminate\Support\Facades {
* Stop injecting content into a section.
*
* @param bool $overwrite
- * @return string
+ * @return string
* @throws \InvalidArgumentException
- * @static
+ * @static
*/
public static function stopSection($overwrite = false)
{
@@ -20134,9 +20196,9 @@ namespace Illuminate\Support\Facades {
/**
* Stop injecting content into a section and append it.
*
- * @return string
+ * @return string
* @throws \InvalidArgumentException
- * @static
+ * @static
*/
public static function appendSection()
{
@@ -20149,8 +20211,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $section
* @param string $default
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function yieldContent($section, $default = '')
{
@@ -20162,8 +20224,8 @@ namespace Illuminate\Support\Facades {
* Get the parent placeholder for the current request.
*
* @param string $section
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function parentPlaceholder($section = '')
{
@@ -20174,8 +20236,8 @@ namespace Illuminate\Support\Facades {
* Check if section exists.
*
* @param string $name
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function hasSection($name)
{
@@ -20187,8 +20249,8 @@ namespace Illuminate\Support\Facades {
* Check if section does not exist.
*
* @param string $name
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function sectionMissing($name)
{
@@ -20201,8 +20263,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $name
* @param string|null $default
- * @return mixed
- * @static
+ * @return mixed
+ * @static
*/
public static function getSection($name, $default = null)
{
@@ -20213,8 +20275,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the entire array of sections.
*
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function getSections()
{
@@ -20225,8 +20287,8 @@ namespace Illuminate\Support\Facades {
/**
* Flush all of the sections.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function flushSections()
{
@@ -20238,8 +20300,8 @@ namespace Illuminate\Support\Facades {
* Add new loop to the stack.
*
* @param \Countable|array $data
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function addLoop($data)
{
@@ -20250,8 +20312,8 @@ namespace Illuminate\Support\Facades {
/**
* Increment the top loop's indices.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function incrementLoopIndices()
{
@@ -20262,8 +20324,8 @@ namespace Illuminate\Support\Facades {
/**
* Pop a loop from the top of the loop stack.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function popLoop()
{
@@ -20274,8 +20336,8 @@ namespace Illuminate\Support\Facades {
/**
* Get an instance of the last loop in the stack.
*
- * @return \stdClass|null
- * @static
+ * @return \stdClass|null
+ * @static
*/
public static function getLastLoop()
{
@@ -20286,8 +20348,8 @@ namespace Illuminate\Support\Facades {
/**
* Get the entire loop stack.
*
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function getLoopStack()
{
@@ -20300,8 +20362,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $section
* @param string $content
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function startPush($section, $content = '')
{
@@ -20312,9 +20374,9 @@ namespace Illuminate\Support\Facades {
/**
* Stop injecting content into a push section.
*
- * @return string
+ * @return string
* @throws \InvalidArgumentException
- * @static
+ * @static
*/
public static function stopPush()
{
@@ -20327,8 +20389,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $section
* @param string $content
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function startPrepend($section, $content = '')
{
@@ -20339,9 +20401,9 @@ namespace Illuminate\Support\Facades {
/**
* Stop prepending content into a push section.
*
- * @return string
+ * @return string
* @throws \InvalidArgumentException
- * @static
+ * @static
*/
public static function stopPrepend()
{
@@ -20354,8 +20416,8 @@ namespace Illuminate\Support\Facades {
*
* @param string $section
* @param string $default
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function yieldPushContent($section, $default = '')
{
@@ -20366,8 +20428,8 @@ namespace Illuminate\Support\Facades {
/**
* Flush all of the stacks.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function flushStacks()
{
@@ -20379,8 +20441,8 @@ namespace Illuminate\Support\Facades {
* Start a translation block.
*
* @param array $replacements
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function startTranslation($replacements = [])
{
@@ -20391,8 +20453,8 @@ namespace Illuminate\Support\Facades {
/**
* Render the current translation.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function renderTranslation()
{
@@ -20405,15 +20467,11 @@ namespace Illuminate\Support\Facades {
namespace Alban\LaravelCollectiveSpatieHtmlParser {
/**
- *
- *
* @see \Collective\Html\HtmlBuilder
*/
class FormFacade {
/**
- *
- *
- * @static
+ * @static
*/
public static function checkbox($name, $value = 1, $checked = null, $options = [])
{
@@ -20422,9 +20480,7 @@ namespace Alban\LaravelCollectiveSpatieHtmlParser {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function open($options = [])
{
@@ -20433,9 +20489,7 @@ namespace Alban\LaravelCollectiveSpatieHtmlParser {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function label($name, $value = null, $options = [], $escape_html = true)
{
@@ -20444,9 +20498,7 @@ namespace Alban\LaravelCollectiveSpatieHtmlParser {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function text($name, $value = null, $options = [])
{
@@ -20455,9 +20507,7 @@ namespace Alban\LaravelCollectiveSpatieHtmlParser {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function password($name, $options = [])
{
@@ -20466,9 +20516,7 @@ namespace Alban\LaravelCollectiveSpatieHtmlParser {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function select($name, $list = [], $selected = null, $selectAttributes = [], $optionsAttributes = [], $optgroupsAttributes = [])
{
@@ -20477,9 +20525,7 @@ namespace Alban\LaravelCollectiveSpatieHtmlParser {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function radio($name, $value = null, $checked = null, $options = [])
{
@@ -20488,9 +20534,7 @@ namespace Alban\LaravelCollectiveSpatieHtmlParser {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function submit($value = null, $options = [])
{
@@ -20499,9 +20543,7 @@ namespace Alban\LaravelCollectiveSpatieHtmlParser {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function close()
{
@@ -20510,9 +20552,7 @@ namespace Alban\LaravelCollectiveSpatieHtmlParser {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function input($type, $name, $value = null, $options = [])
{
@@ -20521,9 +20561,7 @@ namespace Alban\LaravelCollectiveSpatieHtmlParser {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function search($name, $value = null, $options = [])
{
@@ -20532,9 +20570,7 @@ namespace Alban\LaravelCollectiveSpatieHtmlParser {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function model($model, $options = [])
{
@@ -20543,9 +20579,7 @@ namespace Alban\LaravelCollectiveSpatieHtmlParser {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function hidden($name, $value = null, $options = [])
{
@@ -20554,9 +20588,7 @@ namespace Alban\LaravelCollectiveSpatieHtmlParser {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function email($name, $value = null, $options = [])
{
@@ -20565,9 +20597,7 @@ namespace Alban\LaravelCollectiveSpatieHtmlParser {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function tel($name, $value = null, $options = [])
{
@@ -20576,9 +20606,7 @@ namespace Alban\LaravelCollectiveSpatieHtmlParser {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function number($name, $value = null, $options = [])
{
@@ -20587,9 +20615,7 @@ namespace Alban\LaravelCollectiveSpatieHtmlParser {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function date($name, $value = null, $options = [])
{
@@ -20598,9 +20624,7 @@ namespace Alban\LaravelCollectiveSpatieHtmlParser {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function datetime($name, $value = null, $options = [])
{
@@ -20609,9 +20633,7 @@ namespace Alban\LaravelCollectiveSpatieHtmlParser {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function datetimeLocal($name, $value = null, $options = [])
{
@@ -20620,9 +20642,7 @@ namespace Alban\LaravelCollectiveSpatieHtmlParser {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function time($name, $value = null, $options = [])
{
@@ -20631,9 +20651,7 @@ namespace Alban\LaravelCollectiveSpatieHtmlParser {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function url($name, $value = null, $options = [])
{
@@ -20642,9 +20660,7 @@ namespace Alban\LaravelCollectiveSpatieHtmlParser {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function file($name, $options = [])
{
@@ -20653,9 +20669,7 @@ namespace Alban\LaravelCollectiveSpatieHtmlParser {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function textarea($name, $value = null, $options = [])
{
@@ -20664,9 +20678,7 @@ namespace Alban\LaravelCollectiveSpatieHtmlParser {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function reset($value, $attributes = [])
{
@@ -20675,9 +20687,7 @@ namespace Alban\LaravelCollectiveSpatieHtmlParser {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function image($url, $name = null, $attributes = [])
{
@@ -20686,9 +20696,7 @@ namespace Alban\LaravelCollectiveSpatieHtmlParser {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function color($name, $value = null, $options = [])
{
@@ -20697,9 +20705,7 @@ namespace Alban\LaravelCollectiveSpatieHtmlParser {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function button($value = null, $options = [])
{
@@ -20708,9 +20714,7 @@ namespace Alban\LaravelCollectiveSpatieHtmlParser {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function mergeOptions($element, $options = [])
{
@@ -20723,21 +20727,17 @@ namespace Alban\LaravelCollectiveSpatieHtmlParser {
namespace Maatwebsite\Excel\Facades {
/**
- *
- *
*/
class Excel {
/**
- *
- *
* @param object $export
* @param string|null $fileName
* @param string $writerType
* @param array $headers
- * @return \Symfony\Component\HttpFoundation\BinaryFileResponse
+ * @return \Symfony\Component\HttpFoundation\BinaryFileResponse
* @throws \PhpOffice\PhpSpreadsheet\Exception
* @throws \PhpOffice\PhpSpreadsheet\Writer\Exception
- * @static
+ * @static
*/
public static function download($export, $fileName, $writerType = null, $headers = [])
{
@@ -20746,18 +20746,16 @@ namespace Maatwebsite\Excel\Facades {
}
/**
- *
- *
* @param string|null $disk Fallback for usage with named properties
* @param object $export
* @param string $filePath
* @param string|null $diskName
* @param string $writerType
* @param mixed $diskOptions
- * @return bool
+ * @return bool
* @throws \PhpOffice\PhpSpreadsheet\Exception
* @throws \PhpOffice\PhpSpreadsheet\Writer\Exception
- * @static
+ * @static
*/
public static function store($export, $filePath, $diskName = null, $writerType = null, $diskOptions = [], $disk = null)
{
@@ -20766,15 +20764,13 @@ namespace Maatwebsite\Excel\Facades {
}
/**
- *
- *
* @param object $export
* @param string $filePath
* @param string|null $disk
* @param string $writerType
* @param mixed $diskOptions
- * @return \Illuminate\Foundation\Bus\PendingDispatch
- * @static
+ * @return \Illuminate\Foundation\Bus\PendingDispatch
+ * @static
*/
public static function queue($export, $filePath, $disk = null, $writerType = null, $diskOptions = [])
{
@@ -20783,12 +20779,10 @@ namespace Maatwebsite\Excel\Facades {
}
/**
- *
- *
* @param object $export
* @param string $writerType
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function raw($export, $writerType)
{
@@ -20797,14 +20791,12 @@ namespace Maatwebsite\Excel\Facades {
}
/**
- *
- *
* @param object $import
* @param string|\Symfony\Component\HttpFoundation\File\UploadedFile $filePath
* @param string|null $disk
* @param string|null $readerType
- * @return \Maatwebsite\Excel\Reader|\Illuminate\Foundation\Bus\PendingDispatch
- * @static
+ * @return \Maatwebsite\Excel\Reader|\Illuminate\Foundation\Bus\PendingDispatch
+ * @static
*/
public static function import($import, $filePath, $disk = null, $readerType = null)
{
@@ -20813,14 +20805,12 @@ namespace Maatwebsite\Excel\Facades {
}
/**
- *
- *
* @param object $import
* @param string|\Symfony\Component\HttpFoundation\File\UploadedFile $filePath
* @param string|null $disk
* @param string|null $readerType
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function toArray($import, $filePath, $disk = null, $readerType = null)
{
@@ -20829,14 +20819,12 @@ namespace Maatwebsite\Excel\Facades {
}
/**
- *
- *
* @param object $import
* @param string|\Symfony\Component\HttpFoundation\File\UploadedFile $filePath
* @param string|null $disk
* @param string|null $readerType
- * @return \Illuminate\Support\Collection
- * @static
+ * @return \Illuminate\Support\Collection
+ * @static
*/
public static function toCollection($import, $filePath, $disk = null, $readerType = null)
{
@@ -20845,14 +20833,12 @@ namespace Maatwebsite\Excel\Facades {
}
/**
- *
- *
* @param \Illuminate\Contracts\Queue\ShouldQueue $import
* @param string|\Symfony\Component\HttpFoundation\File\UploadedFile $filePath
* @param string|null $disk
* @param string $readerType
- * @return \Illuminate\Foundation\Bus\PendingDispatch
- * @static
+ * @return \Illuminate\Foundation\Bus\PendingDispatch
+ * @static
*/
public static function queueImport($import, $filePath, $disk = null, $readerType = null)
{
@@ -20866,8 +20852,8 @@ namespace Maatwebsite\Excel\Facades {
* @param string $name
* @param object|callable $macro
* @param-closure-this static $macro
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function macro($name, $macro)
{
@@ -20879,9 +20865,9 @@ namespace Maatwebsite\Excel\Facades {
*
* @param object $mixin
* @param bool $replace
- * @return void
+ * @return void
* @throws \ReflectionException
- * @static
+ * @static
*/
public static function mixin($mixin, $replace = true)
{
@@ -20892,8 +20878,8 @@ namespace Maatwebsite\Excel\Facades {
* Checks if macro is registered.
*
* @param string $name
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function hasMacro($name)
{
@@ -20903,8 +20889,8 @@ namespace Maatwebsite\Excel\Facades {
/**
* Flush the existing macros.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function flushMacros()
{
@@ -20912,12 +20898,10 @@ namespace Maatwebsite\Excel\Facades {
}
/**
- *
- *
* @param string $concern
* @param callable $handler
* @param string $event
- * @static
+ * @static
*/
public static function extend($concern, $handler, $event = 'Maatwebsite\\Excel\\Events\\BeforeWriting')
{
@@ -20928,8 +20912,8 @@ namespace Maatwebsite\Excel\Facades {
* When asserting downloaded, stored, queued or imported, use regular expression
* to look for a matching file path.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function matchByRegex()
{
@@ -20941,8 +20925,8 @@ namespace Maatwebsite\Excel\Facades {
* When asserting downloaded, stored, queued or imported, use regular string
* comparison for matching file path.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function doNotMatchByRegex()
{
@@ -20951,11 +20935,9 @@ namespace Maatwebsite\Excel\Facades {
}
/**
- *
- *
* @param string $fileName
* @param callable|null $callback
- * @static
+ * @static
*/
public static function assertDownloaded($fileName, $callback = null)
{
@@ -20964,12 +20946,10 @@ namespace Maatwebsite\Excel\Facades {
}
/**
- *
- *
* @param string $filePath
* @param string|callable|null $disk
* @param callable|null $callback
- * @static
+ * @static
*/
public static function assertStored($filePath, $disk = null, $callback = null)
{
@@ -20978,12 +20958,10 @@ namespace Maatwebsite\Excel\Facades {
}
/**
- *
- *
* @param string $filePath
* @param string|callable|null $disk
* @param callable|null $callback
- * @static
+ * @static
*/
public static function assertQueued($filePath, $disk = null, $callback = null)
{
@@ -20992,9 +20970,7 @@ namespace Maatwebsite\Excel\Facades {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function assertQueuedWithChain($chain)
{
@@ -21003,11 +20979,9 @@ namespace Maatwebsite\Excel\Facades {
}
/**
- *
- *
* @param string $classname
* @param callable|null $callback
- * @static
+ * @static
*/
public static function assertExportedInRaw($classname, $callback = null)
{
@@ -21016,12 +20990,10 @@ namespace Maatwebsite\Excel\Facades {
}
/**
- *
- *
* @param string $filePath
* @param string|callable|null $disk
* @param callable|null $callback
- * @static
+ * @static
*/
public static function assertImported($filePath, $disk = null, $callback = null)
{
@@ -21034,21 +21006,19 @@ namespace Maatwebsite\Excel\Facades {
namespace Yajra\DataTables\Facades {
/**
- *
- *
* @mixin \Yajra\DataTables\DataTables
* @see \Yajra\DataTables\DataTables
*/
class DataTables {
/**
* Make a DataTable instance from source.
- *
+ *
* Alias of make for backward compatibility.
*
* @param object $source
- * @return \Yajra\DataTables\DataTableAbstract
+ * @return \Yajra\DataTables\DataTableAbstract
* @throws \Exception
- * @static
+ * @static
*/
public static function of($source)
{
@@ -21059,9 +21029,9 @@ namespace Yajra\DataTables\Facades {
* Make a DataTable instance from source.
*
* @param object $source
- * @return \Yajra\DataTables\DataTableAbstract
+ * @return \Yajra\DataTables\DataTableAbstract
* @throws \Yajra\DataTables\Exceptions\Exception
- * @static
+ * @static
*/
public static function make($source)
{
@@ -21071,7 +21041,7 @@ namespace Yajra\DataTables\Facades {
/**
* Get request object.
*
- * @static
+ * @static
*/
public static function getRequest()
{
@@ -21082,7 +21052,7 @@ namespace Yajra\DataTables\Facades {
/**
* Get config instance.
*
- * @static
+ * @static
*/
public static function getConfig()
{
@@ -21094,7 +21064,7 @@ namespace Yajra\DataTables\Facades {
* DataTables using query builder.
*
* @throws \Yajra\DataTables\Exceptions\Exception
- * @static
+ * @static
*/
public static function query($builder)
{
@@ -21106,7 +21076,7 @@ namespace Yajra\DataTables\Facades {
* DataTables using Eloquent Builder.
*
* @throws \Yajra\DataTables\Exceptions\Exception
- * @static
+ * @static
*/
public static function eloquent($builder)
{
@@ -21119,7 +21089,7 @@ namespace Yajra\DataTables\Facades {
*
* @param \Illuminate\Support\Collection|array $collection
* @throws \Yajra\DataTables\Exceptions\Exception
- * @static
+ * @static
*/
public static function collection($collection)
{
@@ -21131,8 +21101,8 @@ namespace Yajra\DataTables\Facades {
* DataTables using Collection.
*
* @param \Illuminate\Http\Resources\Json\AnonymousResourceCollection|array $resource
- * @return \Yajra\DataTables\ApiResourceDataTable|\Yajra\DataTables\DataTableAbstract
- * @static
+ * @return \Yajra\DataTables\ApiResourceDataTable|\Yajra\DataTables\DataTableAbstract
+ * @static
*/
public static function resource($resource)
{
@@ -21141,10 +21111,8 @@ namespace Yajra\DataTables\Facades {
}
/**
- *
- *
* @throws \Yajra\DataTables\Exceptions\Exception
- * @static
+ * @static
*/
public static function validateDataTable($engine, $parent)
{
@@ -21158,8 +21126,8 @@ namespace Yajra\DataTables\Facades {
* @param string $name
* @param object|callable $macro
* @param-closure-this static $macro
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function macro($name, $macro)
{
@@ -21171,9 +21139,9 @@ namespace Yajra\DataTables\Facades {
*
* @param object $mixin
* @param bool $replace
- * @return void
+ * @return void
* @throws \ReflectionException
- * @static
+ * @static
*/
public static function mixin($mixin, $replace = true)
{
@@ -21184,8 +21152,8 @@ namespace Yajra\DataTables\Facades {
* Checks if macro is registered.
*
* @param string $name
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function hasMacro($name)
{
@@ -21195,8 +21163,8 @@ namespace Yajra\DataTables\Facades {
/**
* Flush the existing macros.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function flushMacros()
{
@@ -21208,14 +21176,10 @@ namespace Yajra\DataTables\Facades {
namespace App\Services\Facade {
/**
- *
- *
*/
- class Yard {
+ class Yard extends \Gloudemans\Shoppingcart\Cart {
/**
- *
- *
- * @static
+ * @static
*/
public static function getTaxRate()
{
@@ -21223,9 +21187,7 @@ namespace App\Services\Facade {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function setGlobalTaxRate($value)
{
@@ -21234,9 +21196,7 @@ namespace App\Services\Facade {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function getGlobalTaxRate()
{
@@ -21245,9 +21205,7 @@ namespace App\Services\Facade {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function setShippingOption($value)
{
@@ -21256,9 +21214,7 @@ namespace App\Services\Facade {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function getShippingOption()
{
@@ -21267,9 +21223,7 @@ namespace App\Services\Facade {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function isQuickShipping()
{
@@ -21278,9 +21232,7 @@ namespace App\Services\Facade {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function isWithPayments()
{
@@ -21289,9 +21241,7 @@ namespace App\Services\Facade {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function putYardExtra($key, $value)
{
@@ -21300,9 +21250,7 @@ namespace App\Services\Facade {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function getYardExtra($key)
{
@@ -21311,9 +21259,7 @@ namespace App\Services\Facade {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function getShippingCountryName()
{
@@ -21322,9 +21268,7 @@ namespace App\Services\Facade {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function getShippingCountryCountryId()
{
@@ -21333,9 +21277,7 @@ namespace App\Services\Facade {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function getShippingCountryId()
{
@@ -21344,9 +21286,7 @@ namespace App\Services\Facade {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function getShippingPrice()
{
@@ -21355,9 +21295,7 @@ namespace App\Services\Facade {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function getYContent()
{
@@ -21366,9 +21304,7 @@ namespace App\Services\Facade {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function getCartContent()
{
@@ -21377,9 +21313,7 @@ namespace App\Services\Facade {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function reCalculateShippingPrice()
{
@@ -21388,9 +21322,7 @@ namespace App\Services\Facade {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function reCalculate()
{
@@ -21399,9 +21331,7 @@ namespace App\Services\Facade {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function calculateMargins()
{
@@ -21410,9 +21340,7 @@ namespace App\Services\Facade {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function setUser($user)
{
@@ -21421,9 +21349,7 @@ namespace App\Services\Facade {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function sponsorHasCommisson()
{
@@ -21432,9 +21358,7 @@ namespace App\Services\Facade {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function getYardMargin()
{
@@ -21443,9 +21367,7 @@ namespace App\Services\Facade {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function getYardCommission()
{
@@ -21454,9 +21376,7 @@ namespace App\Services\Facade {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function setShippingCountryWithPrice($shipping_country_id, $shipping_is_for = 'ot')
{
@@ -21465,9 +21385,7 @@ namespace App\Services\Facade {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function setUserPriceInfos($setUserPriceInfos = [])
{
@@ -21476,9 +21394,7 @@ namespace App\Services\Facade {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function setShoppingUser($user, $use_payment_credit = false)
{
@@ -21487,9 +21403,7 @@ namespace App\Services\Facade {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function getUserPriceInfos()
{
@@ -21498,9 +21412,7 @@ namespace App\Services\Facade {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function getUserCountryId()
{
@@ -21509,9 +21421,7 @@ namespace App\Services\Facade {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function getUserCountry()
{
@@ -21520,9 +21430,7 @@ namespace App\Services\Facade {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function getUserTaxFree()
{
@@ -21531,9 +21439,7 @@ namespace App\Services\Facade {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function getShippingFree()
{
@@ -21542,9 +21448,7 @@ namespace App\Services\Facade {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function getShippingFreeMissingValue()
{
@@ -21553,9 +21457,7 @@ namespace App\Services\Facade {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function setReducePaymentCredit($reduce_payment_credit)
{
@@ -21564,9 +21466,7 @@ namespace App\Services\Facade {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function getReducePaymentCredit()
{
@@ -21575,9 +21475,7 @@ namespace App\Services\Facade {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function getPaymentCredit()
{
@@ -21586,9 +21484,7 @@ namespace App\Services\Facade {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function hasActivePromotion()
{
@@ -21597,9 +21493,7 @@ namespace App\Services\Facade {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function reducePaymentCredit()
{
@@ -21608,9 +21502,7 @@ namespace App\Services\Facade {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function preCalcuShippingPrice()
{
@@ -21619,13 +21511,11 @@ namespace App\Services\Facade {
}
/**
- *
- *
* @param null $decimals
* @param null $decimalPoint
* @param null $thousandSeperator
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function shipping($decimals = null, $decimalPoint = null, $thousandSeperator = null)
{
@@ -21634,9 +21524,7 @@ namespace App\Services\Facade {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function shippingNet($decimals = null, $decimalPoint = null, $thousandSeperator = null)
{
@@ -21645,9 +21533,7 @@ namespace App\Services\Facade {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function subtotalWithShipping($decimals = null, $decimalPoint = null, $thousandSeperator = null)
{
@@ -21656,9 +21542,7 @@ namespace App\Services\Facade {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function taxWithShipping($decimals = null, $decimalPoint = null, $thousandSeperator = null)
{
@@ -21667,9 +21551,7 @@ namespace App\Services\Facade {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function totalWithShipping($decimals = null, $decimalPoint = null, $thousandSeperator = null)
{
@@ -21678,9 +21560,7 @@ namespace App\Services\Facade {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function totalWithShippingWithoutCredit($decimals = null, $decimalPoint = null, $thousandSeperator = null)
{
@@ -21689,9 +21569,7 @@ namespace App\Services\Facade {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function totalfromCredit($decimals = null, $decimalPoint = null, $thousandSeperator = null)
{
@@ -21705,8 +21583,8 @@ namespace App\Services\Facade {
* @param int $decimals
* @param string $decimalPoint
* @param string $thousandSeperator
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function weight($decimals = null, $decimalPoint = null, $thousandSeperator = null)
{
@@ -21715,9 +21593,7 @@ namespace App\Services\Facade {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function points()
{
@@ -21726,9 +21602,7 @@ namespace App\Services\Facade {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function compCount()
{
@@ -21742,8 +21616,8 @@ namespace App\Services\Facade {
* @param int $decimals
* @param string $decimalPoint
* @param string $thousandSeperator
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function total($decimals = null, $decimalPoint = null, $thousandSeperator = null, $withFees = false)
{
@@ -21757,8 +21631,8 @@ namespace App\Services\Facade {
* @param int $decimals
* @param string $decimalPoint
* @param string $thousandSeperator
- * @return float
- * @static
+ * @return float
+ * @static
*/
public static function tax($decimals = null, $decimalPoint = null, $thousandSeperator = null, $withFees = false)
{
@@ -21772,8 +21646,8 @@ namespace App\Services\Facade {
* @param int $decimals
* @param string $decimalPoint
* @param string $thousandSeperator
- * @return float
- * @static
+ * @return float
+ * @static
*/
public static function subtotal($decimals = null, $decimalPoint = null, $thousandSeperator = null, $discount = true)
{
@@ -21782,9 +21656,7 @@ namespace App\Services\Facade {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function getCartItemByProduct($product_id, $set_price = 'with', $commission = true)
{
@@ -21793,9 +21665,7 @@ namespace App\Services\Facade {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function getCartItem($id, $name = null, $qty = null, $price = null, $options = [])
{
@@ -21804,9 +21674,7 @@ namespace App\Services\Facade {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function destroy()
{
@@ -21815,9 +21683,7 @@ namespace App\Services\Facade {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function rowPrice($row, $decimals = null, $decimalPoint = null, $thousandSeperator = null)
{
@@ -21826,9 +21692,7 @@ namespace App\Services\Facade {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function rowPriceNet($row, $decimals = null, $decimalPoint = null, $thousandSeperator = null)
{
@@ -21837,9 +21701,7 @@ namespace App\Services\Facade {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function rowSubtotal($row, $decimals = null, $decimalPoint = null, $thousandSeperator = null)
{
@@ -21848,9 +21710,7 @@ namespace App\Services\Facade {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function rowSubtotalNet($row, $decimals = null, $decimalPoint = null, $thousandSeperator = null)
{
@@ -21859,9 +21719,7 @@ namespace App\Services\Facade {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function getNumComp()
{
@@ -21870,9 +21728,7 @@ namespace App\Services\Facade {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function getCompProductBy($comp, $product_id = false)
{
@@ -21881,9 +21737,7 @@ namespace App\Services\Facade {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function getFreeProductId()
{
@@ -21892,9 +21746,7 @@ namespace App\Services\Facade {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function getContentByOrder()
{
@@ -21906,8 +21758,8 @@ namespace App\Services\Facade {
* Set the current cart instance.
*
* @param string|null $instance
- * @return \Gloudemans\Shoppingcart\Cart
- * @static
+ * @return \Gloudemans\Shoppingcart\Cart
+ * @static
*/
public static function instance($instance = null)
{
@@ -21919,8 +21771,8 @@ namespace App\Services\Facade {
/**
* Get the current cart instance.
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function currentInstance()
{
@@ -21937,8 +21789,8 @@ namespace App\Services\Facade {
* @param int|float $qty
* @param float $price
* @param array $options
- * @return \Gloudemans\Shoppingcart\CartItem
- * @static
+ * @return \Gloudemans\Shoppingcart\CartItem
+ * @static
*/
public static function add($id, $name = null, $qty = null, $price = null, $taxRate = null, $options = [])
{
@@ -21952,8 +21804,8 @@ namespace App\Services\Facade {
*
* @param string $rowId
* @param mixed $qty
- * @return \Gloudemans\Shoppingcart\CartItem
- * @static
+ * @return \Gloudemans\Shoppingcart\CartItem
+ * @static
*/
public static function update($rowId, $qty)
{
@@ -21966,8 +21818,8 @@ namespace App\Services\Facade {
* Remove the cart item with the given rowId from the cart.
*
* @param string $rowId
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function remove($rowId)
{
@@ -21980,8 +21832,8 @@ namespace App\Services\Facade {
* Get a cart item from the cart by its rowId.
*
* @param string $rowId
- * @return \Gloudemans\Shoppingcart\CartItem
- * @static
+ * @return \Gloudemans\Shoppingcart\CartItem
+ * @static
*/
public static function get($rowId)
{
@@ -21993,8 +21845,8 @@ namespace App\Services\Facade {
/**
* Get the content of the cart.
*
- * @return \Illuminate\Support\Collection
- * @static
+ * @return \Illuminate\Support\Collection
+ * @static
*/
public static function content()
{
@@ -22006,8 +21858,8 @@ namespace App\Services\Facade {
/**
* Get the number of items in the cart.
*
- * @return int|float
- * @static
+ * @return int|float
+ * @static
*/
public static function count()
{
@@ -22022,8 +21874,8 @@ namespace App\Services\Facade {
* @param int $decimals
* @param string $decimalPoint
* @param string $thousandSeperator
- * @return float
- * @static
+ * @return float
+ * @static
*/
public static function feeTax($decimals = null, $decimalPoint = null, $thousandSeperator = null)
{
@@ -22038,8 +21890,8 @@ namespace App\Services\Facade {
* @param int $decimals
* @param string $decimalPoint
* @param string $thousandSeperator
- * @return float
- * @static
+ * @return float
+ * @static
*/
public static function subtotalTax($decimals = null, $decimalPoint = null, $thousandSeperator = null)
{
@@ -22052,8 +21904,8 @@ namespace App\Services\Facade {
* Search the cart content for a cart item matching the given search closure.
*
* @param \Closure $search
- * @return \Illuminate\Support\Collection
- * @static
+ * @return \Illuminate\Support\Collection
+ * @static
*/
public static function search($search)
{
@@ -22067,8 +21919,8 @@ namespace App\Services\Facade {
*
* @param string $rowId
* @param mixed $model
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function associate($rowId, $model)
{
@@ -22082,8 +21934,8 @@ namespace App\Services\Facade {
*
* @param string $rowId
* @param int|float $taxRate
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function setTax($rowId, $taxRate)
{
@@ -22096,8 +21948,8 @@ namespace App\Services\Facade {
* Store an the current instance of the cart.
*
* @param mixed $identifier
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function store($identifier)
{
@@ -22110,8 +21962,8 @@ namespace App\Services\Facade {
* Restore the cart with the given identifier.
*
* @param mixed $identifier
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function restore($identifier)
{
@@ -22124,8 +21976,8 @@ namespace App\Services\Facade {
* Gets a specific fee from the fees array.
*
* @param $name
- * @return mixed
- * @static
+ * @return mixed
+ * @static
*/
public static function getFee($name)
{
@@ -22137,14 +21989,14 @@ namespace App\Services\Facade {
/**
* Allows to charge for additional fees that may or may not be taxable
* ex - service fee , delivery fee, tips.
- *
+ *
* Because it uses ->put, the name must be unique otherwise will be overwritten.
*
* @param $name
* @param $amount
* @param $taxRate
* @param array $options
- * @static
+ * @static
*/
public static function addFee($name, $amount, $taxRate = null, $options = [])
{
@@ -22158,7 +22010,7 @@ namespace App\Services\Facade {
*
* @todo test to see if i need to restore this
* @param $name
- * @static
+ * @static
*/
public static function removeFee($name)
{
@@ -22170,7 +22022,7 @@ namespace App\Services\Facade {
/**
* Removes all the fees set in the cart.
*
- * @static
+ * @static
*/
public static function removeFees()
{
@@ -22184,8 +22036,8 @@ namespace App\Services\Facade {
*
* @param bool $format
* @param bool $withTax
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function feeTotal($decimals = null, $decimalPoint = null, $thousandSeperator = null, $withTax = true)
{
@@ -22197,8 +22049,8 @@ namespace App\Services\Facade {
/**
* Gets all the fees on the cart object.
*
- * @return mixed
- * @static
+ * @return mixed
+ * @static
*/
public static function getFees()
{
@@ -22208,10 +22060,8 @@ namespace App\Services\Facade {
}
/**
- *
- *
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function toArray()
{
@@ -22221,11 +22071,9 @@ namespace App\Services\Facade {
}
/**
- *
- *
* @param $array
- * @return \App\Services\Yard
- * @static
+ * @return \App\Services\Yard
+ * @static
*/
public static function fromArray($array)
{
@@ -22239,8 +22087,6 @@ namespace App\Services\Facade {
namespace Barryvdh\Debugbar\Facades {
/**
- *
- *
* @method static void alert(mixed $message)
* @method static void critical(mixed $message)
* @method static void debug(mixed $message)
@@ -22252,14 +22098,14 @@ namespace Barryvdh\Debugbar\Facades {
* @method static void warning(mixed $message)
* @see \Barryvdh\Debugbar\LaravelDebugbar
*/
- class Debugbar {
+ class Debugbar extends \DebugBar\DebugBar {
/**
* Returns the HTTP driver
- *
+ *
* If no http driver where defined, a PhpHttpDriver is automatically created
*
- * @return \DebugBar\HttpDriverInterface
- * @static
+ * @return \DebugBar\HttpDriverInterface
+ * @static
*/
public static function getHttpDriver()
{
@@ -22270,7 +22116,7 @@ namespace Barryvdh\Debugbar\Facades {
/**
* Enable the Debugbar and boot, if not already booted.
*
- * @static
+ * @static
*/
public static function enable()
{
@@ -22281,7 +22127,7 @@ namespace Barryvdh\Debugbar\Facades {
/**
* Boot the debugbar (add collectors, renderer and listener)
*
- * @static
+ * @static
*/
public static function boot()
{
@@ -22290,9 +22136,7 @@ namespace Barryvdh\Debugbar\Facades {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function shouldCollect($name, $default = false)
{
@@ -22305,8 +22149,8 @@ namespace Barryvdh\Debugbar\Facades {
*
* @param \DebugBar\DataCollector\DataCollectorInterface $collector
* @throws DebugBarException
- * @return \Barryvdh\Debugbar\LaravelDebugbar
- * @static
+ * @return \Barryvdh\Debugbar\LaravelDebugbar
+ * @static
*/
public static function addCollector($collector)
{
@@ -22323,7 +22167,7 @@ namespace Barryvdh\Debugbar\Facades {
* @param int $line
* @param array $context
* @throws \ErrorException
- * @static
+ * @static
*/
public static function handleError($level, $message, $file = '', $line = 0, $context = [])
{
@@ -22337,19 +22181,20 @@ namespace Barryvdh\Debugbar\Facades {
* @param string $name Internal name, used to stop the measure
* @param string $label Public name
* @param string|null $collector
- * @static
+ * @param string|null $group
+ * @static
*/
- public static function startMeasure($name, $label = null, $collector = null)
+ public static function startMeasure($name, $label = null, $collector = null, $group = null)
{
/** @var \Barryvdh\Debugbar\LaravelDebugbar $instance */
- return $instance->startMeasure($name, $label, $collector);
+ return $instance->startMeasure($name, $label, $collector, $group);
}
/**
* Stops a measure
*
* @param string $name
- * @static
+ * @static
*/
public static function stopMeasure($name)
{
@@ -22362,7 +22207,7 @@ namespace Barryvdh\Debugbar\Facades {
*
* @param \Exception $e
* @deprecated in favor of addThrowable
- * @static
+ * @static
*/
public static function addException($e)
{
@@ -22374,7 +22219,7 @@ namespace Barryvdh\Debugbar\Facades {
* Adds an exception to be profiled in the debug bar
*
* @param \Throwable $e
- * @static
+ * @static
*/
public static function addThrowable($e)
{
@@ -22387,8 +22232,8 @@ namespace Barryvdh\Debugbar\Facades {
*
* @param string $baseUrl
* @param string $basePath
- * @return \Barryvdh\Debugbar\JavascriptRenderer
- * @static
+ * @return \Barryvdh\Debugbar\JavascriptRenderer
+ * @static
*/
public static function getJavascriptRenderer($baseUrl = null, $basePath = null)
{
@@ -22401,8 +22246,8 @@ namespace Barryvdh\Debugbar\Facades {
*
* @param \Symfony\Component\HttpFoundation\Request $request
* @param \Symfony\Component\HttpFoundation\Response $response
- * @return \Symfony\Component\HttpFoundation\Response
- * @static
+ * @return \Symfony\Component\HttpFoundation\Response
+ * @static
*/
public static function modifyResponse($request, $response)
{
@@ -22413,8 +22258,8 @@ namespace Barryvdh\Debugbar\Facades {
/**
* Check if the Debugbar is enabled
*
- * @return boolean
- * @static
+ * @return boolean
+ * @static
*/
public static function isEnabled()
{
@@ -22425,8 +22270,8 @@ namespace Barryvdh\Debugbar\Facades {
/**
* Collects the data from the collectors
*
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function collect()
{
@@ -22439,7 +22284,7 @@ namespace Barryvdh\Debugbar\Facades {
*
* @param \Symfony\Component\HttpFoundation\Response $response A Response instance
* Based on https://github.com/symfony/WebProfilerBundle/blob/master/EventListener/WebDebugToolbarListener.php
- * @static
+ * @static
*/
public static function injectDebugbar($response)
{
@@ -22450,8 +22295,8 @@ namespace Barryvdh\Debugbar\Facades {
/**
* Checks if there is stacked data in the session
*
- * @return boolean
- * @static
+ * @return boolean
+ * @static
*/
public static function hasStackedData()
{
@@ -22463,8 +22308,8 @@ namespace Barryvdh\Debugbar\Facades {
* Returns the data stacked in the session
*
* @param boolean $delete Whether to delete the data in the session
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function getStackedData($delete = true)
{
@@ -22475,7 +22320,7 @@ namespace Barryvdh\Debugbar\Facades {
/**
* Disable the Debugbar
*
- * @static
+ * @static
*/
public static function disable()
{
@@ -22491,12 +22336,13 @@ namespace Barryvdh\Debugbar\Facades {
* @param float $end
* @param array|null $params
* @param string|null $collector
- * @static
+ * @param string|null $group
+ * @static
*/
- public static function addMeasure($label, $start, $end, $params = [], $collector = null)
+ public static function addMeasure($label, $start, $end, $params = [], $collector = null, $group = null)
{
/** @var \Barryvdh\Debugbar\LaravelDebugbar $instance */
- return $instance->addMeasure($label, $start, $end, $params, $collector);
+ return $instance->addMeasure($label, $start, $end, $params, $collector, $group);
}
/**
@@ -22505,20 +22351,21 @@ namespace Barryvdh\Debugbar\Facades {
* @param string $label
* @param \Closure $closure
* @param string|null $collector
- * @return mixed
- * @static
+ * @param string|null $group
+ * @return mixed
+ * @static
*/
- public static function measure($label, $closure, $collector = null)
+ public static function measure($label, $closure, $collector = null, $group = null)
{
/** @var \Barryvdh\Debugbar\LaravelDebugbar $instance */
- return $instance->measure($label, $closure, $collector);
+ return $instance->measure($label, $closure, $collector, $group);
}
/**
* Collect data in a CLI request
*
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function collectConsole()
{
@@ -22528,12 +22375,12 @@ namespace Barryvdh\Debugbar\Facades {
/**
* Adds a message to the MessagesCollector
- *
+ *
* A message can be anything from an object to a string
*
* @param mixed $message
* @param string $label
- * @static
+ * @static
*/
public static function addMessage($message, $label = 'info')
{
@@ -22545,8 +22392,8 @@ namespace Barryvdh\Debugbar\Facades {
* Checks if a data collector has been added
*
* @param string $name
- * @return boolean
- * @static
+ * @return boolean
+ * @static
*/
public static function hasCollector($name)
{
@@ -22559,9 +22406,9 @@ namespace Barryvdh\Debugbar\Facades {
* Returns a data collector
*
* @param string $name
- * @return \DebugBar\DataCollector\DataCollectorInterface
+ * @return \DebugBar\DataCollector\DataCollectorInterface
* @throws DebugBarException
- * @static
+ * @static
*/
public static function getCollector($name)
{
@@ -22573,8 +22420,8 @@ namespace Barryvdh\Debugbar\Facades {
/**
* Returns an array of all data collectors
*
- * @return array[DataCollectorInterface]
- * @static
+ * @return array[DataCollectorInterface]
+ * @static
*/
public static function getCollectors()
{
@@ -22587,8 +22434,8 @@ namespace Barryvdh\Debugbar\Facades {
* Sets the request id generator
*
* @param \DebugBar\RequestIdGeneratorInterface $generator
- * @return \Barryvdh\Debugbar\LaravelDebugbar
- * @static
+ * @return \Barryvdh\Debugbar\LaravelDebugbar
+ * @static
*/
public static function setRequestIdGenerator($generator)
{
@@ -22598,10 +22445,8 @@ namespace Barryvdh\Debugbar\Facades {
}
/**
- *
- *
- * @return \DebugBar\RequestIdGeneratorInterface
- * @static
+ * @return \DebugBar\RequestIdGeneratorInterface
+ * @static
*/
public static function getRequestIdGenerator()
{
@@ -22613,8 +22458,8 @@ namespace Barryvdh\Debugbar\Facades {
/**
* Returns the id of the current request
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function getCurrentRequestId()
{
@@ -22627,8 +22472,8 @@ namespace Barryvdh\Debugbar\Facades {
* Sets the storage backend to use to store the collected data
*
* @param \DebugBar\StorageInterface $storage
- * @return \Barryvdh\Debugbar\LaravelDebugbar
- * @static
+ * @return \Barryvdh\Debugbar\LaravelDebugbar
+ * @static
*/
public static function setStorage($storage = null)
{
@@ -22638,10 +22483,8 @@ namespace Barryvdh\Debugbar\Facades {
}
/**
- *
- *
- * @return \DebugBar\StorageInterface
- * @static
+ * @return \DebugBar\StorageInterface
+ * @static
*/
public static function getStorage()
{
@@ -22653,8 +22496,8 @@ namespace Barryvdh\Debugbar\Facades {
/**
* Checks if the data will be persisted
*
- * @return boolean
- * @static
+ * @return boolean
+ * @static
*/
public static function isDataPersisted()
{
@@ -22667,8 +22510,8 @@ namespace Barryvdh\Debugbar\Facades {
* Sets the HTTP driver
*
* @param \DebugBar\HttpDriverInterface $driver
- * @return \Barryvdh\Debugbar\LaravelDebugbar
- * @static
+ * @return \Barryvdh\Debugbar\LaravelDebugbar
+ * @static
*/
public static function setHttpDriver($driver)
{
@@ -22679,11 +22522,11 @@ namespace Barryvdh\Debugbar\Facades {
/**
* Returns collected data
- *
+ *
* Will collect the data if none have been collected yet
*
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function getData()
{
@@ -22697,8 +22540,8 @@ namespace Barryvdh\Debugbar\Facades {
*
* @param string $headerName
* @param integer $maxHeaderLength
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function getDataAsHeaders($headerName = 'phpdebugbar', $maxHeaderLength = 4096, $maxTotalHeaderLength = 250000)
{
@@ -22713,8 +22556,8 @@ namespace Barryvdh\Debugbar\Facades {
* @param bool $useOpenHandler
* @param string $headerName
* @param integer $maxHeaderLength
- * @return \Barryvdh\Debugbar\LaravelDebugbar
- * @static
+ * @return \Barryvdh\Debugbar\LaravelDebugbar
+ * @static
*/
public static function sendDataInHeaders($useOpenHandler = null, $headerName = 'phpdebugbar', $maxHeaderLength = 4096)
{
@@ -22726,7 +22569,7 @@ namespace Barryvdh\Debugbar\Facades {
/**
* Stacks the data in the session for later rendering
*
- * @static
+ * @static
*/
public static function stackData()
{
@@ -22739,8 +22582,8 @@ namespace Barryvdh\Debugbar\Facades {
* Sets the key to use in the $_SESSION array
*
* @param string $ns
- * @return \Barryvdh\Debugbar\LaravelDebugbar
- * @static
+ * @return \Barryvdh\Debugbar\LaravelDebugbar
+ * @static
*/
public static function setStackDataSessionNamespace($ns)
{
@@ -22752,8 +22595,8 @@ namespace Barryvdh\Debugbar\Facades {
/**
* Returns the key used in the $_SESSION array
*
- * @return string
- * @static
+ * @return string
+ * @static
*/
public static function getStackDataSessionNamespace()
{
@@ -22767,8 +22610,8 @@ namespace Barryvdh\Debugbar\Facades {
* if a storage is enabled
*
* @param boolean $enabled
- * @return \Barryvdh\Debugbar\LaravelDebugbar
- * @static
+ * @return \Barryvdh\Debugbar\LaravelDebugbar
+ * @static
*/
public static function setStackAlwaysUseSessionStorage($enabled = true)
{
@@ -22781,8 +22624,8 @@ namespace Barryvdh\Debugbar\Facades {
* Checks if the session is always used to store stacked data
* even if a storage is enabled
*
- * @return boolean
- * @static
+ * @return boolean
+ * @static
*/
public static function isStackAlwaysUseSessionStorage()
{
@@ -22792,9 +22635,7 @@ namespace Barryvdh\Debugbar\Facades {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function offsetSet($key, $value)
{
@@ -22804,9 +22645,7 @@ namespace Barryvdh\Debugbar\Facades {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function offsetGet($key)
{
@@ -22816,9 +22655,7 @@ namespace Barryvdh\Debugbar\Facades {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function offsetExists($key)
{
@@ -22828,9 +22665,7 @@ namespace Barryvdh\Debugbar\Facades {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function offsetUnset($key)
{
@@ -22844,8 +22679,6 @@ namespace Barryvdh\Debugbar\Facades {
namespace Barryvdh\DomPDF\Facade {
/**
- *
- *
* @method static BasePDF setBaseHost(string $baseHost)
* @method static BasePDF setBasePath(string $basePath)
* @method static BasePDF setCanvas(\Dompdf\Canvas $canvas)
@@ -22863,7 +22696,7 @@ namespace Barryvdh\DomPDF\Facade {
/**
* Get the DomPDF instance
*
- * @static
+ * @static
*/
public static function getDomPDF()
{
@@ -22874,7 +22707,7 @@ namespace Barryvdh\DomPDF\Facade {
/**
* Show or hide warnings
*
- * @static
+ * @static
*/
public static function setWarnings($warnings)
{
@@ -22886,7 +22719,7 @@ namespace Barryvdh\DomPDF\Facade {
* Load a HTML string
*
* @param string|null $encoding Not used yet
- * @static
+ * @static
*/
public static function loadHTML($string, $encoding = null)
{
@@ -22897,7 +22730,7 @@ namespace Barryvdh\DomPDF\Facade {
/**
* Load a HTML file
*
- * @static
+ * @static
*/
public static function loadFile($file)
{
@@ -22909,7 +22742,7 @@ namespace Barryvdh\DomPDF\Facade {
* Add metadata info
*
* @param array $info
- * @static
+ * @static
*/
public static function addInfo($info)
{
@@ -22923,7 +22756,7 @@ namespace Barryvdh\DomPDF\Facade {
* @param array $data
* @param array $mergeData
* @param string|null $encoding Not used yet
- * @static
+ * @static
*/
public static function loadView($view, $data = [], $mergeData = [], $encoding = null)
{
@@ -22936,7 +22769,7 @@ namespace Barryvdh\DomPDF\Facade {
*
* @param array|string $attribute
* @param null|mixed $value
- * @static
+ * @static
*/
public static function setOption($attribute, $value = null)
{
@@ -22948,7 +22781,7 @@ namespace Barryvdh\DomPDF\Facade {
* Replace all the Options from DomPDF
*
* @param array $options
- * @static
+ * @static
*/
public static function setOptions($options, $mergeWithDefaults = false)
{
@@ -22958,15 +22791,15 @@ namespace Barryvdh\DomPDF\Facade {
/**
* 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 array $options
* @return string The rendered PDF as string
- * @static
+ * @static
*/
public static function output($options = [])
{
@@ -22977,7 +22810,7 @@ namespace Barryvdh\DomPDF\Facade {
/**
* Save the PDF to a file
*
- * @static
+ * @static
*/
public static function save($filename, $disk = null)
{
@@ -22988,7 +22821,7 @@ namespace Barryvdh\DomPDF\Facade {
/**
* Make the PDF downloadable by the user
*
- * @static
+ * @static
*/
public static function download($filename = 'document.pdf')
{
@@ -22999,7 +22832,7 @@ namespace Barryvdh\DomPDF\Facade {
/**
* Return a response with the PDF to show in the browser
*
- * @static
+ * @static
*/
public static function stream($filename = 'document.pdf')
{
@@ -23010,7 +22843,7 @@ namespace Barryvdh\DomPDF\Facade {
/**
* Render the PDF
*
- * @static
+ * @static
*/
public static function render()
{
@@ -23019,10 +22852,8 @@ namespace Barryvdh\DomPDF\Facade {
}
/**
- *
- *
* @param array $pc
- * @static
+ * @static
*/
public static function setEncryption($password, $ownerpassword = '', $pc = [])
{
@@ -23032,8 +22863,6 @@ namespace Barryvdh\DomPDF\Facade {
}
/**
- *
- *
* @method static BasePDF setBaseHost(string $baseHost)
* @method static BasePDF setBasePath(string $basePath)
* @method static BasePDF setCanvas(\Dompdf\Canvas $canvas)
@@ -23051,7 +22880,7 @@ namespace Barryvdh\DomPDF\Facade {
/**
* Get the DomPDF instance
*
- * @static
+ * @static
*/
public static function getDomPDF()
{
@@ -23062,7 +22891,7 @@ namespace Barryvdh\DomPDF\Facade {
/**
* Show or hide warnings
*
- * @static
+ * @static
*/
public static function setWarnings($warnings)
{
@@ -23074,7 +22903,7 @@ namespace Barryvdh\DomPDF\Facade {
* Load a HTML string
*
* @param string|null $encoding Not used yet
- * @static
+ * @static
*/
public static function loadHTML($string, $encoding = null)
{
@@ -23085,7 +22914,7 @@ namespace Barryvdh\DomPDF\Facade {
/**
* Load a HTML file
*
- * @static
+ * @static
*/
public static function loadFile($file)
{
@@ -23097,7 +22926,7 @@ namespace Barryvdh\DomPDF\Facade {
* Add metadata info
*
* @param array $info
- * @static
+ * @static
*/
public static function addInfo($info)
{
@@ -23111,7 +22940,7 @@ namespace Barryvdh\DomPDF\Facade {
* @param array $data
* @param array $mergeData
* @param string|null $encoding Not used yet
- * @static
+ * @static
*/
public static function loadView($view, $data = [], $mergeData = [], $encoding = null)
{
@@ -23124,7 +22953,7 @@ namespace Barryvdh\DomPDF\Facade {
*
* @param array|string $attribute
* @param null|mixed $value
- * @static
+ * @static
*/
public static function setOption($attribute, $value = null)
{
@@ -23136,7 +22965,7 @@ namespace Barryvdh\DomPDF\Facade {
* Replace all the Options from DomPDF
*
* @param array $options
- * @static
+ * @static
*/
public static function setOptions($options, $mergeWithDefaults = false)
{
@@ -23146,15 +22975,15 @@ namespace Barryvdh\DomPDF\Facade {
/**
* 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 array $options
* @return string The rendered PDF as string
- * @static
+ * @static
*/
public static function output($options = [])
{
@@ -23165,7 +22994,7 @@ namespace Barryvdh\DomPDF\Facade {
/**
* Save the PDF to a file
*
- * @static
+ * @static
*/
public static function save($filename, $disk = null)
{
@@ -23176,7 +23005,7 @@ namespace Barryvdh\DomPDF\Facade {
/**
* Make the PDF downloadable by the user
*
- * @static
+ * @static
*/
public static function download($filename = 'document.pdf')
{
@@ -23187,7 +23016,7 @@ namespace Barryvdh\DomPDF\Facade {
/**
* Return a response with the PDF to show in the browser
*
- * @static
+ * @static
*/
public static function stream($filename = 'document.pdf')
{
@@ -23198,7 +23027,7 @@ namespace Barryvdh\DomPDF\Facade {
/**
* Render the PDF
*
- * @static
+ * @static
*/
public static function render()
{
@@ -23207,10 +23036,8 @@ namespace Barryvdh\DomPDF\Facade {
}
/**
- *
- *
* @param array $pc
- * @static
+ * @static
*/
public static function setEncryption($password, $ownerpassword = '', $pc = [])
{
@@ -23223,16 +23050,14 @@ namespace Barryvdh\DomPDF\Facade {
namespace Laracasts\Flash {
/**
- *
- *
*/
class Flash {
/**
* Flash an information message.
*
* @param string|null $message
- * @return \Laracasts\Flash\FlashNotifier
- * @static
+ * @return \Laracasts\Flash\FlashNotifier
+ * @static
*/
public static function info($message = null)
{
@@ -23244,8 +23069,8 @@ namespace Laracasts\Flash {
* Flash a success message.
*
* @param string|null $message
- * @return \Laracasts\Flash\FlashNotifier
- * @static
+ * @return \Laracasts\Flash\FlashNotifier
+ * @static
*/
public static function success($message = null)
{
@@ -23257,8 +23082,8 @@ namespace Laracasts\Flash {
* Flash an error message.
*
* @param string|null $message
- * @return \Laracasts\Flash\FlashNotifier
- * @static
+ * @return \Laracasts\Flash\FlashNotifier
+ * @static
*/
public static function error($message = null)
{
@@ -23270,8 +23095,8 @@ namespace Laracasts\Flash {
* Flash a warning message.
*
* @param string|null $message
- * @return \Laracasts\Flash\FlashNotifier
- * @static
+ * @return \Laracasts\Flash\FlashNotifier
+ * @static
*/
public static function warning($message = null)
{
@@ -23284,8 +23109,8 @@ namespace Laracasts\Flash {
*
* @param string|null $message
* @param string|null $level
- * @return \Laracasts\Flash\FlashNotifier
- * @static
+ * @return \Laracasts\Flash\FlashNotifier
+ * @static
*/
public static function message($message = null, $level = null)
{
@@ -23298,8 +23123,8 @@ namespace Laracasts\Flash {
*
* @param string|null $message
* @param string $title
- * @return \Laracasts\Flash\FlashNotifier
- * @static
+ * @return \Laracasts\Flash\FlashNotifier
+ * @static
*/
public static function overlay($message = null, $title = 'Notice')
{
@@ -23310,8 +23135,8 @@ namespace Laracasts\Flash {
/**
* Add an "important" flash to the session.
*
- * @return \Laracasts\Flash\FlashNotifier
- * @static
+ * @return \Laracasts\Flash\FlashNotifier
+ * @static
*/
public static function important()
{
@@ -23322,8 +23147,8 @@ namespace Laracasts\Flash {
/**
* Clear all registered messages.
*
- * @return \Laracasts\Flash\FlashNotifier
- * @static
+ * @return \Laracasts\Flash\FlashNotifier
+ * @static
*/
public static function clear()
{
@@ -23337,8 +23162,8 @@ namespace Laracasts\Flash {
* @param string $name
* @param object|callable $macro
* @param-closure-this static $macro
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function macro($name, $macro)
{
@@ -23350,9 +23175,9 @@ namespace Laracasts\Flash {
*
* @param object $mixin
* @param bool $replace
- * @return void
+ * @return void
* @throws \ReflectionException
- * @static
+ * @static
*/
public static function mixin($mixin, $replace = true)
{
@@ -23363,8 +23188,8 @@ namespace Laracasts\Flash {
* Checks if macro is registered.
*
* @param string $name
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function hasMacro($name)
{
@@ -23374,8 +23199,8 @@ namespace Laracasts\Flash {
/**
* Flush the existing macros.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function flushMacros()
{
@@ -23387,17 +23212,13 @@ namespace Laracasts\Flash {
namespace Spatie\Html\Facades {
/**
- *
- *
*/
class Html {
/**
- *
- *
* @param string|null $href
* @param string|null $text
- * @return \Spatie\Html\Elements\A
- * @static
+ * @return \Spatie\Html\Elements\A
+ * @static
*/
public static function a($href = null, $contents = null)
{
@@ -23406,12 +23227,10 @@ namespace Spatie\Html\Facades {
}
/**
- *
- *
* @param string|null $href
* @param string|null $text
- * @return \Spatie\Html\Elements\I
- * @static
+ * @return \Spatie\Html\Elements\I
+ * @static
*/
public static function i($contents = null)
{
@@ -23420,11 +23239,9 @@ namespace Spatie\Html\Facades {
}
/**
- *
- *
* @param \Spatie\Html\HtmlElement|string|null $contents
- * @return \Spatie\Html\Elements\P
- * @static
+ * @return \Spatie\Html\Elements\P
+ * @static
*/
public static function p($contents = null)
{
@@ -23433,12 +23250,10 @@ namespace Spatie\Html\Facades {
}
/**
- *
- *
* @param string|null $type
* @param string|null $text
- * @return \Spatie\Html\Elements\Button
- * @static
+ * @return \Spatie\Html\Elements\Button
+ * @static
*/
public static function button($contents = null, $type = null, $name = null)
{
@@ -23447,11 +23262,9 @@ namespace Spatie\Html\Facades {
}
/**
- *
- *
* @param \Illuminate\Support\Collection|iterable|string $classes
- * @return \Illuminate\Contracts\Support\Htmlable
- * @static
+ * @return \Illuminate\Contracts\Support\Htmlable
+ * @static
*/
public static function class($classes)
{
@@ -23460,13 +23273,11 @@ namespace Spatie\Html\Facades {
}
/**
- *
- *
* @param string|null $name
* @param bool $checked
* @param string|null $value
- * @return \Spatie\Html\Elements\Input
- * @static
+ * @return \Spatie\Html\Elements\Input
+ * @static
*/
public static function checkbox($name = null, $checked = null, $value = '1')
{
@@ -23475,11 +23286,9 @@ namespace Spatie\Html\Facades {
}
/**
- *
- *
* @param \Spatie\Html\HtmlElement|string|iterable|int|float|null $contents
- * @return \Spatie\Html\Elements\Div
- * @static
+ * @return \Spatie\Html\Elements\Div
+ * @static
*/
public static function div($contents = null)
{
@@ -23488,12 +23297,10 @@ namespace Spatie\Html\Facades {
}
/**
- *
- *
* @param string|null $name
* @param string|null $value
- * @return \Spatie\Html\Elements\Input
- * @static
+ * @return \Spatie\Html\Elements\Input
+ * @static
*/
public static function email($name = null, $value = null)
{
@@ -23502,12 +23309,10 @@ namespace Spatie\Html\Facades {
}
/**
- *
- *
* @param string|null $name
* @param string|null $value
- * @return \Spatie\Html\Elements\Input
- * @static
+ * @return \Spatie\Html\Elements\Input
+ * @static
*/
public static function search($name = null, $value = null)
{
@@ -23516,13 +23321,11 @@ namespace Spatie\Html\Facades {
}
/**
- *
- *
* @param string|null $name
* @param string|null $value
* @param bool $format
- * @return \Spatie\Html\Elements\Input
- * @static
+ * @return \Spatie\Html\Elements\Input
+ * @static
*/
public static function date($name = '', $value = null, $format = true)
{
@@ -23531,13 +23334,11 @@ namespace Spatie\Html\Facades {
}
/**
- *
- *
* @param string|null $name
* @param string|null $value
* @param bool $format
- * @return \Spatie\Html\Elements\Input
- * @static
+ * @return \Spatie\Html\Elements\Input
+ * @static
*/
public static function datetime($name = '', $value = null, $format = true)
{
@@ -23546,15 +23347,13 @@ namespace Spatie\Html\Facades {
}
/**
- *
- *
* @param string|null $name
* @param string|null $value
* @param string|null $min
* @param string|null $max
* @param string|null $step
- * @return \Spatie\Html\Elements\Input
- * @static
+ * @return \Spatie\Html\Elements\Input
+ * @static
*/
public static function range($name = '', $value = null, $min = null, $max = null, $step = null)
{
@@ -23563,13 +23362,11 @@ namespace Spatie\Html\Facades {
}
/**
- *
- *
* @param string|null $name
* @param string|null $value
* @param bool $format
- * @return \Spatie\Html\Elements\Input
- * @static
+ * @return \Spatie\Html\Elements\Input
+ * @static
*/
public static function time($name = '', $value = null, $format = true)
{
@@ -23578,11 +23375,9 @@ namespace Spatie\Html\Facades {
}
/**
- *
- *
* @param string $tag
- * @return \Spatie\Html\Elements\Element
- * @static
+ * @return \Spatie\Html\Elements\Element
+ * @static
*/
public static function element($tag)
{
@@ -23591,13 +23386,11 @@ namespace Spatie\Html\Facades {
}
/**
- *
- *
* @param string|null $type
* @param string|null $name
* @param string|null $value
- * @return \Spatie\Html\Elements\Input
- * @static
+ * @return \Spatie\Html\Elements\Input
+ * @static
*/
public static function input($type = null, $name = null, $value = null)
{
@@ -23606,11 +23399,9 @@ namespace Spatie\Html\Facades {
}
/**
- *
- *
* @param \Spatie\Html\HtmlElement|string|null $legend
- * @return \Spatie\Html\Elements\Fieldset
- * @static
+ * @return \Spatie\Html\Elements\Fieldset
+ * @static
*/
public static function fieldset($legend = null)
{
@@ -23619,12 +23410,10 @@ namespace Spatie\Html\Facades {
}
/**
- *
- *
* @param string $method
* @param string|null $action
- * @return \Spatie\Html\Elements\Form
- * @static
+ * @return \Spatie\Html\Elements\Form
+ * @static
*/
public static function form($method = 'POST', $action = null)
{
@@ -23633,12 +23422,10 @@ namespace Spatie\Html\Facades {
}
/**
- *
- *
* @param string|null $name
* @param string|null $value
- * @return \Spatie\Html\Elements\Input
- * @static
+ * @return \Spatie\Html\Elements\Input
+ * @static
*/
public static function hidden($name = null, $value = null)
{
@@ -23647,12 +23434,10 @@ namespace Spatie\Html\Facades {
}
/**
- *
- *
* @param string|null $src
* @param string|null $alt
- * @return \Spatie\Html\Elements\Img
- * @static
+ * @return \Spatie\Html\Elements\Img
+ * @static
*/
public static function img($src = null, $alt = null)
{
@@ -23661,12 +23446,10 @@ namespace Spatie\Html\Facades {
}
/**
- *
- *
* @param \Spatie\Html\HtmlElement|iterable|string|null $contents
* @param string|null $for
- * @return \Spatie\Html\Elements\Label
- * @static
+ * @return \Spatie\Html\Elements\Label
+ * @static
*/
public static function label($contents = null, $for = null)
{
@@ -23675,11 +23458,9 @@ namespace Spatie\Html\Facades {
}
/**
- *
- *
* @param \Spatie\Html\HtmlElement|string|null $contents
- * @return \Spatie\Html\Elements\Legend
- * @static
+ * @return \Spatie\Html\Elements\Legend
+ * @static
*/
public static function legend($contents = null)
{
@@ -23688,12 +23469,10 @@ namespace Spatie\Html\Facades {
}
/**
- *
- *
* @param string $email
* @param string|null $text
- * @return \Spatie\Html\Elements\A
- * @static
+ * @return \Spatie\Html\Elements\A
+ * @static
*/
public static function mailto($email, $text = null)
{
@@ -23702,13 +23481,11 @@ namespace Spatie\Html\Facades {
}
/**
- *
- *
* @param string|null $name
* @param iterable $options
* @param string|iterable|null $value
- * @return \Spatie\Html\Elements\Select
- * @static
+ * @return \Spatie\Html\Elements\Select
+ * @static
*/
public static function multiselect($name = null, $options = [], $value = null)
{
@@ -23717,15 +23494,13 @@ namespace Spatie\Html\Facades {
}
/**
- *
- *
* @param string|null $name
* @param string|null $value
* @param string|null $min
* @param string|null $max
* @param string|null $step
- * @return \Spatie\Html\Elements\Input
- * @static
+ * @return \Spatie\Html\Elements\Input
+ * @static
*/
public static function number($name = null, $value = null, $min = null, $max = null, $step = null)
{
@@ -23734,13 +23509,11 @@ namespace Spatie\Html\Facades {
}
/**
- *
- *
* @param string|null $text
* @param string|null $value
* @param bool $selected
- * @return \Spatie\Html\Elements\Option
- * @static
+ * @return \Spatie\Html\Elements\Option
+ * @static
*/
public static function option($text = null, $value = null, $selected = false)
{
@@ -23749,11 +23522,9 @@ namespace Spatie\Html\Facades {
}
/**
- *
- *
* @param string|null $value
- * @return \Spatie\Html\Elements\Input
- * @static
+ * @return \Spatie\Html\Elements\Input
+ * @static
*/
public static function password($name = null)
{
@@ -23762,13 +23533,11 @@ namespace Spatie\Html\Facades {
}
/**
- *
- *
* @param string|null $name
* @param bool $checked
* @param string|null $value
- * @return \Spatie\Html\Elements\Input
- * @static
+ * @return \Spatie\Html\Elements\Input
+ * @static
*/
public static function radio($name = null, $checked = null, $value = null)
{
@@ -23777,13 +23546,11 @@ namespace Spatie\Html\Facades {
}
/**
- *
- *
* @param string|null $name
* @param iterable $options
* @param string|iterable|null $value
- * @return \Spatie\Html\Elements\Select
- * @static
+ * @return \Spatie\Html\Elements\Select
+ * @static
*/
public static function select($name = null, $options = [], $value = null)
{
@@ -23792,11 +23559,9 @@ namespace Spatie\Html\Facades {
}
/**
- *
- *
* @param \Spatie\Html\HtmlElement|string|null $contents
- * @return \Spatie\Html\Elements\Span
- * @static
+ * @return \Spatie\Html\Elements\Span
+ * @static
*/
public static function span($contents = null)
{
@@ -23805,11 +23570,9 @@ namespace Spatie\Html\Facades {
}
/**
- *
- *
* @param string|null $text
- * @return \Spatie\Html\Elements\Button
- * @static
+ * @return \Spatie\Html\Elements\Button
+ * @static
*/
public static function submit($text = null)
{
@@ -23818,11 +23581,9 @@ namespace Spatie\Html\Facades {
}
/**
- *
- *
* @param string|null $text
- * @return \Spatie\Html\Elements\Button
- * @static
+ * @return \Spatie\Html\Elements\Button
+ * @static
*/
public static function reset($text = null)
{
@@ -23831,12 +23592,10 @@ namespace Spatie\Html\Facades {
}
/**
- *
- *
* @param string $number
* @param string|null $text
- * @return \Spatie\Html\Elements\A
- * @static
+ * @return \Spatie\Html\Elements\A
+ * @static
*/
public static function tel($number, $text = null)
{
@@ -23845,12 +23604,10 @@ namespace Spatie\Html\Facades {
}
/**
- *
- *
* @param string|null $name
* @param string|null $value
- * @return \Spatie\Html\Elements\Input
- * @static
+ * @return \Spatie\Html\Elements\Input
+ * @static
*/
public static function text($name = null, $value = null)
{
@@ -23859,11 +23616,9 @@ namespace Spatie\Html\Facades {
}
/**
- *
- *
* @param string|null $name
- * @return \Spatie\Html\Elements\File
- * @static
+ * @return \Spatie\Html\Elements\File
+ * @static
*/
public static function file($name = null)
{
@@ -23872,12 +23627,10 @@ namespace Spatie\Html\Facades {
}
/**
- *
- *
* @param string|null $name
* @param string|null $value
- * @return \Spatie\Html\Elements\Textarea
- * @static
+ * @return \Spatie\Html\Elements\Textarea
+ * @static
*/
public static function textarea($name = null, $value = null)
{
@@ -23886,10 +23639,8 @@ namespace Spatie\Html\Facades {
}
/**
- *
- *
- * @return \Spatie\Html\Elements\Input
- * @static
+ * @return \Spatie\Html\Elements\Input
+ * @static
*/
public static function token()
{
@@ -23898,11 +23649,9 @@ namespace Spatie\Html\Facades {
}
/**
- *
- *
* @param \ArrayAccess|array $model
- * @return \Spatie\Html\Html
- * @static
+ * @return \Spatie\Html\Html
+ * @static
*/
public static function model($model)
{
@@ -23911,13 +23660,11 @@ namespace Spatie\Html\Facades {
}
/**
- *
- *
* @param \ArrayAccess|array $model
* @param string|null $method
* @param string|null $action
- * @return \Spatie\Html\Elements\Form
- * @static
+ * @return \Spatie\Html\Elements\Form
+ * @static
*/
public static function modelForm($model, $method = 'POST', $action = null)
{
@@ -23926,10 +23673,8 @@ namespace Spatie\Html\Facades {
}
/**
- *
- *
- * @return \Spatie\Html\Html
- * @static
+ * @return \Spatie\Html\Html
+ * @static
*/
public static function endModel()
{
@@ -23938,10 +23683,8 @@ namespace Spatie\Html\Facades {
}
/**
- *
- *
- * @return \Illuminate\Contracts\Support\Htmlable
- * @static
+ * @return \Illuminate\Contracts\Support\Htmlable
+ * @static
*/
public static function closeModelForm()
{
@@ -23955,8 +23698,8 @@ namespace Spatie\Html\Facades {
*
* @param string $name
* @param mixed $value
- * @return mixed
- * @static
+ * @return mixed
+ * @static
*/
public static function value($name, $default = null)
{
@@ -23970,8 +23713,8 @@ namespace Spatie\Html\Facades {
* @param string $name
* @param object|callable $macro
* @param-closure-this static $macro
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function macro($name, $macro)
{
@@ -23983,9 +23726,9 @@ namespace Spatie\Html\Facades {
*
* @param object $mixin
* @param bool $replace
- * @return void
+ * @return void
* @throws \ReflectionException
- * @static
+ * @static
*/
public static function mixin($mixin, $replace = true)
{
@@ -23996,8 +23739,8 @@ namespace Spatie\Html\Facades {
* Checks if macro is registered.
*
* @param string $name
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function hasMacro($name)
{
@@ -24007,8 +23750,8 @@ namespace Spatie\Html\Facades {
/**
* Flush the existing macros.
*
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function flushMacros()
{
@@ -24020,15 +23763,11 @@ namespace Spatie\Html\Facades {
namespace Spatie\LaravelIgnition\Facades {
/**
- *
- *
* @see \Spatie\FlareClient\Flare
*/
class Flare {
/**
- *
- *
- * @static
+ * @static
*/
public static function make($apiKey = null, $contextDetector = null)
{
@@ -24036,9 +23775,7 @@ namespace Spatie\LaravelIgnition\Facades {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function setApiToken($apiToken)
{
@@ -24047,9 +23784,7 @@ namespace Spatie\LaravelIgnition\Facades {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function apiTokenSet()
{
@@ -24058,9 +23793,7 @@ namespace Spatie\LaravelIgnition\Facades {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function setBaseUrl($baseUrl)
{
@@ -24069,9 +23802,7 @@ namespace Spatie\LaravelIgnition\Facades {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function setStage($stage)
{
@@ -24080,9 +23811,7 @@ namespace Spatie\LaravelIgnition\Facades {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function sendReportsImmediately()
{
@@ -24091,9 +23820,7 @@ namespace Spatie\LaravelIgnition\Facades {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function determineVersionUsing($determineVersionCallable)
{
@@ -24102,9 +23829,7 @@ namespace Spatie\LaravelIgnition\Facades {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function reportErrorLevels($reportErrorLevels)
{
@@ -24113,9 +23838,7 @@ namespace Spatie\LaravelIgnition\Facades {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function filterExceptionsUsing($filterExceptionsCallable)
{
@@ -24124,9 +23847,7 @@ namespace Spatie\LaravelIgnition\Facades {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function filterReportsUsing($filterReportsCallable)
{
@@ -24135,10 +23856,8 @@ namespace Spatie\LaravelIgnition\Facades {
}
/**
- *
- *
* @param array|ArgumentReducer>|\Spatie\Backtrace\Arguments\ArgumentReducers|null $argumentReducers
- * @static
+ * @static
*/
public static function argumentReducers($argumentReducers)
{
@@ -24147,9 +23866,7 @@ namespace Spatie\LaravelIgnition\Facades {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function withStackFrameArguments($withStackFrameArguments = true, $forcePHPIniSetting = false)
{
@@ -24158,10 +23875,8 @@ namespace Spatie\LaravelIgnition\Facades {
}
/**
- *
- *
* @param class-string $exceptionClass
- * @static
+ * @static
*/
public static function overrideGrouping($exceptionClass, $type = 'exception_message_and_class')
{
@@ -24170,9 +23885,7 @@ namespace Spatie\LaravelIgnition\Facades {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function version()
{
@@ -24181,10 +23894,8 @@ namespace Spatie\LaravelIgnition\Facades {
}
/**
- *
- *
- * @return array>
- * @static
+ * @return array>
+ * @static
*/
public static function getMiddleware()
{
@@ -24193,9 +23904,7 @@ namespace Spatie\LaravelIgnition\Facades {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function setContextProviderDetector($contextDetector)
{
@@ -24204,9 +23913,7 @@ namespace Spatie\LaravelIgnition\Facades {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function setContainer($container)
{
@@ -24215,9 +23922,7 @@ namespace Spatie\LaravelIgnition\Facades {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function registerFlareHandlers()
{
@@ -24226,9 +23931,7 @@ namespace Spatie\LaravelIgnition\Facades {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function registerExceptionHandler()
{
@@ -24237,9 +23940,7 @@ namespace Spatie\LaravelIgnition\Facades {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function registerErrorHandler($errorLevels = null)
{
@@ -24248,11 +23949,9 @@ namespace Spatie\LaravelIgnition\Facades {
}
/**
- *
- *
* @param \Spatie\FlareClient\FlareMiddleware\FlareMiddleware|array|class-string|callable $middleware
- * @return \Spatie\FlareClient\Flare
- * @static
+ * @return \Spatie\FlareClient\Flare
+ * @static
*/
public static function registerMiddleware($middleware)
{
@@ -24261,10 +23960,8 @@ namespace Spatie\LaravelIgnition\Facades {
}
/**
- *
- *
- * @return array>
- * @static
+ * @return array>
+ * @static
*/
public static function getMiddlewares()
{
@@ -24273,13 +23970,11 @@ namespace Spatie\LaravelIgnition\Facades {
}
/**
- *
- *
* @param string $name
* @param string $messageLevel
* @param array $metaData
- * @return \Spatie\FlareClient\Flare
- * @static
+ * @return \Spatie\FlareClient\Flare
+ * @static
*/
public static function glow($name, $messageLevel = 'info', $metaData = [])
{
@@ -24288,9 +23983,7 @@ namespace Spatie\LaravelIgnition\Facades {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function handleException($throwable)
{
@@ -24299,10 +23992,8 @@ namespace Spatie\LaravelIgnition\Facades {
}
/**
- *
- *
- * @return mixed
- * @static
+ * @return mixed
+ * @static
*/
public static function handleError($code, $message, $file = '', $line = 0)
{
@@ -24311,9 +24002,7 @@ namespace Spatie\LaravelIgnition\Facades {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function applicationPath($applicationPath)
{
@@ -24322,9 +24011,7 @@ namespace Spatie\LaravelIgnition\Facades {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function report($throwable, $callback = null, $report = null, $handled = null)
{
@@ -24333,9 +24020,7 @@ namespace Spatie\LaravelIgnition\Facades {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function reportHandled($throwable)
{
@@ -24344,9 +24029,7 @@ namespace Spatie\LaravelIgnition\Facades {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function reportMessage($message, $logLevel, $callback = null)
{
@@ -24355,9 +24038,7 @@ namespace Spatie\LaravelIgnition\Facades {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function sendTestReport($throwable)
{
@@ -24366,9 +24047,7 @@ namespace Spatie\LaravelIgnition\Facades {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function reset()
{
@@ -24377,9 +24056,7 @@ namespace Spatie\LaravelIgnition\Facades {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function anonymizeIp()
{
@@ -24388,11 +24065,9 @@ namespace Spatie\LaravelIgnition\Facades {
}
/**
- *
- *
* @param array $fieldNames
- * @return \Spatie\FlareClient\Flare
- * @static
+ * @return \Spatie\FlareClient\Flare
+ * @static
*/
public static function censorRequestBodyFields($fieldNames)
{
@@ -24401,9 +24076,7 @@ namespace Spatie\LaravelIgnition\Facades {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function createReport($throwable)
{
@@ -24412,9 +24085,7 @@ namespace Spatie\LaravelIgnition\Facades {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function createReportFromMessage($message, $logLevel)
{
@@ -24423,9 +24094,7 @@ namespace Spatie\LaravelIgnition\Facades {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function stage($stage)
{
@@ -24434,9 +24103,7 @@ namespace Spatie\LaravelIgnition\Facades {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function messageLevel($messageLevel)
{
@@ -24445,12 +24112,10 @@ namespace Spatie\LaravelIgnition\Facades {
}
/**
- *
- *
* @param string $groupName
* @param mixed $default
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function getGroup($groupName = 'context', $default = [])
{
@@ -24459,9 +24124,7 @@ namespace Spatie\LaravelIgnition\Facades {
}
/**
- *
- *
- * @static
+ * @static
*/
public static function context($key, $value)
{
@@ -24470,12 +24133,10 @@ namespace Spatie\LaravelIgnition\Facades {
}
/**
- *
- *
* @param string $groupName
* @param array $properties
- * @return \Spatie\FlareClient\Flare
- * @static
+ * @return \Spatie\FlareClient\Flare
+ * @static
*/
public static function group($groupName, $properties)
{
@@ -24488,16 +24149,14 @@ namespace Spatie\LaravelIgnition\Facades {
namespace Srmklive\PayPal\Facades {
/**
- *
- *
*/
class PayPal {
/**
* Get specific PayPal API provider object to use.
*
* @throws Exception
- * @return \Srmklive\PayPal\Services\PayPal
- * @static
+ * @return \Srmklive\PayPal\Services\PayPal
+ * @static
*/
public static function getProvider()
{
@@ -24508,8 +24167,8 @@ namespace Srmklive\PayPal\Facades {
* Set PayPal API Client to use.
*
* @throws \Exception
- * @return \Srmklive\PayPal\Services\PayPal
- * @static
+ * @return \Srmklive\PayPal\Services\PayPal
+ * @static
*/
public static function setProvider()
{
@@ -24521,8 +24180,6 @@ namespace Srmklive\PayPal\Facades {
namespace Illuminate\Support {
/**
- *
- *
* @template TKey of array-key
* @template-covariant TValue
* @implements \ArrayAccess
@@ -24530,10 +24187,8 @@ namespace Illuminate\Support {
*/
class Collection {
/**
- *
- *
* @see \Barryvdh\Debugbar\ServiceProvider::register()
- * @static
+ * @static
*/
public static function debug()
{
@@ -24541,14 +24196,12 @@ namespace Illuminate\Support {
}
/**
- *
- *
* @see \Maatwebsite\Excel\Mixins\DownloadCollectionMixin::downloadExcel()
* @param string $fileName
* @param string|null $writerType
* @param mixed $withHeadings
* @param array $responseHeaders
- * @static
+ * @static
*/
public static function downloadExcel($fileName, $writerType = null, $withHeadings = false, $responseHeaders = [])
{
@@ -24556,14 +24209,12 @@ namespace Illuminate\Support {
}
/**
- *
- *
* @see \Maatwebsite\Excel\Mixins\StoreCollectionMixin::storeExcel()
* @param string $filePath
* @param string|null $disk
* @param string|null $writerType
* @param mixed $withHeadings
- * @static
+ * @static
*/
public static function storeExcel($filePath, $disk = null, $writerType = null, $withHeadings = false)
{
@@ -24575,17 +24226,13 @@ namespace Illuminate\Support {
namespace Illuminate\Http {
/**
- *
- *
*/
- class Request {
+ class Request extends \Symfony\Component\HttpFoundation\Request {
/**
- *
- *
* @see \Illuminate\Foundation\Providers\FoundationServiceProvider::registerRequestValidation()
* @param array $rules
* @param mixed $params
- * @static
+ * @static
*/
public static function validate($rules, ...$params)
{
@@ -24593,13 +24240,11 @@ namespace Illuminate\Http {
}
/**
- *
- *
* @see \Illuminate\Foundation\Providers\FoundationServiceProvider::registerRequestValidation()
* @param string $errorBag
* @param array $rules
* @param mixed $params
- * @static
+ * @static
*/
public static function validateWithBag($errorBag, $rules, ...$params)
{
@@ -24607,11 +24252,9 @@ namespace Illuminate\Http {
}
/**
- *
- *
* @see \Illuminate\Foundation\Providers\FoundationServiceProvider::registerRequestSignatureValidation()
* @param mixed $absolute
- * @static
+ * @static
*/
public static function hasValidSignature($absolute = true)
{
@@ -24619,10 +24262,8 @@ namespace Illuminate\Http {
}
/**
- *
- *
* @see \Illuminate\Foundation\Providers\FoundationServiceProvider::registerRequestSignatureValidation()
- * @static
+ * @static
*/
public static function hasValidRelativeSignature()
{
@@ -24630,12 +24271,10 @@ namespace Illuminate\Http {
}
/**
- *
- *
* @see \Illuminate\Foundation\Providers\FoundationServiceProvider::registerRequestSignatureValidation()
* @param mixed $ignoreQuery
* @param mixed $absolute
- * @static
+ * @static
*/
public static function hasValidSignatureWhileIgnoring($ignoreQuery = [], $absolute = true)
{
@@ -24643,11 +24282,9 @@ namespace Illuminate\Http {
}
/**
- *
- *
* @see \Illuminate\Foundation\Providers\FoundationServiceProvider::registerRequestSignatureValidation()
* @param mixed $ignoreQuery
- * @static
+ * @static
*/
public static function hasValidRelativeSignatureWhileIgnoring($ignoreQuery = [])
{
@@ -24659,17 +24296,13 @@ namespace Illuminate\Http {
namespace Illuminate\Routing {
/**
- *
- *
* @mixin \Illuminate\Routing\RouteRegistrar
*/
class Router {
/**
- *
- *
* @see \Laravel\Ui\AuthRouteMethods::auth()
* @param mixed $options
- * @static
+ * @static
*/
public static function auth($options = [])
{
@@ -24677,10 +24310,8 @@ namespace Illuminate\Routing {
}
/**
- *
- *
* @see \Laravel\Ui\AuthRouteMethods::resetPassword()
- * @static
+ * @static
*/
public static function resetPassword()
{
@@ -24688,10 +24319,8 @@ namespace Illuminate\Routing {
}
/**
- *
- *
* @see \Laravel\Ui\AuthRouteMethods::confirmPassword()
- * @static
+ * @static
*/
public static function confirmPassword()
{
@@ -24699,10 +24328,8 @@ namespace Illuminate\Routing {
}
/**
- *
- *
* @see \Laravel\Ui\AuthRouteMethods::emailVerification()
- * @static
+ * @static
*/
public static function emailVerification()
{
@@ -24714,54 +24341,11 @@ namespace Illuminate\Routing {
namespace Illuminate\Database\Eloquent {
/**
- *
- *
* @template TKey of array-key
* @template TModel of \Illuminate\Database\Eloquent\Model
* @extends \Illuminate\Support\Collection
*/
- class Collection {
- /**
- *
- *
- * @see \Barryvdh\Debugbar\ServiceProvider::register()
- * @static
- */
- public static function debug()
- {
- return \Illuminate\Database\Eloquent\Collection::debug();
- }
-
- /**
- *
- *
- * @see \Maatwebsite\Excel\Mixins\DownloadCollectionMixin::downloadExcel()
- * @param string $fileName
- * @param string|null $writerType
- * @param mixed $withHeadings
- * @param array $responseHeaders
- * @static
- */
- public static function downloadExcel($fileName, $writerType = null, $withHeadings = false, $responseHeaders = [])
- {
- return \Illuminate\Database\Eloquent\Collection::downloadExcel($fileName, $writerType, $withHeadings, $responseHeaders);
- }
-
- /**
- *
- *
- * @see \Maatwebsite\Excel\Mixins\StoreCollectionMixin::storeExcel()
- * @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\Collection::storeExcel($filePath, $disk, $writerType, $withHeadings);
- }
-
+ class Collection extends \Illuminate\Support\Collection {
}
}
@@ -24781,8 +24365,6 @@ namespace {
class DB extends \Illuminate\Support\Facades\DB {}
/**
- *
- *
* @template TCollection of static
* @template TModel of static
* @template TValue of static
@@ -24792,8 +24374,8 @@ namespace {
* Create and return an un-saved model instance.
*
* @param array $attributes
- * @return TModel
- * @static
+ * @return TModel
+ * @static
*/
public static function make($attributes = [])
{
@@ -24806,8 +24388,8 @@ namespace {
*
* @param string $identifier
* @param \Illuminate\Database\Eloquent\Scope|\Closure $scope
- * @return \Illuminate\Database\Eloquent\Builder
- * @static
+ * @return \Illuminate\Database\Eloquent\Builder
+ * @static
*/
public static function withGlobalScope($identifier, $scope)
{
@@ -24819,8 +24401,8 @@ namespace {
* Remove a registered global scope.
*
* @param \Illuminate\Database\Eloquent\Scope|string $scope
- * @return \Illuminate\Database\Eloquent\Builder
- * @static
+ * @return \Illuminate\Database\Eloquent\Builder
+ * @static
*/
public static function withoutGlobalScope($scope)
{
@@ -24832,8 +24414,8 @@ namespace {
* Remove all or passed registered global scopes.
*
* @param array|null $scopes
- * @return \Illuminate\Database\Eloquent\Builder
- * @static
+ * @return \Illuminate\Database\Eloquent\Builder
+ * @static
*/
public static function withoutGlobalScopes($scopes = null)
{
@@ -24844,8 +24426,8 @@ namespace {
/**
* Get an array of global scopes that were removed from the query.
*
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function removedScopes()
{
@@ -24857,8 +24439,8 @@ namespace {
* Add a where clause on the primary key to the query.
*
* @param mixed $id
- * @return \Illuminate\Database\Eloquent\Builder
- * @static
+ * @return \Illuminate\Database\Eloquent\Builder
+ * @static
*/
public static function whereKey($id)
{
@@ -24870,8 +24452,8 @@ namespace {
* Add a where clause on the primary key to the query.
*
* @param mixed $id
- * @return \Illuminate\Database\Eloquent\Builder
- * @static
+ * @return \Illuminate\Database\Eloquent\Builder
+ * @static
*/
public static function whereKeyNot($id)
{
@@ -24886,8 +24468,8 @@ namespace {
* @param mixed $operator
* @param mixed $value
* @param string $boolean
- * @return \Illuminate\Database\Eloquent\Builder
- * @static
+ * @return \Illuminate\Database\Eloquent\Builder
+ * @static
*/
public static function where($column, $operator = null, $value = null, $boolean = 'and')
{
@@ -24902,8 +24484,8 @@ namespace {
* @param mixed $operator
* @param mixed $value
* @param string $boolean
- * @return TModel|null
- * @static
+ * @return TModel|null
+ * @static
*/
public static function firstWhere($column, $operator = null, $value = null, $boolean = 'and')
{
@@ -24917,8 +24499,8 @@ namespace {
* @param (\Closure(static): mixed)|array|string|\Illuminate\Contracts\Database\Query\Expression $column
* @param mixed $operator
* @param mixed $value
- * @return \Illuminate\Database\Eloquent\Builder
- * @static
+ * @return \Illuminate\Database\Eloquent\Builder
+ * @static
*/
public static function orWhere($column, $operator = null, $value = null)
{
@@ -24933,8 +24515,8 @@ namespace {
* @param mixed $operator
* @param mixed $value
* @param string $boolean
- * @return \Illuminate\Database\Eloquent\Builder
- * @static
+ * @return \Illuminate\Database\Eloquent\Builder
+ * @static
*/
public static function whereNot($column, $operator = null, $value = null, $boolean = 'and')
{
@@ -24948,8 +24530,8 @@ namespace {
* @param (\Closure(static): mixed)|array|string|\Illuminate\Contracts\Database\Query\Expression $column
* @param mixed $operator
* @param mixed $value
- * @return \Illuminate\Database\Eloquent\Builder
- * @static
+ * @return \Illuminate\Database\Eloquent\Builder
+ * @static
*/
public static function orWhereNot($column, $operator = null, $value = null)
{
@@ -24961,8 +24543,8 @@ namespace {
* Add an "order by" clause for a timestamp to the query.
*
* @param string|\Illuminate\Contracts\Database\Query\Expression $column
- * @return \Illuminate\Database\Eloquent\Builder
- * @static
+ * @return \Illuminate\Database\Eloquent\Builder
+ * @static
*/
public static function latest($column = null)
{
@@ -24974,8 +24556,8 @@ namespace {
* Add an "order by" clause for a timestamp to the query.
*
* @param string|\Illuminate\Contracts\Database\Query\Expression $column
- * @return \Illuminate\Database\Eloquent\Builder
- * @static
+ * @return \Illuminate\Database\Eloquent\Builder
+ * @static
*/
public static function oldest($column = null)
{
@@ -24987,8 +24569,8 @@ namespace {
* Create a collection of models from plain arrays.
*
* @param array $items
- * @return \Illuminate\Database\Eloquent\Collection
- * @static
+ * @return \Illuminate\Database\Eloquent\Collection
+ * @static
*/
public static function hydrate($items)
{
@@ -25001,8 +24583,8 @@ namespace {
*
* @param string $query
* @param array $bindings
- * @return \Illuminate\Database\Eloquent\Collection
- * @static
+ * @return \Illuminate\Database\Eloquent\Collection
+ * @static
*/
public static function fromQuery($query, $bindings = [])
{
@@ -25016,7 +24598,7 @@ namespace {
* @param mixed $id
* @param array|string $columns
* @return ($id is (\Illuminate\Contracts\Support\Arrayable|array) ? \Illuminate\Database\Eloquent\Collection : TModel|null)
- * @static
+ * @static
*/
public static function find($id, $columns = [])
{
@@ -25029,10 +24611,10 @@ namespace {
*
* @param mixed $id
* @param array|string $columns
- * @return TModel
+ * @return TModel
* @throws \Illuminate\Database\Eloquent\ModelNotFoundException
* @throws \Illuminate\Database\MultipleRecordsFoundException
- * @static
+ * @static
*/
public static function findSole($id, $columns = [])
{
@@ -25045,8 +24627,8 @@ namespace {
*
* @param \Illuminate\Contracts\Support\Arrayable|array $ids
* @param array|string $columns
- * @return \Illuminate\Database\Eloquent\Collection
- * @static
+ * @return \Illuminate\Database\Eloquent\Collection
+ * @static
*/
public static function findMany($ids, $columns = [])
{
@@ -25061,7 +24643,7 @@ namespace {
* @param array|string $columns
* @return ($id is (\Illuminate\Contracts\Support\Arrayable|array) ? \Illuminate\Database\Eloquent\Collection : TModel)
* @throws \Illuminate\Database\Eloquent\ModelNotFoundException
- * @static
+ * @static
*/
public static function findOrFail($id, $columns = [])
{
@@ -25075,7 +24657,7 @@ namespace {
* @param mixed $id
* @param array|string $columns
* @return ($id is (\Illuminate\Contracts\Support\Arrayable|array) ? \Illuminate\Database\Eloquent\Collection : TModel)
- * @static
+ * @static
*/
public static function findOrNew($id, $columns = [])
{
@@ -25094,7 +24676,7 @@ namespace {
* ? \Illuminate\Database\Eloquent\Collection
* : TModel|TValue
* )
- * @static
+ * @static
*/
public static function findOr($id, $columns = [], $callback = null)
{
@@ -25107,8 +24689,8 @@ namespace {
*
* @param array $attributes
* @param array $values
- * @return TModel
- * @static
+ * @return TModel
+ * @static
*/
public static function firstOrNew($attributes = [], $values = [])
{
@@ -25121,8 +24703,8 @@ namespace {
*
* @param array $attributes
* @param array $values
- * @return TModel
- * @static
+ * @return TModel
+ * @static
*/
public static function firstOrCreate($attributes = [], $values = [])
{
@@ -25135,8 +24717,8 @@ namespace {
*
* @param array $attributes
* @param array $values
- * @return TModel
- * @static
+ * @return TModel
+ * @static
*/
public static function createOrFirst($attributes = [], $values = [])
{
@@ -25149,8 +24731,8 @@ namespace {
*
* @param array $attributes
* @param array $values
- * @return TModel
- * @static
+ * @return TModel
+ * @static
*/
public static function updateOrCreate($attributes, $values = [])
{
@@ -25166,8 +24748,8 @@ namespace {
* @param int|float $default
* @param int|float $step
* @param array $extra
- * @return TModel
- * @static
+ * @return TModel
+ * @static
*/
public static function incrementOrCreate($attributes, $column = 'count', $default = 1, $step = 1, $extra = [])
{
@@ -25179,9 +24761,9 @@ namespace {
* Execute the query and get the first result or throw an exception.
*
* @param array|string $columns
- * @return TModel
+ * @return TModel
* @throws \Illuminate\Database\Eloquent\ModelNotFoundException
- * @static
+ * @static
*/
public static function firstOrFail($columns = [])
{
@@ -25195,8 +24777,8 @@ namespace {
* @template TValue
* @param (\Closure(): TValue)|list $columns
* @param (\Closure(): TValue)|null $callback
- * @return TModel|TValue
- * @static
+ * @return TModel|TValue
+ * @static
*/
public static function firstOr($columns = [], $callback = null)
{
@@ -25208,10 +24790,10 @@ namespace {
* Execute the query and get the first result if it's the sole matching record.
*
* @param array|string $columns
- * @return TModel
+ * @return TModel
* @throws \Illuminate\Database\Eloquent\ModelNotFoundException
* @throws \Illuminate\Database\MultipleRecordsFoundException
- * @static
+ * @static
*/
public static function sole($columns = [])
{
@@ -25223,8 +24805,8 @@ namespace {
* Get a single column's value from the first result of a query.
*
* @param string|\Illuminate\Contracts\Database\Query\Expression $column
- * @return mixed
- * @static
+ * @return mixed
+ * @static
*/
public static function value($column)
{
@@ -25236,10 +24818,10 @@ namespace {
* Get a single column's value from the first result of a query if it's the sole matching record.
*
* @param string|\Illuminate\Contracts\Database\Query\Expression $column
- * @return mixed
+ * @return mixed
* @throws \Illuminate\Database\Eloquent\ModelNotFoundException
* @throws \Illuminate\Database\MultipleRecordsFoundException
- * @static
+ * @static
*/
public static function soleValue($column)
{
@@ -25251,9 +24833,9 @@ namespace {
* Get a single column's value from the first result of the query or throw an exception.
*
* @param string|\Illuminate\Contracts\Database\Query\Expression $column
- * @return mixed
+ * @return mixed
* @throws \Illuminate\Database\Eloquent\ModelNotFoundException
- * @static
+ * @static
*/
public static function valueOrFail($column)
{
@@ -25265,8 +24847,8 @@ namespace {
* Execute the query as a "select" statement.
*
* @param array|string $columns
- * @return \Illuminate\Database\Eloquent\Collection
- * @static
+ * @return \Illuminate\Database\Eloquent\Collection
+ * @static
*/
public static function get($columns = [])
{
@@ -25278,8 +24860,8 @@ namespace {
* Get the hydrated models without eager loading.
*
* @param array|string $columns
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function getModels($columns = [])
{
@@ -25291,8 +24873,8 @@ namespace {
* Eager load the relationships for the models.
*
* @param array $models
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function eagerLoadRelations($models)
{
@@ -25304,8 +24886,8 @@ namespace {
* Register a closure to be invoked after the query is executed.
*
* @param \Closure $callback
- * @return \Illuminate\Database\Eloquent\Builder
- * @static
+ * @return \Illuminate\Database\Eloquent\Builder
+ * @static
*/
public static function afterQuery($callback)
{
@@ -25317,8 +24899,8 @@ namespace {
* Invoke the "after query" modification callbacks.
*
* @param mixed $result
- * @return mixed
- * @static
+ * @return mixed
+ * @static
*/
public static function applyAfterQueryCallbacks($result)
{
@@ -25329,8 +24911,8 @@ namespace {
/**
* Get a lazy collection for the given query.
*
- * @return \Illuminate\Support\LazyCollection
- * @static
+ * @return \Illuminate\Support\LazyCollection
+ * @static
*/
public static function cursor()
{
@@ -25343,8 +24925,8 @@ namespace {
*
* @param string|\Illuminate\Contracts\Database\Query\Expression $column
* @param string|null $key
- * @return \Illuminate\Support\Collection
- * @static
+ * @return \Illuminate\Support\Collection
+ * @static
*/
public static function pluck($column, $key = null)
{
@@ -25360,9 +24942,9 @@ namespace {
* @param string $pageName
* @param int|null $page
* @param \Closure|int|null $total
- * @return \Illuminate\Pagination\LengthAwarePaginator
+ * @return \Illuminate\Pagination\LengthAwarePaginator
* @throws \InvalidArgumentException
- * @static
+ * @static
*/
public static function paginate($perPage = null, $columns = [], $pageName = 'page', $page = null, $total = null)
{
@@ -25377,8 +24959,8 @@ namespace {
* @param array|string $columns
* @param string $pageName
* @param int|null $page
- * @return \Illuminate\Contracts\Pagination\Paginator
- * @static
+ * @return \Illuminate\Contracts\Pagination\Paginator
+ * @static
*/
public static function simplePaginate($perPage = null, $columns = [], $pageName = 'page', $page = null)
{
@@ -25393,8 +24975,8 @@ namespace {
* @param array|string $columns
* @param string $cursorName
* @param \Illuminate\Pagination\Cursor|string|null $cursor
- * @return \Illuminate\Contracts\Pagination\CursorPaginator
- * @static
+ * @return \Illuminate\Contracts\Pagination\CursorPaginator
+ * @static
*/
public static function cursorPaginate($perPage = null, $columns = [], $cursorName = 'cursor', $cursor = null)
{
@@ -25406,8 +24988,8 @@ namespace {
* Save a new model and return the instance.
*
* @param array $attributes
- * @return TModel
- * @static
+ * @return TModel
+ * @static
*/
public static function create($attributes = [])
{
@@ -25419,8 +25001,8 @@ namespace {
* Save a new model and return the instance without raising model events.
*
* @param array $attributes
- * @return TModel
- * @static
+ * @return TModel
+ * @static
*/
public static function createQuietly($attributes = [])
{
@@ -25432,8 +25014,8 @@ namespace {
* Save a new model and return the instance. Allow mass-assignment.
*
* @param array $attributes
- * @return TModel
- * @static
+ * @return TModel
+ * @static
*/
public static function forceCreate($attributes)
{
@@ -25445,8 +25027,8 @@ namespace {
* Save a new model instance with mass assignment without raising model events.
*
* @param array $attributes
- * @return TModel
- * @static
+ * @return TModel
+ * @static
*/
public static function forceCreateQuietly($attributes = [])
{
@@ -25460,8 +25042,8 @@ namespace {
* @param array $values
* @param array|string $uniqueBy
* @param array|null $update
- * @return int
- * @static
+ * @return int
+ * @static
*/
public static function upsert($values, $uniqueBy, $update = null)
{
@@ -25473,8 +25055,8 @@ namespace {
* Register a replacement for the default delete function.
*
* @param \Closure $callback
- * @return void
- * @static
+ * @return void
+ * @static
*/
public static function onDelete($callback)
{
@@ -25486,8 +25068,8 @@ namespace {
* Call the given local model scopes.
*
* @param array|string $scopes
- * @return static|mixed
- * @static
+ * @return static|mixed
+ * @static
*/
public static function scopes($scopes)
{
@@ -25498,8 +25080,8 @@ namespace {
/**
* Apply the scopes to the Eloquent builder instance and return it.
*
- * @return static
- * @static
+ * @return static
+ * @static
*/
public static function applyScopes()
{
@@ -25511,8 +25093,8 @@ namespace {
* Prevent the specified relations from being eager loaded.
*
* @param mixed $relations
- * @return \Illuminate\Database\Eloquent\Builder
- * @static
+ * @return \Illuminate\Database\Eloquent\Builder
+ * @static
*/
public static function without($relations)
{
@@ -25524,8 +25106,8 @@ namespace {
* Set the relationships that should be eager loaded while removing any previously added eager loading specifications.
*
* @param array): mixed)|string>|string $relations
- * @return \Illuminate\Database\Eloquent\Builder
- * @static
+ * @return \Illuminate\Database\Eloquent\Builder
+ * @static
*/
public static function withOnly($relations)
{
@@ -25537,8 +25119,8 @@ namespace {
* Create a new instance of the model being queried.
*
* @param array $attributes
- * @return TModel
- * @static
+ * @return TModel
+ * @static
*/
public static function newModelInstance($attributes = [])
{
@@ -25548,13 +25130,13 @@ namespace {
/**
* Specify attributes that should be added to any new models created by this builder.
- *
+ *
* The given key / value pairs will also be added as where conditions to the query.
*
* @param \Illuminate\Contracts\Database\Query\Expression|array|string $attributes
* @param mixed $value
- * @return \Illuminate\Database\Eloquent\Builder
- * @static
+ * @return \Illuminate\Database\Eloquent\Builder
+ * @static
*/
public static function withAttributes($attributes, $value = null)
{
@@ -25566,8 +25148,8 @@ namespace {
* Apply query-time casts to the model instance.
*
* @param array $casts
- * @return \Illuminate\Database\Eloquent\Builder
- * @static
+ * @return \Illuminate\Database\Eloquent\Builder
+ * @static
*/
public static function withCasts($casts)
{
@@ -25580,8 +25162,8 @@ namespace {
*
* @template TModelValue
* @param \Closure(): TModelValue $scope
- * @return TModelValue
- * @static
+ * @return TModelValue
+ * @static
*/
public static function withSavepointIfNeeded($scope)
{
@@ -25592,8 +25174,8 @@ namespace {
/**
* Get the underlying query builder instance.
*
- * @return \Illuminate\Database\Query\Builder
- * @static
+ * @return \Illuminate\Database\Query\Builder
+ * @static
*/
public static function getQuery()
{
@@ -25605,8 +25187,8 @@ namespace {
* Set the underlying query builder instance.
*
* @param \Illuminate\Database\Query\Builder $query
- * @return \Illuminate\Database\Eloquent\Builder
- * @static
+ * @return \Illuminate\Database\Eloquent\Builder
+ * @static
*/
public static function setQuery($query)
{
@@ -25617,8 +25199,8 @@ namespace {
/**
* Get a base query builder instance.
*
- * @return \Illuminate\Database\Query\Builder
- * @static
+ * @return \Illuminate\Database\Query\Builder
+ * @static
*/
public static function toBase()
{
@@ -25629,8 +25211,8 @@ namespace {
/**
* Get the relationships being eagerly loaded.
*
- * @return array
- * @static
+ * @return array
+ * @static
*/
public static function getEagerLoads()
{
@@ -25642,8 +25224,8 @@ namespace {
* Set the relationships being eagerly loaded.
*
* @param array $eagerLoad
- * @return \Illuminate\Database\Eloquent\Builder
- * @static
+ * @return \Illuminate\Database\Eloquent\Builder
+ * @static
*/
public static function setEagerLoads($eagerLoad)
{
@@ -25655,8 +25237,8 @@ namespace {
* Indicate that the given relationships should not be eagerly loaded.
*
* @param array $relations
- * @return \Illuminate\Database\Eloquent\Builder
- * @static
+ * @return \Illuminate\Database\Eloquent\Builder
+ * @static
*/
public static function withoutEagerLoad($relations)
{
@@ -25667,8 +25249,8 @@ namespace {
/**
* Flush the relationships being eagerly loaded.
*
- * @return \Illuminate\Database\Eloquent\Builder
- * @static
+ * @return \Illuminate\Database\Eloquent\Builder
+ * @static
*/
public static function withoutEagerLoads()
{
@@ -25679,8 +25261,8 @@ namespace {
/**
* Get the model instance being queried.
*
- * @return TModel
- * @static
+ * @return TModel
+ * @static
*/
public static function getModel()
{
@@ -25693,8 +25275,8 @@ namespace {
*
* @template TModelNew of \Illuminate\Database\Eloquent\Model
* @param TModelNew $model
- * @return static
- * @static
+ * @return static
+ * @static
*/
public static function setModel($model)
{
@@ -25706,8 +25288,8 @@ namespace {
* Get the given macro by name.
*
* @param string $name
- * @return \Closure
- * @static
+ * @return \Closure
+ * @static
*/
public static function getMacro($name)
{
@@ -25719,8 +25301,8 @@ namespace {
* Checks if a macro is registered.
*
* @param string $name
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function hasMacro($name)
{
@@ -25732,8 +25314,8 @@ namespace {
* Get the given global macro by name.
*
* @param string $name
- * @return \Closure
- * @static
+ * @return \Closure
+ * @static
*/
public static function getGlobalMacro($name)
{
@@ -25744,8 +25326,8 @@ namespace {
* Checks if a global macro is registered.
*
* @param string $name
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function hasGlobalMacro($name)
{
@@ -25755,8 +25337,8 @@ namespace {
/**
* Clone the Eloquent query builder.
*
- * @return static
- * @static
+ * @return static
+ * @static
*/
public static function clone()
{
@@ -25768,8 +25350,8 @@ namespace {
* Register a closure to be invoked on a clone.
*
* @param \Closure $callback
- * @return \Illuminate\Database\Eloquent\Builder
- * @static
+ * @return \Illuminate\Database\Eloquent\Builder
+ * @static
*/
public static function onClone($callback)
{
@@ -25782,8 +25364,8 @@ namespace {
*
* @param int $count
* @param callable(\Illuminate\Support\Collection, int): mixed $callback
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function chunk($count, $callback)
{
@@ -25797,8 +25379,8 @@ namespace {
* @template TReturn
* @param callable(TValue): TReturn $callback
* @param int $count
- * @return \Illuminate\Support\Collection
- * @static
+ * @return \Illuminate\Support\Collection
+ * @static
*/
public static function chunkMap($callback, $count = 1000)
{
@@ -25811,9 +25393,9 @@ namespace {
*
* @param callable(TValue, int): mixed $callback
* @param int $count
- * @return bool
+ * @return bool
* @throws \RuntimeException
- * @static
+ * @static
*/
public static function each($callback, $count = 1000)
{
@@ -25828,8 +25410,8 @@ namespace {
* @param callable(\Illuminate\Support\Collection, int): mixed $callback
* @param string|null $column
* @param string|null $alias
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function chunkById($count, $callback, $column = null, $alias = null)
{
@@ -25844,8 +25426,8 @@ namespace {
* @param callable(\Illuminate\Support\Collection, int): mixed $callback
* @param string|null $column
* @param string|null $alias
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function chunkByIdDesc($count, $callback, $column = null, $alias = null)
{
@@ -25861,9 +25443,9 @@ namespace {
* @param string|null $column
* @param string|null $alias
* @param bool $descending
- * @return bool
+ * @return bool
* @throws \RuntimeException
- * @static
+ * @static
*/
public static function orderedChunkById($count, $callback, $column = null, $alias = null, $descending = false)
{
@@ -25878,8 +25460,8 @@ namespace {
* @param int $count
* @param string|null $column
* @param string|null $alias
- * @return bool
- * @static
+ * @return bool
+ * @static
*/
public static function eachById($callback, $count = 1000, $column = null, $alias = null)
{
@@ -25891,9 +25473,9 @@ namespace {
* Query lazily, by chunks of the given size.
*
* @param int $chunkSize
- * @return \Illuminate\Support\LazyCollection
+ * @return \Illuminate\Support\LazyCollection
* @throws \InvalidArgumentException
- * @static
+ * @static
*/
public static function lazy($chunkSize = 1000)
{
@@ -25907,9 +25489,9 @@ namespace {
* @param int $chunkSize
* @param string|null $column
* @param string|null $alias
- * @return \Illuminate\Support\LazyCollection
+ * @return \Illuminate\Support\LazyCollection
* @throws \InvalidArgumentException
- * @static
+ * @static
*/
public static function lazyById($chunkSize = 1000, $column = null, $alias = null)
{
@@ -25923,9 +25505,9 @@ namespace {
* @param int $chunkSize
* @param string|null $column
* @param string|null $alias
- * @return \Illuminate\Support\LazyCollection
+ * @return \Illuminate\Support\LazyCollection
* @throws \InvalidArgumentException
- * @static
+ * @static
*/
public static function lazyByIdDesc($chunkSize = 1000, $column = null, $alias = null)
{
@@ -25937,8 +25519,8 @@ namespace {
* Execute the query and get the first result.
*
* @param array|string $columns
- * @return TValue|null
- * @static
+ * @return TValue|null
+ * @static
*/
public static function first($columns = [])
{
@@ -25950,10 +25532,10 @@ namespace {
* Execute the query and get the first result if it's the sole matching record.
*
* @param array|string $columns
- * @return TValue
+ * @return TValue
* @throws \Illuminate\Database\RecordsNotFoundException
* @throws \Illuminate\Database\MultipleRecordsFoundException
- * @static
+ * @static
*/
public static function baseSole($columns = [])
{
@@ -25965,8 +25547,8 @@ namespace {
* Pass the query to a given callback.
*
* @param callable($this): mixed $callback
- * @return \Illuminate\Database\Eloquent\Builder
- * @static
+ * @return \Illuminate\Database\Eloquent\Builder
+ * @static
*/
public static function tap($callback)
{
@@ -25982,8 +25564,8 @@ namespace {
* @param (\Closure($this): TWhenParameter)|TWhenParameter|null $value
* @param (callable($this, TWhenParameter): TWhenReturnType)|null $callback
* @param (callable($this, TWhenParameter): TWhenReturnType)|null $default
- * @return $this|TWhenReturnType
- * @static
+ * @return $this|TWhenReturnType
+ * @static
*/
public static function when($value = null, $callback = null, $default = null)
{
@@ -25999,8 +25581,8 @@ namespace {
* @param (\Closure($this): TUnlessParameter)|TUnlessParameter|null $value
* @param (callable($this, TUnlessParameter): TUnlessReturnType)|null $callback
* @param (callable($this, TUnlessParameter): TUnlessReturnType)|null $default
- * @return $this|TUnlessReturnType
- * @static
+ * @return $this|TUnlessReturnType
+ * @static
*/
public static function unless($value = null, $callback = null, $default = null)
{
@@ -26017,9 +25599,9 @@ namespace {
* @param int $count
* @param string $boolean
* @param (\Closure(\Illuminate\Database\Eloquent\Builder): mixed)|null $callback
- * @return \Illuminate\Database\Eloquent\Builder
+ * @return \Illuminate\Database\Eloquent\Builder
* @throws \RuntimeException
- * @static
+ * @static
*/
public static function has($relation, $operator = '>=', $count = 1, $boolean = 'and', $callback = null)
{
@@ -26033,8 +25615,8 @@ namespace {
* @param \Illuminate\Database\Eloquent\Relations\Relation<*, *, *>|string $relation
* @param string $operator
* @param int $count
- * @return \Illuminate\Database\Eloquent\Builder
- * @static
+ * @return \Illuminate\Database\Eloquent\Builder
+ * @static
*/
public static function orHas($relation, $operator = '>=', $count = 1)
{
@@ -26049,8 +25631,8 @@ namespace {
* @param \Illuminate\Database\Eloquent\Relations\Relation|string $relation
* @param string $boolean
* @param (\Closure(\Illuminate\Database\Eloquent\Builder): mixed)|null $callback
- * @return \Illuminate\Database\Eloquent\Builder
- * @static
+ * @return \Illuminate\Database\Eloquent\Builder
+ * @static
*/
public static function doesntHave($relation, $boolean = 'and', $callback = null)
{
@@ -26062,8 +25644,8 @@ namespace {
* Add a relationship count / exists condition to the query with an "or".
*
* @param \Illuminate\Database\Eloquent\Relations\Relation<*, *, *>|string $relation
- * @return \Illuminate\Database\Eloquent\Builder
- * @static
+ * @return \Illuminate\Database\Eloquent\Builder
+ * @static
*/
public static function orDoesntHave($relation)
{
@@ -26079,8 +25661,8 @@ namespace {
* @param (\Closure(\Illuminate\Database\Eloquent\Builder): mixed)|null $callback
* @param string $operator
* @param int $count
- * @return \Illuminate\Database\Eloquent\Builder
- * @static
+ * @return \Illuminate\Database\Eloquent\Builder
+ * @static
*/
public static function whereHas($relation, $callback = null, $operator = '>=', $count = 1)
{
@@ -26090,15 +25672,15 @@ namespace {
/**
* Add a relationship count / exists condition to the query with where clauses.
- *
+ *
* Also load the relationship with the same condition.
*
* @param string $relation
* @param (\Closure(\Illuminate\Database\Eloquent\Builder<*>|\Illuminate\Database\Eloquent\Relations\Relation<*, *, *>): mixed)|null $callback
* @param string $operator
* @param int $count
- * @return \Illuminate\Database\Eloquent\Builder
- * @static
+ * @return \Illuminate\Database\Eloquent\Builder
+ * @static
*/
public static function withWhereHas($relation, $callback = null, $operator = '>=', $count = 1)
{
@@ -26114,8 +25696,8 @@ namespace {
* @param (\Closure(\Illuminate\Database\Eloquent\Builder): mixed)|null $callback
* @param string $operator
* @param int $count
- * @return \Illuminate\Database\Eloquent\Builder
- * @static
+ * @return \Illuminate\Database\Eloquent\Builder
+ * @static
*/
public static function orWhereHas($relation, $callback = null, $operator = '>=', $count = 1)
{
@@ -26129,8 +25711,8 @@ namespace {
* @template TRelatedModel of \Illuminate\Database\Eloquent\Model
* @param \Illuminate\Database\Eloquent\Relations\Relation|string $relation
* @param (\Closure(\Illuminate\Database\Eloquent\Builder): mixed)|null $callback
- * @return \Illuminate\Database\Eloquent\Builder
- * @static
+ * @return \Illuminate\Database\Eloquent\Builder
+ * @static
*/
public static function whereDoesntHave($relation, $callback = null)
{
@@ -26144,8 +25726,8 @@ namespace {
* @template TRelatedModel of \Illuminate\Database\Eloquent\Model
* @param \Illuminate\Database\Eloquent\Relations\Relation|string $relation
* @param (\Closure(\Illuminate\Database\Eloquent\Builder): mixed)|null $callback
- * @return \Illuminate\Database\Eloquent\Builder
- * @static
+ * @return \Illuminate\Database\Eloquent\Builder
+ * @static
*/
public static function orWhereDoesntHave($relation, $callback = null)
{
@@ -26163,8 +25745,8 @@ namespace {
* @param int $count
* @param string $boolean
* @param (\Closure(\Illuminate\Database\Eloquent\Builder, string): mixed)|null $callback
- * @return \Illuminate\Database\Eloquent\Builder
- * @static
+ * @return \Illuminate\Database\Eloquent\Builder
+ * @static
*/
public static function hasMorph($relation, $types, $operator = '>=', $count = 1, $boolean = 'and', $callback = null)
{
@@ -26179,8 +25761,8 @@ namespace {
* @param string|array $types
* @param string $operator
* @param int $count
- * @return \Illuminate\Database\Eloquent\Builder
- * @static
+ * @return \Illuminate\Database\Eloquent\Builder
+ * @static
*/
public static function orHasMorph($relation, $types, $operator = '>=', $count = 1)
{
@@ -26196,8 +25778,8 @@ namespace {
* @param string|array $types
* @param string $boolean
* @param (\Closure(\Illuminate\Database\Eloquent\Builder, string): mixed)|null $callback
- * @return \Illuminate\Database\Eloquent\Builder
- * @static
+ * @return \Illuminate\Database\Eloquent\Builder
+ * @static
*/
public static function doesntHaveMorph($relation, $types, $boolean = 'and', $callback = null)
{
@@ -26210,8 +25792,8 @@ namespace {
*
* @param \Illuminate\Database\Eloquent\Relations\MorphTo<*, *>|string $relation
* @param string|array $types
- * @return \Illuminate\Database\Eloquent\Builder
- * @static
+ * @return \Illuminate\Database\Eloquent\Builder
+ * @static
*/
public static function orDoesntHaveMorph($relation, $types)
{
@@ -26228,8 +25810,8 @@ namespace {
* @param (\Closure(\Illuminate\Database\Eloquent\Builder, string): mixed)|null $callback
* @param string $operator
* @param int $count
- * @return \Illuminate\Database\Eloquent\Builder
- * @static
+ * @return \Illuminate\Database\Eloquent\Builder
+ * @static
*/
public static function whereHasMorph($relation, $types, $callback = null, $operator = '>=', $count = 1)
{
@@ -26246,8 +25828,8 @@ namespace {
* @param (\Closure(\Illuminate\Database\Eloquent\Builder, string): mixed)|null $callback
* @param string $operator
* @param int $count
- * @return \Illuminate\Database\Eloquent\Builder
- * @static
+ * @return \Illuminate\Database\Eloquent\Builder
+ * @static
*/
public static function orWhereHasMorph($relation, $types, $callback = null, $operator = '>=', $count = 1)
{
@@ -26262,8 +25844,8 @@ namespace {
* @param \Illuminate\Database\Eloquent\Relations\MorphTo|string $relation
* @param string|array $types
* @param (\Closure(\Illuminate\Database\Eloquent\Builder, string): mixed)|null $callback
- * @return \Illuminate\Database\Eloquent\Builder
- * @static
+ * @return \Illuminate\Database\Eloquent\Builder
+ * @static
*/
public static function whereDoesntHaveMorph($relation, $types, $callback = null)
{
@@ -26278,8 +25860,8 @@ namespace {
* @param \Illuminate\Database\Eloquent\Relations\MorphTo|string $relation
* @param string|array $types
* @param (\Closure(\Illuminate\Database\Eloquent\Builder, string): mixed)|null $callback
- * @return \Illuminate\Database\Eloquent\Builder
- * @static
+ * @return \Illuminate\Database\Eloquent\Builder
+ * @static
*/
public static function orWhereDoesntHaveMorph($relation, $types, $callback = null)
{
@@ -26295,8 +25877,8 @@ namespace {
* @param (\Closure(\Illuminate\Database\Eloquent\Builder): mixed)|string|array|\Illuminate\Contracts\Database\Query\Expression $column
* @param mixed $operator
* @param mixed $value
- * @return \Illuminate\Database\Eloquent\Builder
- * @static
+ * @return \Illuminate\Database\Eloquent\Builder
+ * @static
*/
public static function whereRelation($relation, $column, $operator = null, $value = null)
{
@@ -26311,8 +25893,8 @@ namespace {
* @param \Closure|string|array|\Illuminate\Contracts\Database\Query\Expression $column
* @param mixed $operator
* @param mixed $value
- * @return \Illuminate\Database\Eloquent\Builder
- * @static
+ * @return \Illuminate\Database\Eloquent\Builder
+ * @static
*/
public static function withWhereRelation($relation, $column, $operator = null, $value = null)
{
@@ -26328,8 +25910,8 @@ namespace {
* @param (\Closure(\Illuminate\Database\Eloquent\Builder): mixed)|string|array|\Illuminate\Contracts\Database\Query\Expression $column
* @param mixed $operator
* @param mixed $value
- * @return \Illuminate\Database\Eloquent\Builder
- * @static
+ * @return \Illuminate\Database\Eloquent\Builder
+ * @static
*/
public static function orWhereRelation($relation, $column, $operator = null, $value = null)
{
@@ -26345,8 +25927,8 @@ namespace {
* @param (\Closure(\Illuminate\Database\Eloquent\Builder): mixed)|string|array|\Illuminate\Contracts\Database\Query\Expression $column
* @param mixed $operator
* @param mixed $value
- * @return \Illuminate\Database\Eloquent\Builder
- * @static
+ * @return \Illuminate\Database\Eloquent\Builder
+ * @static
*/
public static function whereDoesntHaveRelation($relation, $column, $operator = null, $value = null)
{
@@ -26362,8 +25944,8 @@ namespace {
* @param (\Closure(\Illuminate\Database\Eloquent\Builder): mixed)|string|array|\Illuminate\Contracts\Database\Query\Expression $column
* @param mixed $operator
* @param mixed $value
- * @return \Illuminate\Database\Eloquent\Builder
- * @static
+ * @return \Illuminate\Database\Eloquent\Builder
+ * @static
*/
public static function orWhereDoesntHaveRelation($relation, $column, $operator = null, $value = null)
{
@@ -26380,8 +25962,8 @@ namespace {
* @param (\Closure(\Illuminate\Database\Eloquent\Builder): mixed)|string|array|\Illuminate\Contracts\Database\Query\Expression $column
* @param mixed $operator
* @param mixed $value
- * @return \Illuminate\Database\Eloquent\Builder
- * @static
+ * @return \Illuminate\Database\Eloquent\Builder
+ * @static
*/
public static function whereMorphRelation($relation, $types, $column, $operator = null, $value = null)
{
@@ -26398,8 +25980,8 @@ namespace {
* @param (\Closure(\Illuminate\Database\Eloquent\Builder): mixed)|string|array|\Illuminate\Contracts\Database\Query\Expression $column
* @param mixed $operator
* @param mixed $value
- * @return \Illuminate\Database\Eloquent\Builder
- * @static
+ * @return \Illuminate\Database\Eloquent\Builder
+ * @static
*/
public static function orWhereMorphRelation($relation, $types, $column, $operator = null, $value = null)
{
@@ -26416,8 +25998,8 @@ namespace {
* @param (\Closure(\Illuminate\Database\Eloquent\Builder): mixed)|string|array|\Illuminate\Contracts\Database\Query\Expression $column
* @param mixed $operator
* @param mixed $value
- * @return \Illuminate\Database\Eloquent\Builder
- * @static
+ * @return \Illuminate\Database\Eloquent\Builder
+ * @static
*/
public static function whereMorphDoesntHaveRelation($relation, $types, $column, $operator = null, $value = null)
{
@@ -26434,8 +26016,8 @@ namespace {
* @param (\Closure(\Illuminate\Database\Eloquent\Builder): mixed)|string|array|\Illuminate\Contracts\Database\Query\Expression $column
* @param mixed $operator
* @param mixed $value
- * @return \Illuminate\Database\Eloquent\Builder
- * @static
+ * @return \Illuminate\Database\Eloquent\Builder
+ * @static
*/
public static function orWhereMorphDoesntHaveRelation($relation, $types, $column, $operator = null, $value = null)
{
@@ -26448,8 +26030,8 @@ namespace {
*
* @param \Illuminate\Database\Eloquent\Relations\MorphTo<*, *>|string $relation
* @param \Illuminate\Database\Eloquent\Model|iterable|string|null $model
- * @return \Illuminate\Database\Eloquent\Builder
- * @static
+ * @return \Illuminate\Database\Eloquent\Builder
+ * @static
*/
public static function whereMorphedTo($relation, $model, $boolean = 'and')
{
@@ -26462,8 +26044,8 @@ namespace {
*
* @param \Illuminate\Database\Eloquent\Relations\MorphTo<*, *>|string $relation
* @param \Illuminate\Database\Eloquent\Model|iterable|string $model
- * @return \Illuminate\Database\Eloquent\Builder
- * @static
+ * @return \Illuminate\Database\Eloquent\Builder
+ * @static
*/
public static function whereNotMorphedTo($relation, $model, $boolean = 'and')
{
@@ -26476,8 +26058,8 @@ namespace {
*
* @param \Illuminate\Database\Eloquent\Relations\MorphTo<*, *>|string $relation
* @param \Illuminate\Database\Eloquent\Model|iterable|string|null $model
- * @return \Illuminate\Database\Eloquent\Builder
- * @static
+ * @return \Illuminate\Database\Eloquent\Builder
+ * @static
*/
public static function orWhereMorphedTo($relation, $model)
{
@@ -26490,8 +26072,8 @@ namespace {
*
* @param \Illuminate\Database\Eloquent\Relations\MorphTo<*, *>|string $relation
* @param \Illuminate\Database\Eloquent\Model|iterable|string $model
- * @return \Illuminate\Database\Eloquent\Builder
- * @static
+ * @return \Illuminate\Database\Eloquent\Builder
+ * @static
*/
public static function orWhereNotMorphedTo($relation, $model)
{
@@ -26505,9 +26087,9 @@ namespace {
* @param \Illuminate\Database\Eloquent\Model|\Illuminate\Database\Eloquent\Collection $related
* @param string|null $relationshipName
* @param string $boolean
- * @return \Illuminate\Database\Eloquent\Builder
+ * @return \Illuminate\Database\Eloquent\Builder
* @throws \Illuminate\Database\Eloquent\RelationNotFoundException
- * @static
+ * @static
*/
public static function whereBelongsTo($related, $relationshipName = null, $boolean = 'and')
{
@@ -26520,9 +26102,9 @@ namespace {
*
* @param \Illuminate\Database\Eloquent\Model $related
* @param string|null $relationshipName
- * @return \Illuminate\Database\Eloquent\Builder
+ * @return \Illuminate\Database\Eloquent\Builder
* @throws \RuntimeException
- * @static
+ * @static
*/
public static function orWhereBelongsTo($related, $relationshipName = null)
{
@@ -26536,8 +26118,8 @@ namespace {
* @param mixed $relations
* @param \Illuminate\Contracts\Database\Query\Expression|string $column
* @param string $function
- * @return \Illuminate\Database\Eloquent\Builder
- * @static
+ * @return \Illuminate\Database\Eloquent\Builder
+ * @static
*/
public static function withAggregate($relations, $column, $function = null)
{
@@ -26549,8 +26131,8 @@ namespace {
* Add subselect queries to count the relations.
*
* @param mixed $relations
- * @return \Illuminate\Database\Eloquent\Builder