diff --git a/.env b/.env index 4e3b0e6..8741f30 100644 --- a/.env +++ b/.env @@ -11,8 +11,9 @@ APP_PROTOCOL=https:// APP_URL_MAIN= APP_URL_CHECKOUT=checkout. #APP_URL_MAIN=dev. -APP_URL_CRM=my. +APP_PRE_URL_CRM=my. APP_URL_PORTAL=in. +APP_PRE_URL_PORTAL=in. #APP_CHECKOUT_MAIL=no-reply@mivita.care APP_CONTACT_MAIL=kevin.adametz@me.com @@ -40,36 +41,46 @@ APP_PHP_VERSION=8.2 LOG_CHANNEL=stack DB_CONNECTION=mysql -DB_HOST=192.168.1.8 +DB_HOST=mysql DB_PORT=3306 DB_DATABASE=mivita -DB_USERNAME=kadmin -DB_PASSWORD=KT32vQ7ix +DB_USERNAME=sail +DB_PASSWORD=password +FORWARD_DB_PORT=33061 +MYSQL_EXTRA_OPTIONS= + +#DB_HOST=192.168.1.8 +#DB_PORT=3306 +#DB_DATABASE=mivita +#DB_USERNAME=kadmin +#DB_PASSWORD=password + #DB_DATABASE=d02c1ed2 #DB_USERNAME=d02c1ed2 -#DB_PASSWORD=H7mdYuVTV6pNHDVu +#DB_PASSWORD=password -PAYONE_URL = checkout.mivita.care -PAYONE_TS = checkout.mivita.care/transaction/status -PAYONE_KEY = Zjop5cvP2UeB7Qhy +PAYONE_URL=checkout.mivita.care +PAYONE_TS=checkout.mivita.care/transaction/status +PAYONE_KEY=Zjop5cvP2UeB7Qhy BROADCAST_DRIVER=log CACHE_DRIVER=file SESSION_DRIVER=file SESSION_LIFETIME=120 -QUEUE_DRIVER=database +QUEUE_DRIVER=redis -REDIS_HOST=127.0.0.1 +QUEUE_CONNECTION=redis +REDIS_HOST=redis REDIS_PASSWORD=null REDIS_PORT=6379 MAIL_DRIVER=smtp -MAIL_HOST=w017f6e4.kasserver.com -MAIL_PORT=587 -MAIL_USERNAME=m04a9fbc -MAIL_PASSWORD=3tQ72oCHZgncCTpK -MAIL_ENCRYPTION=null +MAIL_HOST=mailpit +MAIL_PORT=1025 +#MAIL_USERNAME=m04a9fbc +#MAIL_PASSWORD=3tQ72oCHZgncCTpK +#MAIL_ENCRYPTION=null PUSHER_APP_ID= diff --git a/.env.dhl.example b/.env.dhl.example new file mode 100644 index 0000000..67d49c9 --- /dev/null +++ b/.env.dhl.example @@ -0,0 +1,74 @@ +# ============================================================================= +# DHL VERSANDMODUL KONFIGURATION - BEISPIEL +# ============================================================================= +# Diese Datei enthält alle DHL-spezifischen Environment-Variablen +# Kopieren Sie die benötigten Variablen in Ihre .env Datei + +# DHL API Zugangsdaten +# Option 1: DHL Developer API (developer.dhl.com) - Empfohlen +DHL_API_KEY=your_api_key_from_developer_dhl_com +DHL_API_SECRET=your_api_secret_from_developer_dhl_com + +# Option 2: DHL Business Customer API (Klassisch) +DHL_API_USERNAME=your_dhl_username +DHL_API_PASSWORD=your_dhl_password +DHL_ACCOUNT_NUMBER=your_14_digit_account_number + +# API-Konfiguration +DHL_SANDBOX=true # false für Produktion +DHL_TEST_MODE=true # false für Produktion +DHL_API_TYPE=developer # 'developer' oder 'business_customer' + +# Absenderadresse (Ihre Firmenadresse) +DHL_SENDER_COMPANY="Ihr Firmenname" +DHL_SENDER_NAME="Versandabteilung" +DHL_SENDER_STREET="Ihre Straße" +DHL_SENDER_STREET_NUMBER=123 +DHL_SENDER_POSTAL_CODE=12345 +DHL_SENDER_CITY="Ihre Stadt" +DHL_SENDER_STATE= +DHL_SENDER_COUNTRY=DE +DHL_SENDER_EMAIL=versand@ihrefirma.de +DHL_SENDER_PHONE="+49 123 456789" + +# Standard-Einstellungen +DHL_DEFAULT_PRODUCT=V01PAK # V01PAK = DHL Paket +DHL_LABEL_FORMAT=PDF # PDF oder ZPL +DHL_LABEL_SIZE=A4 # A4 oder 10x15cm +DHL_LABEL_STORAGE_PATH=storage/app/dhl/labels +DHL_LABEL_PUBLIC_PATH=dhl/labels + +# Retouren +DHL_RETURNS_ENABLED=true +DHL_RETURN_PRODUCT=V07PAK # V07PAK = DHL Paket Return +DHL_RETURN_RECEIVER_ID=your_return_receiver_id + +# Tracking +DHL_TRACKING_ENABLED=true +DHL_TRACKING_AUTO_UPDATE=true +DHL_TRACKING_UPDATE_INTERVAL=60 # Minuten + +# Logging +DHL_LOGGING_ENABLED=true +DHL_LOGGING_LEVEL=info # debug, info, warning, error +DHL_LOG_REQUESTS=true +DHL_LOG_RESPONSES=true + +# Queue (verwende bestehende Queue-Konfiguration) +DHL_QUEUE_CONNECTION=database +DHL_QUEUE_NAME=dhl +DHL_QUEUE_TIMEOUT=60 +DHL_QUEUE_MAX_TRIES=3 + +# Fehlerbehandlung +DHL_THROW_EXCEPTIONS=true +DHL_ERROR_NOTIFICATION_EMAIL=admin@ihrefirma.de + +# Cache +DHL_CACHE_ENABLED=true +DHL_CACHE_TTL=3600 # Sekunden + +# Entwicklung/Testing +DHL_FAKE_API_CALLS=false # true um API-Calls zu simulieren +DHL_MOCK_RESPONSES=false # true um Mock-Responses zu verwenden +DHL_DEBUG_MODE=false # true für detaillierte Debug-Informationen \ No newline at end of file diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..67d49c9 --- /dev/null +++ b/.env.example @@ -0,0 +1,74 @@ +# ============================================================================= +# DHL VERSANDMODUL KONFIGURATION - BEISPIEL +# ============================================================================= +# Diese Datei enthält alle DHL-spezifischen Environment-Variablen +# Kopieren Sie die benötigten Variablen in Ihre .env Datei + +# DHL API Zugangsdaten +# Option 1: DHL Developer API (developer.dhl.com) - Empfohlen +DHL_API_KEY=your_api_key_from_developer_dhl_com +DHL_API_SECRET=your_api_secret_from_developer_dhl_com + +# Option 2: DHL Business Customer API (Klassisch) +DHL_API_USERNAME=your_dhl_username +DHL_API_PASSWORD=your_dhl_password +DHL_ACCOUNT_NUMBER=your_14_digit_account_number + +# API-Konfiguration +DHL_SANDBOX=true # false für Produktion +DHL_TEST_MODE=true # false für Produktion +DHL_API_TYPE=developer # 'developer' oder 'business_customer' + +# Absenderadresse (Ihre Firmenadresse) +DHL_SENDER_COMPANY="Ihr Firmenname" +DHL_SENDER_NAME="Versandabteilung" +DHL_SENDER_STREET="Ihre Straße" +DHL_SENDER_STREET_NUMBER=123 +DHL_SENDER_POSTAL_CODE=12345 +DHL_SENDER_CITY="Ihre Stadt" +DHL_SENDER_STATE= +DHL_SENDER_COUNTRY=DE +DHL_SENDER_EMAIL=versand@ihrefirma.de +DHL_SENDER_PHONE="+49 123 456789" + +# Standard-Einstellungen +DHL_DEFAULT_PRODUCT=V01PAK # V01PAK = DHL Paket +DHL_LABEL_FORMAT=PDF # PDF oder ZPL +DHL_LABEL_SIZE=A4 # A4 oder 10x15cm +DHL_LABEL_STORAGE_PATH=storage/app/dhl/labels +DHL_LABEL_PUBLIC_PATH=dhl/labels + +# Retouren +DHL_RETURNS_ENABLED=true +DHL_RETURN_PRODUCT=V07PAK # V07PAK = DHL Paket Return +DHL_RETURN_RECEIVER_ID=your_return_receiver_id + +# Tracking +DHL_TRACKING_ENABLED=true +DHL_TRACKING_AUTO_UPDATE=true +DHL_TRACKING_UPDATE_INTERVAL=60 # Minuten + +# Logging +DHL_LOGGING_ENABLED=true +DHL_LOGGING_LEVEL=info # debug, info, warning, error +DHL_LOG_REQUESTS=true +DHL_LOG_RESPONSES=true + +# Queue (verwende bestehende Queue-Konfiguration) +DHL_QUEUE_CONNECTION=database +DHL_QUEUE_NAME=dhl +DHL_QUEUE_TIMEOUT=60 +DHL_QUEUE_MAX_TRIES=3 + +# Fehlerbehandlung +DHL_THROW_EXCEPTIONS=true +DHL_ERROR_NOTIFICATION_EMAIL=admin@ihrefirma.de + +# Cache +DHL_CACHE_ENABLED=true +DHL_CACHE_TTL=3600 # Sekunden + +# Entwicklung/Testing +DHL_FAKE_API_CALLS=false # true um API-Calls zu simulieren +DHL_MOCK_RESPONSES=false # true um Mock-Responses zu verwenden +DHL_DEBUG_MODE=false # true für detaillierte Debug-Informationen \ No newline at end of file diff --git a/.phpstorm.meta.php b/.phpstorm.meta.php index 6a6485a..4340d61 100644 --- a/.phpstorm.meta.php +++ b/.phpstorm.meta.php @@ -29,6 +29,14 @@ namespace PHPSTORM_META { 'Illuminate\Routing\Contracts\ControllerDispatcher' => \Illuminate\Routing\ControllerDispatcher::class, 'JoeDixon\Translation\Drivers\Translation' => \JoeDixon\Translation\Drivers\File::class, 'Laracasts\Flash\SessionStore' => \Laracasts\Flash\LaravelSessionStore::class, + 'Laravel\Horizon\Contracts\HorizonCommandQueue' => \Laravel\Horizon\RedisHorizonCommandQueue::class, + 'Laravel\Horizon\Contracts\JobRepository' => \Laravel\Horizon\Repositories\RedisJobRepository::class, + 'Laravel\Horizon\Contracts\MasterSupervisorRepository' => \Laravel\Horizon\Repositories\RedisMasterSupervisorRepository::class, + 'Laravel\Horizon\Contracts\MetricsRepository' => \Laravel\Horizon\Repositories\RedisMetricsRepository::class, + 'Laravel\Horizon\Contracts\ProcessRepository' => \Laravel\Horizon\Repositories\RedisProcessRepository::class, + 'Laravel\Horizon\Contracts\SupervisorRepository' => \Laravel\Horizon\Repositories\RedisSupervisorRepository::class, + 'Laravel\Horizon\Contracts\TagRepository' => \Laravel\Horizon\Repositories\RedisTagRepository::class, + 'Laravel\Horizon\Contracts\WorkloadRepository' => \Laravel\Horizon\Repositories\RedisWorkloadRepository::class, 'Laravel\Passport\Contracts\AuthorizationViewResponse' => \Laravel\Passport\Http\Responses\AuthorizationViewResponse::class, 'Lcobucci\JWT\Parser' => \Lcobucci\JWT\Token\Parser::class, 'Maatwebsite\Excel\Transactions\TransactionHandler' => \Maatwebsite\Excel\Transactions\DbTransactionHandler::class, @@ -63,6 +71,7 @@ namespace PHPSTORM_META { 'filesystem.disk' => \Illuminate\Filesystem\LocalFilesystemAdapter::class, 'flare.logger' => \Monolog\Logger::class, 'flash' => \Laracasts\Flash\FlashNotifier::class, + 'form' => \Alban\LaravelCollectiveSpatieHtmlParser\FormAdapter::class, 'hash' => \Illuminate\Hashing\HashManager::class, 'hash.driver' => \Illuminate\Hashing\BcryptHasher::class, 'log' => \Illuminate\Log\LogManager::class, @@ -74,7 +83,7 @@ namespace PHPSTORM_META { 'migrator' => \Illuminate\Database\Migrations\Migrator::class, 'pipeline' => \Illuminate\Pipeline\Pipeline::class, 'queue' => \Illuminate\Queue\QueueManager::class, - 'queue.connection' => \Illuminate\Queue\DatabaseQueue::class, + 'queue.connection' => \Laravel\Horizon\RedisQueue::class, 'queue.failer' => \Illuminate\Queue\Failed\DatabaseFailedJobProvider::class, 'queue.listener' => \Illuminate\Queue\Listener::class, 'queue.worker' => \Illuminate\Queue\Worker::class, @@ -109,6 +118,14 @@ namespace PHPSTORM_META { 'Illuminate\Routing\Contracts\ControllerDispatcher' => \Illuminate\Routing\ControllerDispatcher::class, 'JoeDixon\Translation\Drivers\Translation' => \JoeDixon\Translation\Drivers\File::class, 'Laracasts\Flash\SessionStore' => \Laracasts\Flash\LaravelSessionStore::class, + 'Laravel\Horizon\Contracts\HorizonCommandQueue' => \Laravel\Horizon\RedisHorizonCommandQueue::class, + 'Laravel\Horizon\Contracts\JobRepository' => \Laravel\Horizon\Repositories\RedisJobRepository::class, + 'Laravel\Horizon\Contracts\MasterSupervisorRepository' => \Laravel\Horizon\Repositories\RedisMasterSupervisorRepository::class, + 'Laravel\Horizon\Contracts\MetricsRepository' => \Laravel\Horizon\Repositories\RedisMetricsRepository::class, + 'Laravel\Horizon\Contracts\ProcessRepository' => \Laravel\Horizon\Repositories\RedisProcessRepository::class, + 'Laravel\Horizon\Contracts\SupervisorRepository' => \Laravel\Horizon\Repositories\RedisSupervisorRepository::class, + 'Laravel\Horizon\Contracts\TagRepository' => \Laravel\Horizon\Repositories\RedisTagRepository::class, + 'Laravel\Horizon\Contracts\WorkloadRepository' => \Laravel\Horizon\Repositories\RedisWorkloadRepository::class, 'Laravel\Passport\Contracts\AuthorizationViewResponse' => \Laravel\Passport\Http\Responses\AuthorizationViewResponse::class, 'Lcobucci\JWT\Parser' => \Lcobucci\JWT\Token\Parser::class, 'Maatwebsite\Excel\Transactions\TransactionHandler' => \Maatwebsite\Excel\Transactions\DbTransactionHandler::class, @@ -143,6 +160,7 @@ namespace PHPSTORM_META { 'filesystem.disk' => \Illuminate\Filesystem\LocalFilesystemAdapter::class, 'flare.logger' => \Monolog\Logger::class, 'flash' => \Laracasts\Flash\FlashNotifier::class, + 'form' => \Alban\LaravelCollectiveSpatieHtmlParser\FormAdapter::class, 'hash' => \Illuminate\Hashing\HashManager::class, 'hash.driver' => \Illuminate\Hashing\BcryptHasher::class, 'log' => \Illuminate\Log\LogManager::class, @@ -154,7 +172,7 @@ namespace PHPSTORM_META { 'migrator' => \Illuminate\Database\Migrations\Migrator::class, 'pipeline' => \Illuminate\Pipeline\Pipeline::class, 'queue' => \Illuminate\Queue\QueueManager::class, - 'queue.connection' => \Illuminate\Queue\DatabaseQueue::class, + 'queue.connection' => \Laravel\Horizon\RedisQueue::class, 'queue.failer' => \Illuminate\Queue\Failed\DatabaseFailedJobProvider::class, 'queue.listener' => \Illuminate\Queue\Listener::class, 'queue.worker' => \Illuminate\Queue\Worker::class, @@ -189,6 +207,14 @@ namespace PHPSTORM_META { 'Illuminate\Routing\Contracts\ControllerDispatcher' => \Illuminate\Routing\ControllerDispatcher::class, 'JoeDixon\Translation\Drivers\Translation' => \JoeDixon\Translation\Drivers\File::class, 'Laracasts\Flash\SessionStore' => \Laracasts\Flash\LaravelSessionStore::class, + 'Laravel\Horizon\Contracts\HorizonCommandQueue' => \Laravel\Horizon\RedisHorizonCommandQueue::class, + 'Laravel\Horizon\Contracts\JobRepository' => \Laravel\Horizon\Repositories\RedisJobRepository::class, + 'Laravel\Horizon\Contracts\MasterSupervisorRepository' => \Laravel\Horizon\Repositories\RedisMasterSupervisorRepository::class, + 'Laravel\Horizon\Contracts\MetricsRepository' => \Laravel\Horizon\Repositories\RedisMetricsRepository::class, + 'Laravel\Horizon\Contracts\ProcessRepository' => \Laravel\Horizon\Repositories\RedisProcessRepository::class, + 'Laravel\Horizon\Contracts\SupervisorRepository' => \Laravel\Horizon\Repositories\RedisSupervisorRepository::class, + 'Laravel\Horizon\Contracts\TagRepository' => \Laravel\Horizon\Repositories\RedisTagRepository::class, + 'Laravel\Horizon\Contracts\WorkloadRepository' => \Laravel\Horizon\Repositories\RedisWorkloadRepository::class, 'Laravel\Passport\Contracts\AuthorizationViewResponse' => \Laravel\Passport\Http\Responses\AuthorizationViewResponse::class, 'Lcobucci\JWT\Parser' => \Lcobucci\JWT\Token\Parser::class, 'Maatwebsite\Excel\Transactions\TransactionHandler' => \Maatwebsite\Excel\Transactions\DbTransactionHandler::class, @@ -223,6 +249,7 @@ namespace PHPSTORM_META { 'filesystem.disk' => \Illuminate\Filesystem\LocalFilesystemAdapter::class, 'flare.logger' => \Monolog\Logger::class, 'flash' => \Laracasts\Flash\FlashNotifier::class, + 'form' => \Alban\LaravelCollectiveSpatieHtmlParser\FormAdapter::class, 'hash' => \Illuminate\Hashing\HashManager::class, 'hash.driver' => \Illuminate\Hashing\BcryptHasher::class, 'log' => \Illuminate\Log\LogManager::class, @@ -234,7 +261,7 @@ namespace PHPSTORM_META { 'migrator' => \Illuminate\Database\Migrations\Migrator::class, 'pipeline' => \Illuminate\Pipeline\Pipeline::class, 'queue' => \Illuminate\Queue\QueueManager::class, - 'queue.connection' => \Illuminate\Queue\DatabaseQueue::class, + 'queue.connection' => \Laravel\Horizon\RedisQueue::class, 'queue.failer' => \Illuminate\Queue\Failed\DatabaseFailedJobProvider::class, 'queue.listener' => \Illuminate\Queue\Listener::class, 'queue.worker' => \Illuminate\Queue\Worker::class, @@ -269,6 +296,14 @@ namespace PHPSTORM_META { 'Illuminate\Routing\Contracts\ControllerDispatcher' => \Illuminate\Routing\ControllerDispatcher::class, 'JoeDixon\Translation\Drivers\Translation' => \JoeDixon\Translation\Drivers\File::class, 'Laracasts\Flash\SessionStore' => \Laracasts\Flash\LaravelSessionStore::class, + 'Laravel\Horizon\Contracts\HorizonCommandQueue' => \Laravel\Horizon\RedisHorizonCommandQueue::class, + 'Laravel\Horizon\Contracts\JobRepository' => \Laravel\Horizon\Repositories\RedisJobRepository::class, + 'Laravel\Horizon\Contracts\MasterSupervisorRepository' => \Laravel\Horizon\Repositories\RedisMasterSupervisorRepository::class, + 'Laravel\Horizon\Contracts\MetricsRepository' => \Laravel\Horizon\Repositories\RedisMetricsRepository::class, + 'Laravel\Horizon\Contracts\ProcessRepository' => \Laravel\Horizon\Repositories\RedisProcessRepository::class, + 'Laravel\Horizon\Contracts\SupervisorRepository' => \Laravel\Horizon\Repositories\RedisSupervisorRepository::class, + 'Laravel\Horizon\Contracts\TagRepository' => \Laravel\Horizon\Repositories\RedisTagRepository::class, + 'Laravel\Horizon\Contracts\WorkloadRepository' => \Laravel\Horizon\Repositories\RedisWorkloadRepository::class, 'Laravel\Passport\Contracts\AuthorizationViewResponse' => \Laravel\Passport\Http\Responses\AuthorizationViewResponse::class, 'Lcobucci\JWT\Parser' => \Lcobucci\JWT\Token\Parser::class, 'Maatwebsite\Excel\Transactions\TransactionHandler' => \Maatwebsite\Excel\Transactions\DbTransactionHandler::class, @@ -303,6 +338,7 @@ namespace PHPSTORM_META { 'filesystem.disk' => \Illuminate\Filesystem\LocalFilesystemAdapter::class, 'flare.logger' => \Monolog\Logger::class, 'flash' => \Laracasts\Flash\FlashNotifier::class, + 'form' => \Alban\LaravelCollectiveSpatieHtmlParser\FormAdapter::class, 'hash' => \Illuminate\Hashing\HashManager::class, 'hash.driver' => \Illuminate\Hashing\BcryptHasher::class, 'log' => \Illuminate\Log\LogManager::class, @@ -314,7 +350,7 @@ namespace PHPSTORM_META { 'migrator' => \Illuminate\Database\Migrations\Migrator::class, 'pipeline' => \Illuminate\Pipeline\Pipeline::class, 'queue' => \Illuminate\Queue\QueueManager::class, - 'queue.connection' => \Illuminate\Queue\DatabaseQueue::class, + 'queue.connection' => \Laravel\Horizon\RedisQueue::class, 'queue.failer' => \Illuminate\Queue\Failed\DatabaseFailedJobProvider::class, 'queue.listener' => \Illuminate\Queue\Listener::class, 'queue.worker' => \Illuminate\Queue\Worker::class, @@ -349,6 +385,14 @@ namespace PHPSTORM_META { 'Illuminate\Routing\Contracts\ControllerDispatcher' => \Illuminate\Routing\ControllerDispatcher::class, 'JoeDixon\Translation\Drivers\Translation' => \JoeDixon\Translation\Drivers\File::class, 'Laracasts\Flash\SessionStore' => \Laracasts\Flash\LaravelSessionStore::class, + 'Laravel\Horizon\Contracts\HorizonCommandQueue' => \Laravel\Horizon\RedisHorizonCommandQueue::class, + 'Laravel\Horizon\Contracts\JobRepository' => \Laravel\Horizon\Repositories\RedisJobRepository::class, + 'Laravel\Horizon\Contracts\MasterSupervisorRepository' => \Laravel\Horizon\Repositories\RedisMasterSupervisorRepository::class, + 'Laravel\Horizon\Contracts\MetricsRepository' => \Laravel\Horizon\Repositories\RedisMetricsRepository::class, + 'Laravel\Horizon\Contracts\ProcessRepository' => \Laravel\Horizon\Repositories\RedisProcessRepository::class, + 'Laravel\Horizon\Contracts\SupervisorRepository' => \Laravel\Horizon\Repositories\RedisSupervisorRepository::class, + 'Laravel\Horizon\Contracts\TagRepository' => \Laravel\Horizon\Repositories\RedisTagRepository::class, + 'Laravel\Horizon\Contracts\WorkloadRepository' => \Laravel\Horizon\Repositories\RedisWorkloadRepository::class, 'Laravel\Passport\Contracts\AuthorizationViewResponse' => \Laravel\Passport\Http\Responses\AuthorizationViewResponse::class, 'Lcobucci\JWT\Parser' => \Lcobucci\JWT\Token\Parser::class, 'Maatwebsite\Excel\Transactions\TransactionHandler' => \Maatwebsite\Excel\Transactions\DbTransactionHandler::class, @@ -383,6 +427,7 @@ namespace PHPSTORM_META { 'filesystem.disk' => \Illuminate\Filesystem\LocalFilesystemAdapter::class, 'flare.logger' => \Monolog\Logger::class, 'flash' => \Laracasts\Flash\FlashNotifier::class, + 'form' => \Alban\LaravelCollectiveSpatieHtmlParser\FormAdapter::class, 'hash' => \Illuminate\Hashing\HashManager::class, 'hash.driver' => \Illuminate\Hashing\BcryptHasher::class, 'log' => \Illuminate\Log\LogManager::class, @@ -394,7 +439,7 @@ namespace PHPSTORM_META { 'migrator' => \Illuminate\Database\Migrations\Migrator::class, 'pipeline' => \Illuminate\Pipeline\Pipeline::class, 'queue' => \Illuminate\Queue\QueueManager::class, - 'queue.connection' => \Illuminate\Queue\DatabaseQueue::class, + 'queue.connection' => \Laravel\Horizon\RedisQueue::class, 'queue.failer' => \Illuminate\Queue\Failed\DatabaseFailedJobProvider::class, 'queue.listener' => \Illuminate\Queue\Listener::class, 'queue.worker' => \Illuminate\Queue\Worker::class, @@ -429,6 +474,14 @@ namespace PHPSTORM_META { 'Illuminate\Routing\Contracts\ControllerDispatcher' => \Illuminate\Routing\ControllerDispatcher::class, 'JoeDixon\Translation\Drivers\Translation' => \JoeDixon\Translation\Drivers\File::class, 'Laracasts\Flash\SessionStore' => \Laracasts\Flash\LaravelSessionStore::class, + 'Laravel\Horizon\Contracts\HorizonCommandQueue' => \Laravel\Horizon\RedisHorizonCommandQueue::class, + 'Laravel\Horizon\Contracts\JobRepository' => \Laravel\Horizon\Repositories\RedisJobRepository::class, + 'Laravel\Horizon\Contracts\MasterSupervisorRepository' => \Laravel\Horizon\Repositories\RedisMasterSupervisorRepository::class, + 'Laravel\Horizon\Contracts\MetricsRepository' => \Laravel\Horizon\Repositories\RedisMetricsRepository::class, + 'Laravel\Horizon\Contracts\ProcessRepository' => \Laravel\Horizon\Repositories\RedisProcessRepository::class, + 'Laravel\Horizon\Contracts\SupervisorRepository' => \Laravel\Horizon\Repositories\RedisSupervisorRepository::class, + 'Laravel\Horizon\Contracts\TagRepository' => \Laravel\Horizon\Repositories\RedisTagRepository::class, + 'Laravel\Horizon\Contracts\WorkloadRepository' => \Laravel\Horizon\Repositories\RedisWorkloadRepository::class, 'Laravel\Passport\Contracts\AuthorizationViewResponse' => \Laravel\Passport\Http\Responses\AuthorizationViewResponse::class, 'Lcobucci\JWT\Parser' => \Lcobucci\JWT\Token\Parser::class, 'Maatwebsite\Excel\Transactions\TransactionHandler' => \Maatwebsite\Excel\Transactions\DbTransactionHandler::class, @@ -463,6 +516,7 @@ namespace PHPSTORM_META { 'filesystem.disk' => \Illuminate\Filesystem\LocalFilesystemAdapter::class, 'flare.logger' => \Monolog\Logger::class, 'flash' => \Laracasts\Flash\FlashNotifier::class, + 'form' => \Alban\LaravelCollectiveSpatieHtmlParser\FormAdapter::class, 'hash' => \Illuminate\Hashing\HashManager::class, 'hash.driver' => \Illuminate\Hashing\BcryptHasher::class, 'log' => \Illuminate\Log\LogManager::class, @@ -474,7 +528,7 @@ namespace PHPSTORM_META { 'migrator' => \Illuminate\Database\Migrations\Migrator::class, 'pipeline' => \Illuminate\Pipeline\Pipeline::class, 'queue' => \Illuminate\Queue\QueueManager::class, - 'queue.connection' => \Illuminate\Queue\DatabaseQueue::class, + 'queue.connection' => \Laravel\Horizon\RedisQueue::class, 'queue.failer' => \Illuminate\Queue\Failed\DatabaseFailedJobProvider::class, 'queue.listener' => \Illuminate\Queue\Listener::class, 'queue.worker' => \Illuminate\Queue\Worker::class, @@ -509,6 +563,14 @@ namespace PHPSTORM_META { 'Illuminate\Routing\Contracts\ControllerDispatcher' => \Illuminate\Routing\ControllerDispatcher::class, 'JoeDixon\Translation\Drivers\Translation' => \JoeDixon\Translation\Drivers\File::class, 'Laracasts\Flash\SessionStore' => \Laracasts\Flash\LaravelSessionStore::class, + 'Laravel\Horizon\Contracts\HorizonCommandQueue' => \Laravel\Horizon\RedisHorizonCommandQueue::class, + 'Laravel\Horizon\Contracts\JobRepository' => \Laravel\Horizon\Repositories\RedisJobRepository::class, + 'Laravel\Horizon\Contracts\MasterSupervisorRepository' => \Laravel\Horizon\Repositories\RedisMasterSupervisorRepository::class, + 'Laravel\Horizon\Contracts\MetricsRepository' => \Laravel\Horizon\Repositories\RedisMetricsRepository::class, + 'Laravel\Horizon\Contracts\ProcessRepository' => \Laravel\Horizon\Repositories\RedisProcessRepository::class, + 'Laravel\Horizon\Contracts\SupervisorRepository' => \Laravel\Horizon\Repositories\RedisSupervisorRepository::class, + 'Laravel\Horizon\Contracts\TagRepository' => \Laravel\Horizon\Repositories\RedisTagRepository::class, + 'Laravel\Horizon\Contracts\WorkloadRepository' => \Laravel\Horizon\Repositories\RedisWorkloadRepository::class, 'Laravel\Passport\Contracts\AuthorizationViewResponse' => \Laravel\Passport\Http\Responses\AuthorizationViewResponse::class, 'Lcobucci\JWT\Parser' => \Lcobucci\JWT\Token\Parser::class, 'Maatwebsite\Excel\Transactions\TransactionHandler' => \Maatwebsite\Excel\Transactions\DbTransactionHandler::class, @@ -543,6 +605,7 @@ namespace PHPSTORM_META { 'filesystem.disk' => \Illuminate\Filesystem\LocalFilesystemAdapter::class, 'flare.logger' => \Monolog\Logger::class, 'flash' => \Laracasts\Flash\FlashNotifier::class, + 'form' => \Alban\LaravelCollectiveSpatieHtmlParser\FormAdapter::class, 'hash' => \Illuminate\Hashing\HashManager::class, 'hash.driver' => \Illuminate\Hashing\BcryptHasher::class, 'log' => \Illuminate\Log\LogManager::class, @@ -554,7 +617,7 @@ namespace PHPSTORM_META { 'migrator' => \Illuminate\Database\Migrations\Migrator::class, 'pipeline' => \Illuminate\Pipeline\Pipeline::class, 'queue' => \Illuminate\Queue\QueueManager::class, - 'queue.connection' => \Illuminate\Queue\DatabaseQueue::class, + 'queue.connection' => \Laravel\Horizon\RedisQueue::class, 'queue.failer' => \Illuminate\Queue\Failed\DatabaseFailedJobProvider::class, 'queue.listener' => \Illuminate\Queue\Listener::class, 'queue.worker' => \Illuminate\Queue\Worker::class, @@ -589,6 +652,14 @@ namespace PHPSTORM_META { 'Illuminate\Routing\Contracts\ControllerDispatcher' => \Illuminate\Routing\ControllerDispatcher::class, 'JoeDixon\Translation\Drivers\Translation' => \JoeDixon\Translation\Drivers\File::class, 'Laracasts\Flash\SessionStore' => \Laracasts\Flash\LaravelSessionStore::class, + 'Laravel\Horizon\Contracts\HorizonCommandQueue' => \Laravel\Horizon\RedisHorizonCommandQueue::class, + 'Laravel\Horizon\Contracts\JobRepository' => \Laravel\Horizon\Repositories\RedisJobRepository::class, + 'Laravel\Horizon\Contracts\MasterSupervisorRepository' => \Laravel\Horizon\Repositories\RedisMasterSupervisorRepository::class, + 'Laravel\Horizon\Contracts\MetricsRepository' => \Laravel\Horizon\Repositories\RedisMetricsRepository::class, + 'Laravel\Horizon\Contracts\ProcessRepository' => \Laravel\Horizon\Repositories\RedisProcessRepository::class, + 'Laravel\Horizon\Contracts\SupervisorRepository' => \Laravel\Horizon\Repositories\RedisSupervisorRepository::class, + 'Laravel\Horizon\Contracts\TagRepository' => \Laravel\Horizon\Repositories\RedisTagRepository::class, + 'Laravel\Horizon\Contracts\WorkloadRepository' => \Laravel\Horizon\Repositories\RedisWorkloadRepository::class, 'Laravel\Passport\Contracts\AuthorizationViewResponse' => \Laravel\Passport\Http\Responses\AuthorizationViewResponse::class, 'Lcobucci\JWT\Parser' => \Lcobucci\JWT\Token\Parser::class, 'Maatwebsite\Excel\Transactions\TransactionHandler' => \Maatwebsite\Excel\Transactions\DbTransactionHandler::class, @@ -623,6 +694,7 @@ namespace PHPSTORM_META { 'filesystem.disk' => \Illuminate\Filesystem\LocalFilesystemAdapter::class, 'flare.logger' => \Monolog\Logger::class, 'flash' => \Laracasts\Flash\FlashNotifier::class, + 'form' => \Alban\LaravelCollectiveSpatieHtmlParser\FormAdapter::class, 'hash' => \Illuminate\Hashing\HashManager::class, 'hash.driver' => \Illuminate\Hashing\BcryptHasher::class, 'log' => \Illuminate\Log\LogManager::class, @@ -634,7 +706,7 @@ namespace PHPSTORM_META { 'migrator' => \Illuminate\Database\Migrations\Migrator::class, 'pipeline' => \Illuminate\Pipeline\Pipeline::class, 'queue' => \Illuminate\Queue\QueueManager::class, - 'queue.connection' => \Illuminate\Queue\DatabaseQueue::class, + 'queue.connection' => \Laravel\Horizon\RedisQueue::class, 'queue.failer' => \Illuminate\Queue\Failed\DatabaseFailedJobProvider::class, 'queue.listener' => \Illuminate\Queue\Listener::class, 'queue.worker' => \Illuminate\Queue\Worker::class, @@ -669,6 +741,14 @@ namespace PHPSTORM_META { 'Illuminate\Routing\Contracts\ControllerDispatcher' => \Illuminate\Routing\ControllerDispatcher::class, 'JoeDixon\Translation\Drivers\Translation' => \JoeDixon\Translation\Drivers\File::class, 'Laracasts\Flash\SessionStore' => \Laracasts\Flash\LaravelSessionStore::class, + 'Laravel\Horizon\Contracts\HorizonCommandQueue' => \Laravel\Horizon\RedisHorizonCommandQueue::class, + 'Laravel\Horizon\Contracts\JobRepository' => \Laravel\Horizon\Repositories\RedisJobRepository::class, + 'Laravel\Horizon\Contracts\MasterSupervisorRepository' => \Laravel\Horizon\Repositories\RedisMasterSupervisorRepository::class, + 'Laravel\Horizon\Contracts\MetricsRepository' => \Laravel\Horizon\Repositories\RedisMetricsRepository::class, + 'Laravel\Horizon\Contracts\ProcessRepository' => \Laravel\Horizon\Repositories\RedisProcessRepository::class, + 'Laravel\Horizon\Contracts\SupervisorRepository' => \Laravel\Horizon\Repositories\RedisSupervisorRepository::class, + 'Laravel\Horizon\Contracts\TagRepository' => \Laravel\Horizon\Repositories\RedisTagRepository::class, + 'Laravel\Horizon\Contracts\WorkloadRepository' => \Laravel\Horizon\Repositories\RedisWorkloadRepository::class, 'Laravel\Passport\Contracts\AuthorizationViewResponse' => \Laravel\Passport\Http\Responses\AuthorizationViewResponse::class, 'Lcobucci\JWT\Parser' => \Lcobucci\JWT\Token\Parser::class, 'Maatwebsite\Excel\Transactions\TransactionHandler' => \Maatwebsite\Excel\Transactions\DbTransactionHandler::class, @@ -703,6 +783,7 @@ namespace PHPSTORM_META { 'filesystem.disk' => \Illuminate\Filesystem\LocalFilesystemAdapter::class, 'flare.logger' => \Monolog\Logger::class, 'flash' => \Laracasts\Flash\FlashNotifier::class, + 'form' => \Alban\LaravelCollectiveSpatieHtmlParser\FormAdapter::class, 'hash' => \Illuminate\Hashing\HashManager::class, 'hash.driver' => \Illuminate\Hashing\BcryptHasher::class, 'log' => \Illuminate\Log\LogManager::class, @@ -714,7 +795,7 @@ namespace PHPSTORM_META { 'migrator' => \Illuminate\Database\Migrations\Migrator::class, 'pipeline' => \Illuminate\Pipeline\Pipeline::class, 'queue' => \Illuminate\Queue\QueueManager::class, - 'queue.connection' => \Illuminate\Queue\DatabaseQueue::class, + 'queue.connection' => \Laravel\Horizon\RedisQueue::class, 'queue.failer' => \Illuminate\Queue\Failed\DatabaseFailedJobProvider::class, 'queue.listener' => \Illuminate\Queue\Listener::class, 'queue.worker' => \Illuminate\Queue\Worker::class, @@ -749,6 +830,14 @@ namespace PHPSTORM_META { 'Illuminate\Routing\Contracts\ControllerDispatcher' => \Illuminate\Routing\ControllerDispatcher::class, 'JoeDixon\Translation\Drivers\Translation' => \JoeDixon\Translation\Drivers\File::class, 'Laracasts\Flash\SessionStore' => \Laracasts\Flash\LaravelSessionStore::class, + 'Laravel\Horizon\Contracts\HorizonCommandQueue' => \Laravel\Horizon\RedisHorizonCommandQueue::class, + 'Laravel\Horizon\Contracts\JobRepository' => \Laravel\Horizon\Repositories\RedisJobRepository::class, + 'Laravel\Horizon\Contracts\MasterSupervisorRepository' => \Laravel\Horizon\Repositories\RedisMasterSupervisorRepository::class, + 'Laravel\Horizon\Contracts\MetricsRepository' => \Laravel\Horizon\Repositories\RedisMetricsRepository::class, + 'Laravel\Horizon\Contracts\ProcessRepository' => \Laravel\Horizon\Repositories\RedisProcessRepository::class, + 'Laravel\Horizon\Contracts\SupervisorRepository' => \Laravel\Horizon\Repositories\RedisSupervisorRepository::class, + 'Laravel\Horizon\Contracts\TagRepository' => \Laravel\Horizon\Repositories\RedisTagRepository::class, + 'Laravel\Horizon\Contracts\WorkloadRepository' => \Laravel\Horizon\Repositories\RedisWorkloadRepository::class, 'Laravel\Passport\Contracts\AuthorizationViewResponse' => \Laravel\Passport\Http\Responses\AuthorizationViewResponse::class, 'Lcobucci\JWT\Parser' => \Lcobucci\JWT\Token\Parser::class, 'Maatwebsite\Excel\Transactions\TransactionHandler' => \Maatwebsite\Excel\Transactions\DbTransactionHandler::class, @@ -783,6 +872,7 @@ namespace PHPSTORM_META { 'filesystem.disk' => \Illuminate\Filesystem\LocalFilesystemAdapter::class, 'flare.logger' => \Monolog\Logger::class, 'flash' => \Laracasts\Flash\FlashNotifier::class, + 'form' => \Alban\LaravelCollectiveSpatieHtmlParser\FormAdapter::class, 'hash' => \Illuminate\Hashing\HashManager::class, 'hash.driver' => \Illuminate\Hashing\BcryptHasher::class, 'log' => \Illuminate\Log\LogManager::class, @@ -794,7 +884,7 @@ namespace PHPSTORM_META { 'migrator' => \Illuminate\Database\Migrations\Migrator::class, 'pipeline' => \Illuminate\Pipeline\Pipeline::class, 'queue' => \Illuminate\Queue\QueueManager::class, - 'queue.connection' => \Illuminate\Queue\DatabaseQueue::class, + 'queue.connection' => \Laravel\Horizon\RedisQueue::class, 'queue.failer' => \Illuminate\Queue\Failed\DatabaseFailedJobProvider::class, 'queue.listener' => \Illuminate\Queue\Listener::class, 'queue.worker' => \Illuminate\Queue\Worker::class, @@ -829,6 +919,14 @@ namespace PHPSTORM_META { 'Illuminate\Routing\Contracts\ControllerDispatcher' => \Illuminate\Routing\ControllerDispatcher::class, 'JoeDixon\Translation\Drivers\Translation' => \JoeDixon\Translation\Drivers\File::class, 'Laracasts\Flash\SessionStore' => \Laracasts\Flash\LaravelSessionStore::class, + 'Laravel\Horizon\Contracts\HorizonCommandQueue' => \Laravel\Horizon\RedisHorizonCommandQueue::class, + 'Laravel\Horizon\Contracts\JobRepository' => \Laravel\Horizon\Repositories\RedisJobRepository::class, + 'Laravel\Horizon\Contracts\MasterSupervisorRepository' => \Laravel\Horizon\Repositories\RedisMasterSupervisorRepository::class, + 'Laravel\Horizon\Contracts\MetricsRepository' => \Laravel\Horizon\Repositories\RedisMetricsRepository::class, + 'Laravel\Horizon\Contracts\ProcessRepository' => \Laravel\Horizon\Repositories\RedisProcessRepository::class, + 'Laravel\Horizon\Contracts\SupervisorRepository' => \Laravel\Horizon\Repositories\RedisSupervisorRepository::class, + 'Laravel\Horizon\Contracts\TagRepository' => \Laravel\Horizon\Repositories\RedisTagRepository::class, + 'Laravel\Horizon\Contracts\WorkloadRepository' => \Laravel\Horizon\Repositories\RedisWorkloadRepository::class, 'Laravel\Passport\Contracts\AuthorizationViewResponse' => \Laravel\Passport\Http\Responses\AuthorizationViewResponse::class, 'Lcobucci\JWT\Parser' => \Lcobucci\JWT\Token\Parser::class, 'Maatwebsite\Excel\Transactions\TransactionHandler' => \Maatwebsite\Excel\Transactions\DbTransactionHandler::class, @@ -863,6 +961,7 @@ namespace PHPSTORM_META { 'filesystem.disk' => \Illuminate\Filesystem\LocalFilesystemAdapter::class, 'flare.logger' => \Monolog\Logger::class, 'flash' => \Laracasts\Flash\FlashNotifier::class, + 'form' => \Alban\LaravelCollectiveSpatieHtmlParser\FormAdapter::class, 'hash' => \Illuminate\Hashing\HashManager::class, 'hash.driver' => \Illuminate\Hashing\BcryptHasher::class, 'log' => \Illuminate\Log\LogManager::class, @@ -874,7 +973,7 @@ namespace PHPSTORM_META { 'migrator' => \Illuminate\Database\Migrations\Migrator::class, 'pipeline' => \Illuminate\Pipeline\Pipeline::class, 'queue' => \Illuminate\Queue\QueueManager::class, - 'queue.connection' => \Illuminate\Queue\DatabaseQueue::class, + 'queue.connection' => \Laravel\Horizon\RedisQueue::class, 'queue.failer' => \Illuminate\Queue\Failed\DatabaseFailedJobProvider::class, 'queue.listener' => \Illuminate\Queue\Listener::class, 'queue.worker' => \Illuminate\Queue\Worker::class, @@ -912,6 +1011,7 @@ namespace PHPSTORM_META { ])); override(\config(), map([ + 'concurrency.default' => 'string', 'app.name' => 'string', 'app.env' => 'string', 'app.debug' => 'boolean', @@ -969,6 +1069,8 @@ namespace PHPSTORM_META { 'app.aliases.DataTables' => 'string', 'app.aliases.Yard' => 'string', 'app.aliases.DHL' => 'string', + 'app.aliases.Form' => 'string', + 'app.aliases.Html' => 'string', 'app.mode' => 'string', 'app.url_crm' => 'string', 'app.domain' => 'string', @@ -1127,6 +1229,11 @@ namespace PHPSTORM_META { 'database.redis.default.password' => 'NULL', 'database.redis.default.port' => 'string', 'database.redis.default.database' => 'integer', + 'database.redis.horizon.host' => 'string', + 'database.redis.horizon.password' => 'NULL', + 'database.redis.horizon.port' => 'string', + 'database.redis.horizon.database' => 'integer', + 'database.redis.horizon.options.prefix' => 'string', 'datatables.search.smart' => 'boolean', 'datatables.search.multi_term' => 'boolean', 'datatables.search.case_insensitive' => 'boolean', @@ -1149,9 +1256,9 @@ namespace PHPSTORM_META { 'datatables.callback' => 'array', 'dhl.base_url' => 'string', 'dhl.api_key' => 'string', - 'dhl.username' => 'NULL', - 'dhl.password' => 'NULL', - 'dhl.billing_number' => 'NULL', + 'dhl.username' => 'string', + 'dhl.password' => 'string', + 'dhl.billing_number' => 'string', 'dhl.default_product' => 'string', 'dhl.label_format' => 'string', 'dhl.profile' => 'string', @@ -1159,89 +1266,29 @@ namespace PHPSTORM_META { 'dhl.webhook.secret' => 'NULL', 'dhl.webhook.route' => 'string', 'dhl.use_queue' => 'boolean', - 'dhl.api.api_key' => 'string', - 'dhl.api.api_secret' => 'string', - 'dhl.api.username' => 'string', - 'dhl.api.password' => 'string', - 'dhl.api.account_number_default' => 'string', - 'dhl.api.product_accounts.V01PAK' => 'string', - 'dhl.api.product_accounts.V62WP' => 'string', - 'dhl.api.product_accounts.V53PAK' => 'string', - 'dhl.api.product_accounts.V07PAK' => 'string', - 'dhl.api.sandbox' => 'boolean', - 'dhl.api.test_mode' => 'boolean', - 'dhl.api.api_type' => 'string', - 'dhl.api.endpoints.developer.sandbox' => 'string', - 'dhl.api.endpoints.developer.production' => 'string', - 'dhl.api.endpoints.business_customer.sandbox' => 'string', - 'dhl.api.endpoints.business_customer.production' => 'string', + 'dhl.print_format' => 'string', + 'dhl.retoure_print_format' => 'string', 'dhl.sender.company' => 'string', 'dhl.sender.name' => 'string', 'dhl.sender.street' => 'string', - 'dhl.sender.street_number' => 'string', - 'dhl.sender.postal_code' => 'string', + 'dhl.sender.houseNumber' => 'string', + 'dhl.sender.postalCode' => 'string', 'dhl.sender.city' => 'string', - 'dhl.sender.state' => 'string', 'dhl.sender.country' => 'string', 'dhl.sender.email' => 'string', 'dhl.sender.phone' => 'string', - 'dhl.defaults.product' => 'string', - 'dhl.defaults.product_international' => 'string', - 'dhl.defaults.weight_unit' => 'string', - 'dhl.defaults.dimension_unit' => 'string', - 'dhl.defaults.currency' => 'string', - 'dhl.defaults.dimensions.length' => 'integer', - 'dhl.defaults.dimensions.width' => 'integer', - 'dhl.defaults.dimensions.height' => 'integer', - 'dhl.defaults.weight' => 'double', - 'dhl.defaults.services.premium' => 'boolean', - 'dhl.defaults.services.endorsement' => 'string', - 'dhl.defaults.services.visual_check_of_age' => 'boolean', - 'dhl.defaults.services.named_person_only' => 'boolean', - 'dhl.defaults.services.return_receipt' => 'boolean', - 'dhl.defaults.services.bulky_goods' => 'boolean', - 'dhl.labels.format' => 'string', - 'dhl.labels.size' => 'string', - 'dhl.labels.storage_path' => 'string', - 'dhl.labels.public_path' => 'string', - 'dhl.labels.combine_on_page' => 'boolean', - 'dhl.returns.enabled' => 'boolean', - 'dhl.returns.product' => 'string', - 'dhl.returns.receiver_id' => 'string', - 'dhl.tracking.enabled' => 'boolean', - 'dhl.tracking.username' => 'NULL', - 'dhl.tracking.password' => 'NULL', - 'dhl.tracking.auto_update' => 'boolean', - 'dhl.tracking.update_interval' => 'string', - 'dhl.tracking.max_retries' => 'integer', + 'dhl.account_numbers.default' => 'string', + 'dhl.account_numbers.V01PAK' => 'string', + 'dhl.account_numbers.V62WP' => 'string', + 'dhl.account_numbers.V53PAK' => 'string', + 'dhl.account_numbers.V07PAK' => 'string', 'dhl.logging.enabled' => 'boolean', 'dhl.logging.level' => 'string', 'dhl.logging.channel' => 'string', - 'dhl.logging.log_requests' => 'boolean', - 'dhl.logging.log_responses' => 'boolean', - 'dhl.queue.connection' => 'string', - 'dhl.queue.queue' => 'string', - 'dhl.queue.timeout' => 'string', - 'dhl.queue.retry_after' => 'integer', - 'dhl.queue.max_tries' => 'string', - 'dhl.error_handling.throw_exceptions' => 'boolean', - 'dhl.error_handling.notification_email' => 'string', - 'dhl.error_handling.retry_failed_jobs' => 'boolean', - 'dhl.cache.enabled' => 'boolean', - 'dhl.cache.ttl' => 'string', - 'dhl.cache.prefix' => 'string', - 'dhl.development.fake_api_calls' => 'boolean', - 'dhl.development.mock_responses' => 'boolean', - 'dhl.development.debug_mode' => 'boolean', - 'dhl.supported_countries.domestic' => 'array', - 'dhl.supported_countries.eu' => 'array', - 'dhl.supported_countries.international' => 'array', - 'dhl.status_mapping.pre-transit' => 'string', - 'dhl.status_mapping.transit' => 'string', - 'dhl.status_mapping.delivered' => 'string', - 'dhl.status_mapping.returned' => 'string', - 'dhl.status_mapping.failure' => 'string', - 'dhl.status_mapping.unknown' => 'string', + 'dhl.legacy.api_type' => 'string', + 'dhl.legacy.api_secret' => 'string', + 'dhl.legacy.sandbox' => 'boolean', + 'dhl.legacy.test_mode' => 'boolean', 'domains.protocol' => 'string', 'domains.domains.main.host' => 'string', 'domains.domains.main.type' => 'string', @@ -1277,7 +1324,7 @@ namespace PHPSTORM_META { 'filesystems.disks.import.driver' => 'string', 'filesystems.disks.import.root' => 'string', 'filesystems.disks.import.url' => 'string', - 'filesystems.links./Users/kadmin/Websites/mivita.care/public/storage' => 'string', + 'filesystems.links./var/www/html/public/storage' => 'string', 'filesystems.cloud' => 'string', 'hashing.driver' => 'string', 'hashing.bcrypt.rounds' => 'integer', @@ -1285,6 +1332,38 @@ namespace PHPSTORM_META { 'hashing.argon.threads' => 'integer', 'hashing.argon.time' => 'integer', 'hashing.rehash_on_login' => 'boolean', + 'horizon.domain' => 'NULL', + 'horizon.path' => 'string', + 'horizon.use' => 'string', + 'horizon.prefix' => 'string', + 'horizon.middleware' => 'array', + 'horizon.waits.redis:default' => 'integer', + 'horizon.trim.recent' => 'integer', + 'horizon.trim.pending' => 'integer', + 'horizon.trim.completed' => 'integer', + 'horizon.trim.recent_failed' => 'integer', + 'horizon.trim.failed' => 'integer', + 'horizon.trim.monitored' => 'integer', + 'horizon.silenced' => 'array', + 'horizon.metrics.trim_snapshots.job' => 'integer', + 'horizon.metrics.trim_snapshots.queue' => 'integer', + 'horizon.fast_termination' => 'boolean', + 'horizon.memory_limit' => 'integer', + 'horizon.defaults.supervisor-1.connection' => 'string', + 'horizon.defaults.supervisor-1.queue' => 'array', + 'horizon.defaults.supervisor-1.balance' => 'string', + 'horizon.defaults.supervisor-1.autoScalingStrategy' => 'string', + 'horizon.defaults.supervisor-1.maxProcesses' => 'integer', + 'horizon.defaults.supervisor-1.maxTime' => 'integer', + 'horizon.defaults.supervisor-1.maxJobs' => 'integer', + 'horizon.defaults.supervisor-1.memory' => 'integer', + 'horizon.defaults.supervisor-1.tries' => 'integer', + 'horizon.defaults.supervisor-1.timeout' => 'integer', + 'horizon.defaults.supervisor-1.nice' => 'integer', + 'horizon.environments.production.supervisor-1.maxProcesses' => 'integer', + 'horizon.environments.production.supervisor-1.balanceMaxShift' => 'integer', + 'horizon.environments.production.supervisor-1.balanceCooldown' => 'integer', + 'horizon.environments.local.supervisor-1.maxProcesses' => 'integer', 'ide-helper.filename' => 'string', 'ide-helper.models_filename' => 'string', 'ide-helper.meta_filename' => 'string', @@ -1293,6 +1372,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', @@ -1317,11 +1397,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.format' => 'string', 'ide-helper.custom_db_types' => 'array', 'localization.supportedLocales.de.name' => 'string', @@ -1381,14 +1461,16 @@ namespace PHPSTORM_META { 'logging.channels.payment.path' => 'string', 'logging.channels.cron.driver' => 'string', 'logging.channels.cron.path' => 'string', + 'logging.channels.deprecations.driver' => 'string', + 'logging.channels.deprecations.handler' => 'string', 'mail.default' => 'string', 'mail.mailers.smtp.transport' => 'string', 'mail.mailers.smtp.scheme' => 'NULL', 'mail.mailers.smtp.url' => 'NULL', 'mail.mailers.smtp.host' => 'string', 'mail.mailers.smtp.port' => 'string', - 'mail.mailers.smtp.username' => 'string', - 'mail.mailers.smtp.password' => 'string', + 'mail.mailers.smtp.username' => 'NULL', + 'mail.mailers.smtp.password' => 'NULL', 'mail.mailers.smtp.timeout' => 'NULL', 'mail.mailers.smtp.local_domain' => 'string', 'mail.mailers.ses.transport' => 'string', @@ -1410,9 +1492,9 @@ namespace PHPSTORM_META { 'mail.driver' => 'string', 'mail.host' => 'string', 'mail.port' => 'string', - 'mail.encryption' => 'NULL', - 'mail.username' => 'string', - 'mail.password' => 'string', + 'mail.encryption' => 'string', + 'mail.username' => 'NULL', + 'mail.password' => 'NULL', 'mail.sendmail' => 'string', 'mivita.renewal_days' => 'string', 'mivita.abo_booking_days' => 'string', @@ -1568,7 +1650,6 @@ namespace PHPSTORM_META { 'trustedproxy.headers.aws_cloud_front_for' => 'string', 'view.paths' => 'array', 'view.compiled' => 'string', - 'concurrency.default' => 'string', 'debugbar.enabled' => 'NULL', 'debugbar.hide_empty_tabs' => 'boolean', 'debugbar.except' => 'array', @@ -1582,7 +1663,7 @@ namespace PHPSTORM_META { 'debugbar.storage.port' => 'integer', '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', @@ -1624,6 +1705,7 @@ namespace PHPSTORM_META { 'debugbar.options.memory.precision' => 'integer', 'debugbar.options.auth.show_name' => 'boolean', 'debugbar.options.auth.show_guards' => 'boolean', + 'debugbar.options.gate.trace' => 'boolean', 'debugbar.options.db.with_params' => 'boolean', 'debugbar.options.db.exclude_paths' => 'array', 'debugbar.options.db.backtrace' => 'boolean', @@ -1642,12 +1724,14 @@ namespace PHPSTORM_META { 'debugbar.options.views.timeline' => 'boolean', 'debugbar.options.views.data' => 'boolean', 'debugbar.options.views.group' => 'integer', + 'debugbar.options.views.inertia_pages' => 'string', 'debugbar.options.views.exclude_paths' => 'array', 'debugbar.options.route.label' => 'boolean', 'debugbar.options.session.hiddens' => 'array', 'debugbar.options.symfony_request.label' => 'boolean', 'debugbar.options.symfony_request.hiddens' => 'array', 'debugbar.options.events.data' => 'boolean', + 'debugbar.options.events.excluded' => 'array', 'debugbar.options.logs.file' => 'NULL', 'debugbar.options.cache.values' => 'boolean', 'debugbar.inject' => 'boolean', @@ -1778,6 +1862,7 @@ namespace PHPSTORM_META { 'ignition.argument_reducers' => 'array', ])); override(\Illuminate\Config\Repository::get(), map([ + 'concurrency.default' => 'string', 'app.name' => 'string', 'app.env' => 'string', 'app.debug' => 'boolean', @@ -1835,6 +1920,8 @@ namespace PHPSTORM_META { 'app.aliases.DataTables' => 'string', 'app.aliases.Yard' => 'string', 'app.aliases.DHL' => 'string', + 'app.aliases.Form' => 'string', + 'app.aliases.Html' => 'string', 'app.mode' => 'string', 'app.url_crm' => 'string', 'app.domain' => 'string', @@ -1993,6 +2080,11 @@ namespace PHPSTORM_META { 'database.redis.default.password' => 'NULL', 'database.redis.default.port' => 'string', 'database.redis.default.database' => 'integer', + 'database.redis.horizon.host' => 'string', + 'database.redis.horizon.password' => 'NULL', + 'database.redis.horizon.port' => 'string', + 'database.redis.horizon.database' => 'integer', + 'database.redis.horizon.options.prefix' => 'string', 'datatables.search.smart' => 'boolean', 'datatables.search.multi_term' => 'boolean', 'datatables.search.case_insensitive' => 'boolean', @@ -2015,9 +2107,9 @@ namespace PHPSTORM_META { 'datatables.callback' => 'array', 'dhl.base_url' => 'string', 'dhl.api_key' => 'string', - 'dhl.username' => 'NULL', - 'dhl.password' => 'NULL', - 'dhl.billing_number' => 'NULL', + 'dhl.username' => 'string', + 'dhl.password' => 'string', + 'dhl.billing_number' => 'string', 'dhl.default_product' => 'string', 'dhl.label_format' => 'string', 'dhl.profile' => 'string', @@ -2025,89 +2117,29 @@ namespace PHPSTORM_META { 'dhl.webhook.secret' => 'NULL', 'dhl.webhook.route' => 'string', 'dhl.use_queue' => 'boolean', - 'dhl.api.api_key' => 'string', - 'dhl.api.api_secret' => 'string', - 'dhl.api.username' => 'string', - 'dhl.api.password' => 'string', - 'dhl.api.account_number_default' => 'string', - 'dhl.api.product_accounts.V01PAK' => 'string', - 'dhl.api.product_accounts.V62WP' => 'string', - 'dhl.api.product_accounts.V53PAK' => 'string', - 'dhl.api.product_accounts.V07PAK' => 'string', - 'dhl.api.sandbox' => 'boolean', - 'dhl.api.test_mode' => 'boolean', - 'dhl.api.api_type' => 'string', - 'dhl.api.endpoints.developer.sandbox' => 'string', - 'dhl.api.endpoints.developer.production' => 'string', - 'dhl.api.endpoints.business_customer.sandbox' => 'string', - 'dhl.api.endpoints.business_customer.production' => 'string', + 'dhl.print_format' => 'string', + 'dhl.retoure_print_format' => 'string', 'dhl.sender.company' => 'string', 'dhl.sender.name' => 'string', 'dhl.sender.street' => 'string', - 'dhl.sender.street_number' => 'string', - 'dhl.sender.postal_code' => 'string', + 'dhl.sender.houseNumber' => 'string', + 'dhl.sender.postalCode' => 'string', 'dhl.sender.city' => 'string', - 'dhl.sender.state' => 'string', 'dhl.sender.country' => 'string', 'dhl.sender.email' => 'string', 'dhl.sender.phone' => 'string', - 'dhl.defaults.product' => 'string', - 'dhl.defaults.product_international' => 'string', - 'dhl.defaults.weight_unit' => 'string', - 'dhl.defaults.dimension_unit' => 'string', - 'dhl.defaults.currency' => 'string', - 'dhl.defaults.dimensions.length' => 'integer', - 'dhl.defaults.dimensions.width' => 'integer', - 'dhl.defaults.dimensions.height' => 'integer', - 'dhl.defaults.weight' => 'double', - 'dhl.defaults.services.premium' => 'boolean', - 'dhl.defaults.services.endorsement' => 'string', - 'dhl.defaults.services.visual_check_of_age' => 'boolean', - 'dhl.defaults.services.named_person_only' => 'boolean', - 'dhl.defaults.services.return_receipt' => 'boolean', - 'dhl.defaults.services.bulky_goods' => 'boolean', - 'dhl.labels.format' => 'string', - 'dhl.labels.size' => 'string', - 'dhl.labels.storage_path' => 'string', - 'dhl.labels.public_path' => 'string', - 'dhl.labels.combine_on_page' => 'boolean', - 'dhl.returns.enabled' => 'boolean', - 'dhl.returns.product' => 'string', - 'dhl.returns.receiver_id' => 'string', - 'dhl.tracking.enabled' => 'boolean', - 'dhl.tracking.username' => 'NULL', - 'dhl.tracking.password' => 'NULL', - 'dhl.tracking.auto_update' => 'boolean', - 'dhl.tracking.update_interval' => 'string', - 'dhl.tracking.max_retries' => 'integer', + 'dhl.account_numbers.default' => 'string', + 'dhl.account_numbers.V01PAK' => 'string', + 'dhl.account_numbers.V62WP' => 'string', + 'dhl.account_numbers.V53PAK' => 'string', + 'dhl.account_numbers.V07PAK' => 'string', 'dhl.logging.enabled' => 'boolean', 'dhl.logging.level' => 'string', 'dhl.logging.channel' => 'string', - 'dhl.logging.log_requests' => 'boolean', - 'dhl.logging.log_responses' => 'boolean', - 'dhl.queue.connection' => 'string', - 'dhl.queue.queue' => 'string', - 'dhl.queue.timeout' => 'string', - 'dhl.queue.retry_after' => 'integer', - 'dhl.queue.max_tries' => 'string', - 'dhl.error_handling.throw_exceptions' => 'boolean', - 'dhl.error_handling.notification_email' => 'string', - 'dhl.error_handling.retry_failed_jobs' => 'boolean', - 'dhl.cache.enabled' => 'boolean', - 'dhl.cache.ttl' => 'string', - 'dhl.cache.prefix' => 'string', - 'dhl.development.fake_api_calls' => 'boolean', - 'dhl.development.mock_responses' => 'boolean', - 'dhl.development.debug_mode' => 'boolean', - 'dhl.supported_countries.domestic' => 'array', - 'dhl.supported_countries.eu' => 'array', - 'dhl.supported_countries.international' => 'array', - 'dhl.status_mapping.pre-transit' => 'string', - 'dhl.status_mapping.transit' => 'string', - 'dhl.status_mapping.delivered' => 'string', - 'dhl.status_mapping.returned' => 'string', - 'dhl.status_mapping.failure' => 'string', - 'dhl.status_mapping.unknown' => 'string', + 'dhl.legacy.api_type' => 'string', + 'dhl.legacy.api_secret' => 'string', + 'dhl.legacy.sandbox' => 'boolean', + 'dhl.legacy.test_mode' => 'boolean', 'domains.protocol' => 'string', 'domains.domains.main.host' => 'string', 'domains.domains.main.type' => 'string', @@ -2143,7 +2175,7 @@ namespace PHPSTORM_META { 'filesystems.disks.import.driver' => 'string', 'filesystems.disks.import.root' => 'string', 'filesystems.disks.import.url' => 'string', - 'filesystems.links./Users/kadmin/Websites/mivita.care/public/storage' => 'string', + 'filesystems.links./var/www/html/public/storage' => 'string', 'filesystems.cloud' => 'string', 'hashing.driver' => 'string', 'hashing.bcrypt.rounds' => 'integer', @@ -2151,6 +2183,38 @@ namespace PHPSTORM_META { 'hashing.argon.threads' => 'integer', 'hashing.argon.time' => 'integer', 'hashing.rehash_on_login' => 'boolean', + 'horizon.domain' => 'NULL', + 'horizon.path' => 'string', + 'horizon.use' => 'string', + 'horizon.prefix' => 'string', + 'horizon.middleware' => 'array', + 'horizon.waits.redis:default' => 'integer', + 'horizon.trim.recent' => 'integer', + 'horizon.trim.pending' => 'integer', + 'horizon.trim.completed' => 'integer', + 'horizon.trim.recent_failed' => 'integer', + 'horizon.trim.failed' => 'integer', + 'horizon.trim.monitored' => 'integer', + 'horizon.silenced' => 'array', + 'horizon.metrics.trim_snapshots.job' => 'integer', + 'horizon.metrics.trim_snapshots.queue' => 'integer', + 'horizon.fast_termination' => 'boolean', + 'horizon.memory_limit' => 'integer', + 'horizon.defaults.supervisor-1.connection' => 'string', + 'horizon.defaults.supervisor-1.queue' => 'array', + 'horizon.defaults.supervisor-1.balance' => 'string', + 'horizon.defaults.supervisor-1.autoScalingStrategy' => 'string', + 'horizon.defaults.supervisor-1.maxProcesses' => 'integer', + 'horizon.defaults.supervisor-1.maxTime' => 'integer', + 'horizon.defaults.supervisor-1.maxJobs' => 'integer', + 'horizon.defaults.supervisor-1.memory' => 'integer', + 'horizon.defaults.supervisor-1.tries' => 'integer', + 'horizon.defaults.supervisor-1.timeout' => 'integer', + 'horizon.defaults.supervisor-1.nice' => 'integer', + 'horizon.environments.production.supervisor-1.maxProcesses' => 'integer', + 'horizon.environments.production.supervisor-1.balanceMaxShift' => 'integer', + 'horizon.environments.production.supervisor-1.balanceCooldown' => 'integer', + 'horizon.environments.local.supervisor-1.maxProcesses' => 'integer', 'ide-helper.filename' => 'string', 'ide-helper.models_filename' => 'string', 'ide-helper.meta_filename' => 'string', @@ -2159,6 +2223,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', @@ -2183,11 +2248,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.format' => 'string', 'ide-helper.custom_db_types' => 'array', 'localization.supportedLocales.de.name' => 'string', @@ -2247,14 +2312,16 @@ namespace PHPSTORM_META { 'logging.channels.payment.path' => 'string', 'logging.channels.cron.driver' => 'string', 'logging.channels.cron.path' => 'string', + 'logging.channels.deprecations.driver' => 'string', + 'logging.channels.deprecations.handler' => 'string', 'mail.default' => 'string', 'mail.mailers.smtp.transport' => 'string', 'mail.mailers.smtp.scheme' => 'NULL', 'mail.mailers.smtp.url' => 'NULL', 'mail.mailers.smtp.host' => 'string', 'mail.mailers.smtp.port' => 'string', - 'mail.mailers.smtp.username' => 'string', - 'mail.mailers.smtp.password' => 'string', + 'mail.mailers.smtp.username' => 'NULL', + 'mail.mailers.smtp.password' => 'NULL', 'mail.mailers.smtp.timeout' => 'NULL', 'mail.mailers.smtp.local_domain' => 'string', 'mail.mailers.ses.transport' => 'string', @@ -2276,9 +2343,9 @@ namespace PHPSTORM_META { 'mail.driver' => 'string', 'mail.host' => 'string', 'mail.port' => 'string', - 'mail.encryption' => 'NULL', - 'mail.username' => 'string', - 'mail.password' => 'string', + 'mail.encryption' => 'string', + 'mail.username' => 'NULL', + 'mail.password' => 'NULL', 'mail.sendmail' => 'string', 'mivita.renewal_days' => 'string', 'mivita.abo_booking_days' => 'string', @@ -2434,7 +2501,6 @@ namespace PHPSTORM_META { 'trustedproxy.headers.aws_cloud_front_for' => 'string', 'view.paths' => 'array', 'view.compiled' => 'string', - 'concurrency.default' => 'string', 'debugbar.enabled' => 'NULL', 'debugbar.hide_empty_tabs' => 'boolean', 'debugbar.except' => 'array', @@ -2448,7 +2514,7 @@ namespace PHPSTORM_META { 'debugbar.storage.port' => 'integer', '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', @@ -2490,6 +2556,7 @@ namespace PHPSTORM_META { 'debugbar.options.memory.precision' => 'integer', 'debugbar.options.auth.show_name' => 'boolean', 'debugbar.options.auth.show_guards' => 'boolean', + 'debugbar.options.gate.trace' => 'boolean', 'debugbar.options.db.with_params' => 'boolean', 'debugbar.options.db.exclude_paths' => 'array', 'debugbar.options.db.backtrace' => 'boolean', @@ -2508,12 +2575,14 @@ namespace PHPSTORM_META { 'debugbar.options.views.timeline' => 'boolean', 'debugbar.options.views.data' => 'boolean', 'debugbar.options.views.group' => 'integer', + 'debugbar.options.views.inertia_pages' => 'string', 'debugbar.options.views.exclude_paths' => 'array', 'debugbar.options.route.label' => 'boolean', 'debugbar.options.session.hiddens' => 'array', 'debugbar.options.symfony_request.label' => 'boolean', 'debugbar.options.symfony_request.hiddens' => 'array', 'debugbar.options.events.data' => 'boolean', + 'debugbar.options.events.excluded' => 'array', 'debugbar.options.logs.file' => 'NULL', 'debugbar.options.cache.values' => 'boolean', 'debugbar.inject' => 'boolean', @@ -2644,6 +2713,7 @@ namespace PHPSTORM_META { 'ignition.argument_reducers' => 'array', ])); override(\Illuminate\Support\Facades\Config::get(), map([ + 'concurrency.default' => 'string', 'app.name' => 'string', 'app.env' => 'string', 'app.debug' => 'boolean', @@ -2701,6 +2771,8 @@ namespace PHPSTORM_META { 'app.aliases.DataTables' => 'string', 'app.aliases.Yard' => 'string', 'app.aliases.DHL' => 'string', + 'app.aliases.Form' => 'string', + 'app.aliases.Html' => 'string', 'app.mode' => 'string', 'app.url_crm' => 'string', 'app.domain' => 'string', @@ -2859,6 +2931,11 @@ namespace PHPSTORM_META { 'database.redis.default.password' => 'NULL', 'database.redis.default.port' => 'string', 'database.redis.default.database' => 'integer', + 'database.redis.horizon.host' => 'string', + 'database.redis.horizon.password' => 'NULL', + 'database.redis.horizon.port' => 'string', + 'database.redis.horizon.database' => 'integer', + 'database.redis.horizon.options.prefix' => 'string', 'datatables.search.smart' => 'boolean', 'datatables.search.multi_term' => 'boolean', 'datatables.search.case_insensitive' => 'boolean', @@ -2881,9 +2958,9 @@ namespace PHPSTORM_META { 'datatables.callback' => 'array', 'dhl.base_url' => 'string', 'dhl.api_key' => 'string', - 'dhl.username' => 'NULL', - 'dhl.password' => 'NULL', - 'dhl.billing_number' => 'NULL', + 'dhl.username' => 'string', + 'dhl.password' => 'string', + 'dhl.billing_number' => 'string', 'dhl.default_product' => 'string', 'dhl.label_format' => 'string', 'dhl.profile' => 'string', @@ -2891,89 +2968,29 @@ namespace PHPSTORM_META { 'dhl.webhook.secret' => 'NULL', 'dhl.webhook.route' => 'string', 'dhl.use_queue' => 'boolean', - 'dhl.api.api_key' => 'string', - 'dhl.api.api_secret' => 'string', - 'dhl.api.username' => 'string', - 'dhl.api.password' => 'string', - 'dhl.api.account_number_default' => 'string', - 'dhl.api.product_accounts.V01PAK' => 'string', - 'dhl.api.product_accounts.V62WP' => 'string', - 'dhl.api.product_accounts.V53PAK' => 'string', - 'dhl.api.product_accounts.V07PAK' => 'string', - 'dhl.api.sandbox' => 'boolean', - 'dhl.api.test_mode' => 'boolean', - 'dhl.api.api_type' => 'string', - 'dhl.api.endpoints.developer.sandbox' => 'string', - 'dhl.api.endpoints.developer.production' => 'string', - 'dhl.api.endpoints.business_customer.sandbox' => 'string', - 'dhl.api.endpoints.business_customer.production' => 'string', + 'dhl.print_format' => 'string', + 'dhl.retoure_print_format' => 'string', 'dhl.sender.company' => 'string', 'dhl.sender.name' => 'string', 'dhl.sender.street' => 'string', - 'dhl.sender.street_number' => 'string', - 'dhl.sender.postal_code' => 'string', + 'dhl.sender.houseNumber' => 'string', + 'dhl.sender.postalCode' => 'string', 'dhl.sender.city' => 'string', - 'dhl.sender.state' => 'string', 'dhl.sender.country' => 'string', 'dhl.sender.email' => 'string', 'dhl.sender.phone' => 'string', - 'dhl.defaults.product' => 'string', - 'dhl.defaults.product_international' => 'string', - 'dhl.defaults.weight_unit' => 'string', - 'dhl.defaults.dimension_unit' => 'string', - 'dhl.defaults.currency' => 'string', - 'dhl.defaults.dimensions.length' => 'integer', - 'dhl.defaults.dimensions.width' => 'integer', - 'dhl.defaults.dimensions.height' => 'integer', - 'dhl.defaults.weight' => 'double', - 'dhl.defaults.services.premium' => 'boolean', - 'dhl.defaults.services.endorsement' => 'string', - 'dhl.defaults.services.visual_check_of_age' => 'boolean', - 'dhl.defaults.services.named_person_only' => 'boolean', - 'dhl.defaults.services.return_receipt' => 'boolean', - 'dhl.defaults.services.bulky_goods' => 'boolean', - 'dhl.labels.format' => 'string', - 'dhl.labels.size' => 'string', - 'dhl.labels.storage_path' => 'string', - 'dhl.labels.public_path' => 'string', - 'dhl.labels.combine_on_page' => 'boolean', - 'dhl.returns.enabled' => 'boolean', - 'dhl.returns.product' => 'string', - 'dhl.returns.receiver_id' => 'string', - 'dhl.tracking.enabled' => 'boolean', - 'dhl.tracking.username' => 'NULL', - 'dhl.tracking.password' => 'NULL', - 'dhl.tracking.auto_update' => 'boolean', - 'dhl.tracking.update_interval' => 'string', - 'dhl.tracking.max_retries' => 'integer', + 'dhl.account_numbers.default' => 'string', + 'dhl.account_numbers.V01PAK' => 'string', + 'dhl.account_numbers.V62WP' => 'string', + 'dhl.account_numbers.V53PAK' => 'string', + 'dhl.account_numbers.V07PAK' => 'string', 'dhl.logging.enabled' => 'boolean', 'dhl.logging.level' => 'string', 'dhl.logging.channel' => 'string', - 'dhl.logging.log_requests' => 'boolean', - 'dhl.logging.log_responses' => 'boolean', - 'dhl.queue.connection' => 'string', - 'dhl.queue.queue' => 'string', - 'dhl.queue.timeout' => 'string', - 'dhl.queue.retry_after' => 'integer', - 'dhl.queue.max_tries' => 'string', - 'dhl.error_handling.throw_exceptions' => 'boolean', - 'dhl.error_handling.notification_email' => 'string', - 'dhl.error_handling.retry_failed_jobs' => 'boolean', - 'dhl.cache.enabled' => 'boolean', - 'dhl.cache.ttl' => 'string', - 'dhl.cache.prefix' => 'string', - 'dhl.development.fake_api_calls' => 'boolean', - 'dhl.development.mock_responses' => 'boolean', - 'dhl.development.debug_mode' => 'boolean', - 'dhl.supported_countries.domestic' => 'array', - 'dhl.supported_countries.eu' => 'array', - 'dhl.supported_countries.international' => 'array', - 'dhl.status_mapping.pre-transit' => 'string', - 'dhl.status_mapping.transit' => 'string', - 'dhl.status_mapping.delivered' => 'string', - 'dhl.status_mapping.returned' => 'string', - 'dhl.status_mapping.failure' => 'string', - 'dhl.status_mapping.unknown' => 'string', + 'dhl.legacy.api_type' => 'string', + 'dhl.legacy.api_secret' => 'string', + 'dhl.legacy.sandbox' => 'boolean', + 'dhl.legacy.test_mode' => 'boolean', 'domains.protocol' => 'string', 'domains.domains.main.host' => 'string', 'domains.domains.main.type' => 'string', @@ -3009,7 +3026,7 @@ namespace PHPSTORM_META { 'filesystems.disks.import.driver' => 'string', 'filesystems.disks.import.root' => 'string', 'filesystems.disks.import.url' => 'string', - 'filesystems.links./Users/kadmin/Websites/mivita.care/public/storage' => 'string', + 'filesystems.links./var/www/html/public/storage' => 'string', 'filesystems.cloud' => 'string', 'hashing.driver' => 'string', 'hashing.bcrypt.rounds' => 'integer', @@ -3017,6 +3034,38 @@ namespace PHPSTORM_META { 'hashing.argon.threads' => 'integer', 'hashing.argon.time' => 'integer', 'hashing.rehash_on_login' => 'boolean', + 'horizon.domain' => 'NULL', + 'horizon.path' => 'string', + 'horizon.use' => 'string', + 'horizon.prefix' => 'string', + 'horizon.middleware' => 'array', + 'horizon.waits.redis:default' => 'integer', + 'horizon.trim.recent' => 'integer', + 'horizon.trim.pending' => 'integer', + 'horizon.trim.completed' => 'integer', + 'horizon.trim.recent_failed' => 'integer', + 'horizon.trim.failed' => 'integer', + 'horizon.trim.monitored' => 'integer', + 'horizon.silenced' => 'array', + 'horizon.metrics.trim_snapshots.job' => 'integer', + 'horizon.metrics.trim_snapshots.queue' => 'integer', + 'horizon.fast_termination' => 'boolean', + 'horizon.memory_limit' => 'integer', + 'horizon.defaults.supervisor-1.connection' => 'string', + 'horizon.defaults.supervisor-1.queue' => 'array', + 'horizon.defaults.supervisor-1.balance' => 'string', + 'horizon.defaults.supervisor-1.autoScalingStrategy' => 'string', + 'horizon.defaults.supervisor-1.maxProcesses' => 'integer', + 'horizon.defaults.supervisor-1.maxTime' => 'integer', + 'horizon.defaults.supervisor-1.maxJobs' => 'integer', + 'horizon.defaults.supervisor-1.memory' => 'integer', + 'horizon.defaults.supervisor-1.tries' => 'integer', + 'horizon.defaults.supervisor-1.timeout' => 'integer', + 'horizon.defaults.supervisor-1.nice' => 'integer', + 'horizon.environments.production.supervisor-1.maxProcesses' => 'integer', + 'horizon.environments.production.supervisor-1.balanceMaxShift' => 'integer', + 'horizon.environments.production.supervisor-1.balanceCooldown' => 'integer', + 'horizon.environments.local.supervisor-1.maxProcesses' => 'integer', 'ide-helper.filename' => 'string', 'ide-helper.models_filename' => 'string', 'ide-helper.meta_filename' => 'string', @@ -3025,6 +3074,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', @@ -3049,11 +3099,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.format' => 'string', 'ide-helper.custom_db_types' => 'array', 'localization.supportedLocales.de.name' => 'string', @@ -3113,14 +3163,16 @@ namespace PHPSTORM_META { 'logging.channels.payment.path' => 'string', 'logging.channels.cron.driver' => 'string', 'logging.channels.cron.path' => 'string', + 'logging.channels.deprecations.driver' => 'string', + 'logging.channels.deprecations.handler' => 'string', 'mail.default' => 'string', 'mail.mailers.smtp.transport' => 'string', 'mail.mailers.smtp.scheme' => 'NULL', 'mail.mailers.smtp.url' => 'NULL', 'mail.mailers.smtp.host' => 'string', 'mail.mailers.smtp.port' => 'string', - 'mail.mailers.smtp.username' => 'string', - 'mail.mailers.smtp.password' => 'string', + 'mail.mailers.smtp.username' => 'NULL', + 'mail.mailers.smtp.password' => 'NULL', 'mail.mailers.smtp.timeout' => 'NULL', 'mail.mailers.smtp.local_domain' => 'string', 'mail.mailers.ses.transport' => 'string', @@ -3142,9 +3194,9 @@ namespace PHPSTORM_META { 'mail.driver' => 'string', 'mail.host' => 'string', 'mail.port' => 'string', - 'mail.encryption' => 'NULL', - 'mail.username' => 'string', - 'mail.password' => 'string', + 'mail.encryption' => 'string', + 'mail.username' => 'NULL', + 'mail.password' => 'NULL', 'mail.sendmail' => 'string', 'mivita.renewal_days' => 'string', 'mivita.abo_booking_days' => 'string', @@ -3300,7 +3352,6 @@ namespace PHPSTORM_META { 'trustedproxy.headers.aws_cloud_front_for' => 'string', 'view.paths' => 'array', 'view.compiled' => 'string', - 'concurrency.default' => 'string', 'debugbar.enabled' => 'NULL', 'debugbar.hide_empty_tabs' => 'boolean', 'debugbar.except' => 'array', @@ -3314,7 +3365,7 @@ namespace PHPSTORM_META { 'debugbar.storage.port' => 'integer', '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', @@ -3356,6 +3407,7 @@ namespace PHPSTORM_META { 'debugbar.options.memory.precision' => 'integer', 'debugbar.options.auth.show_name' => 'boolean', 'debugbar.options.auth.show_guards' => 'boolean', + 'debugbar.options.gate.trace' => 'boolean', 'debugbar.options.db.with_params' => 'boolean', 'debugbar.options.db.exclude_paths' => 'array', 'debugbar.options.db.backtrace' => 'boolean', @@ -3374,12 +3426,14 @@ namespace PHPSTORM_META { 'debugbar.options.views.timeline' => 'boolean', 'debugbar.options.views.data' => 'boolean', 'debugbar.options.views.group' => 'integer', + 'debugbar.options.views.inertia_pages' => 'string', 'debugbar.options.views.exclude_paths' => 'array', 'debugbar.options.route.label' => 'boolean', 'debugbar.options.session.hiddens' => 'array', 'debugbar.options.symfony_request.label' => 'boolean', 'debugbar.options.symfony_request.hiddens' => 'array', 'debugbar.options.events.data' => 'boolean', + 'debugbar.options.events.excluded' => 'array', 'debugbar.options.logs.file' => 'NULL', 'debugbar.options.cache.values' => 'boolean', 'debugbar.inject' => 'boolean', @@ -3547,157 +3601,154 @@ namespace PHPSTORM_META { override(\optional(0), type(0)); registerArgumentsSet('auth', -'getModelClass','viewAny','view','create','update', -'delete','isOwner','denyWithStatus','denyAsNotFound',); +'viewHorizon','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.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.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.URL','app.aliases.Validator','app.aliases.View','app.aliases.Carbon', -'app.aliases.Date','app.aliases.HTMLHelper','app.aliases.Util','app.aliases.Excel','app.aliases.DataTables', -'app.aliases.Yard','app.aliases.DHL','app.mode','app.url_crm','app.domain', -'app.tld_care','app.tld_shop','app.protocol','app.pre_url_main','app.pre_url_crm', -'app.pre_url_portal','app.checkout_url','app.contact_mail','app.checkout_mail','app.checkout_test_mail', -'app.info_mail','app.priority_mail','app.default_mail','app.info_test_mail','app.exception_mail', -'app.ipinfo','app.main_tax','app.main_tax_rate','app.shipping_tax','app.php_version', -'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.guards.customers.driver','auth.guards.customers.provider', -'auth.providers.users.driver','auth.providers.users.model','auth.providers.customers.driver','auth.providers.customers.model','auth.passwords.users.provider', -'auth.passwords.users.table','auth.passwords.users.expire','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.encrypted','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','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.database','database.connections.sqlite.prefix','database.connections.mysql.driver', -'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.strict', -'database.connections.mysql.engine','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.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.schema', -'database.connections.pgsql.sslmode','database.connections.sqlsrv.driver','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.migrations', -'database.redis.client','database.redis.default.host','database.redis.default.password','database.redis.default.port','database.redis.default.database', -'datatables.search.smart','datatables.search.multi_term','datatables.search.case_insensitive','datatables.search.use_wildcards','datatables.index_column', -'datatables.engines.eloquent','datatables.engines.query','datatables.engines.collection','datatables.engines.resource','datatables.builders', -'datatables.nulls_last_sql','datatables.error','datatables.columns.excess','datatables.columns.escape','datatables.columns.raw', -'datatables.columns.blacklist','datatables.columns.whitelist','datatables.json.header','datatables.json.options','datatables.callback', -'dhl.base_url','dhl.api_key','dhl.username','dhl.password','dhl.billing_number', -'dhl.default_product','dhl.label_format','dhl.profile','dhl.webhook.enabled','dhl.webhook.secret', -'dhl.webhook.route','dhl.use_queue','dhl.api.api_key','dhl.api.api_secret','dhl.api.username', -'dhl.api.password','dhl.api.account_number_default','dhl.api.product_accounts.V01PAK','dhl.api.product_accounts.V62WP','dhl.api.product_accounts.V53PAK', -'dhl.api.product_accounts.V07PAK','dhl.api.sandbox','dhl.api.test_mode','dhl.api.api_type','dhl.api.endpoints.developer.sandbox', -'dhl.api.endpoints.developer.production','dhl.api.endpoints.business_customer.sandbox','dhl.api.endpoints.business_customer.production','dhl.sender.company','dhl.sender.name', -'dhl.sender.street','dhl.sender.street_number','dhl.sender.postal_code','dhl.sender.city','dhl.sender.state', -'dhl.sender.country','dhl.sender.email','dhl.sender.phone','dhl.defaults.product','dhl.defaults.product_international', -'dhl.defaults.weight_unit','dhl.defaults.dimension_unit','dhl.defaults.currency','dhl.defaults.dimensions.length','dhl.defaults.dimensions.width', -'dhl.defaults.dimensions.height','dhl.defaults.weight','dhl.defaults.services.premium','dhl.defaults.services.endorsement','dhl.defaults.services.visual_check_of_age', -'dhl.defaults.services.named_person_only','dhl.defaults.services.return_receipt','dhl.defaults.services.bulky_goods','dhl.labels.format','dhl.labels.size', -'dhl.labels.storage_path','dhl.labels.public_path','dhl.labels.combine_on_page','dhl.returns.enabled','dhl.returns.product', -'dhl.returns.receiver_id','dhl.tracking.enabled','dhl.tracking.username','dhl.tracking.password','dhl.tracking.auto_update', -'dhl.tracking.update_interval','dhl.tracking.max_retries','dhl.logging.enabled','dhl.logging.level','dhl.logging.channel', -'dhl.logging.log_requests','dhl.logging.log_responses','dhl.queue.connection','dhl.queue.queue','dhl.queue.timeout', -'dhl.queue.retry_after','dhl.queue.max_tries','dhl.error_handling.throw_exceptions','dhl.error_handling.notification_email','dhl.error_handling.retry_failed_jobs', -'dhl.cache.enabled','dhl.cache.ttl','dhl.cache.prefix','dhl.development.fake_api_calls','dhl.development.mock_responses', -'dhl.development.debug_mode','dhl.supported_countries.domestic','dhl.supported_countries.eu','dhl.supported_countries.international','dhl.status_mapping.pre-transit', -'dhl.status_mapping.transit','dhl.status_mapping.delivered','dhl.status_mapping.returned','dhl.status_mapping.failure','dhl.status_mapping.unknown', -'domains.protocol','domains.domains.main.host','domains.domains.main.type','domains.domains.shop.host','domains.domains.shop.type', -'domains.domains.shop.default_user_shop','domains.domains.crm.host','domains.domains.crm.type','domains.domains.portal.host','domains.domains.portal.type', -'domains.domains.checkout.host','domains.domains.checkout.type','domains.domains.user-shop.host','domains.domains.user-shop.type','domains.reserved_subdomains', -'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/mivita.care/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', +'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.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.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.URL','app.aliases.Validator','app.aliases.View', +'app.aliases.Carbon','app.aliases.Date','app.aliases.HTMLHelper','app.aliases.Util','app.aliases.Excel', +'app.aliases.DataTables','app.aliases.Yard','app.aliases.DHL','app.aliases.Form','app.aliases.Html', +'app.mode','app.url_crm','app.domain','app.tld_care','app.tld_shop', +'app.protocol','app.pre_url_main','app.pre_url_crm','app.pre_url_portal','app.checkout_url', +'app.contact_mail','app.checkout_mail','app.checkout_test_mail','app.info_mail','app.priority_mail', +'app.default_mail','app.info_test_mail','app.exception_mail','app.ipinfo','app.main_tax', +'app.main_tax_rate','app.shipping_tax','app.php_version','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.guards.customers.driver','auth.guards.customers.provider','auth.providers.users.driver','auth.providers.users.model', +'auth.providers.customers.driver','auth.providers.customers.model','auth.passwords.users.provider','auth.passwords.users.table','auth.passwords.users.expire', +'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.encrypted','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', +'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.database','database.connections.sqlite.prefix','database.connections.mysql.driver','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.strict','database.connections.mysql.engine','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.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.schema','database.connections.pgsql.sslmode','database.connections.sqlsrv.driver', +'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.migrations','database.redis.client','database.redis.default.host', +'database.redis.default.password','database.redis.default.port','database.redis.default.database','database.redis.horizon.host','database.redis.horizon.password', +'database.redis.horizon.port','database.redis.horizon.database','database.redis.horizon.options.prefix','datatables.search.smart','datatables.search.multi_term', +'datatables.search.case_insensitive','datatables.search.use_wildcards','datatables.index_column','datatables.engines.eloquent','datatables.engines.query', +'datatables.engines.collection','datatables.engines.resource','datatables.builders','datatables.nulls_last_sql','datatables.error', +'datatables.columns.excess','datatables.columns.escape','datatables.columns.raw','datatables.columns.blacklist','datatables.columns.whitelist', +'datatables.json.header','datatables.json.options','datatables.callback','dhl.base_url','dhl.api_key', +'dhl.username','dhl.password','dhl.billing_number','dhl.default_product','dhl.label_format', +'dhl.profile','dhl.webhook.enabled','dhl.webhook.secret','dhl.webhook.route','dhl.use_queue', +'dhl.print_format','dhl.retoure_print_format','dhl.sender.company','dhl.sender.name','dhl.sender.street', +'dhl.sender.houseNumber','dhl.sender.postalCode','dhl.sender.city','dhl.sender.country','dhl.sender.email', +'dhl.sender.phone','dhl.account_numbers.default','dhl.account_numbers.V01PAK','dhl.account_numbers.V62WP','dhl.account_numbers.V53PAK', +'dhl.account_numbers.V07PAK','dhl.logging.enabled','dhl.logging.level','dhl.logging.channel','dhl.legacy.api_type', +'dhl.legacy.api_secret','dhl.legacy.sandbox','dhl.legacy.test_mode','domains.protocol','domains.domains.main.host', +'domains.domains.main.type','domains.domains.shop.host','domains.domains.shop.type','domains.domains.shop.default_user_shop','domains.domains.crm.host', +'domains.domains.crm.type','domains.domains.portal.host','domains.domains.portal.type','domains.domains.checkout.host','domains.domains.checkout.type', +'domains.domains.user-shop.host','domains.domains.user-shop.type','domains.reserved_subdomains','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','horizon.domain','horizon.path','horizon.use','horizon.prefix', +'horizon.middleware','horizon.waits.redis:default','horizon.trim.recent','horizon.trim.pending','horizon.trim.completed', +'horizon.trim.recent_failed','horizon.trim.failed','horizon.trim.monitored','horizon.silenced','horizon.metrics.trim_snapshots.job', +'horizon.metrics.trim_snapshots.queue','horizon.fast_termination','horizon.memory_limit','horizon.defaults.supervisor-1.connection','horizon.defaults.supervisor-1.queue', +'horizon.defaults.supervisor-1.balance','horizon.defaults.supervisor-1.autoScalingStrategy','horizon.defaults.supervisor-1.maxProcesses','horizon.defaults.supervisor-1.maxTime','horizon.defaults.supervisor-1.maxJobs', +'horizon.defaults.supervisor-1.memory','horizon.defaults.supervisor-1.tries','horizon.defaults.supervisor-1.timeout','horizon.defaults.supervisor-1.nice','horizon.environments.production.supervisor-1.maxProcesses', +'horizon.environments.production.supervisor-1.balanceMaxShift','horizon.environments.production.supervisor-1.balanceCooldown','horizon.environments.local.supervisor-1.maxProcesses','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.extra.Yard', -'ide-helper.magic.Log.debug','ide-helper.magic.Log.info','ide-helper.magic.Log.notice','ide-helper.magic.Log.warning','ide-helper.magic.Log.error', -'ide-helper.magic.Log.critical','ide-helper.magic.Log.alert','ide-helper.magic.Log.emergency','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.format','ide-helper.custom_db_types','localization.supportedLocales.de.name','localization.supportedLocales.de.script','localization.supportedLocales.de.native', -'localization.supportedLocales.de.regional','localization.supportedLocales.en.name','localization.supportedLocales.en.script','localization.supportedLocales.en.native','localization.supportedLocales.en.regional', -'localization.supportedLocales.es.name','localization.supportedLocales.es.script','localization.supportedLocales.es.native','localization.supportedLocales.es.regional','logging.default', -'logging.deprecations.channel','logging.deprecations.trace','logging.channels.stack.driver','logging.channels.stack.channels','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.papertrail.handler_with.connectionString','logging.channels.papertrail.processors','logging.channels.stderr.driver','logging.channels.stderr.handler', -'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.order_controller.driver','logging.channels.order_controller.path', -'logging.channels.order_controller.level','logging.channels.payone.driver','logging.channels.payone.path','logging.channels.cleanup.driver','logging.channels.cleanup.path', -'logging.channels.payment.driver','logging.channels.payment.path','logging.channels.cron.driver','logging.channels.cron.path','mail.default', -'mail.mailers.smtp.transport','mail.mailers.smtp.scheme','mail.mailers.smtp.url','mail.mailers.smtp.host','mail.mailers.smtp.port', -'mail.mailers.smtp.username','mail.mailers.smtp.password','mail.mailers.smtp.timeout','mail.mailers.smtp.local_domain','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','mail.mailers.roundrobin.transport', -'mail.mailers.roundrobin.mailers','mail.from.address','mail.from.name','mail.markdown.theme','mail.markdown.paths', -'mail.driver','mail.host','mail.port','mail.encryption','mail.username', -'mail.password','mail.sendmail','mivita.renewal_days','mivita.abo_booking_days','mivita.remind_first_days', -'mivita.remind_sec_days','mivita.remind_last_days','mivita.edit_data_pass','mivita.add_number_id','models.*.path', -'models.*.namespace','models.*.parent','models.*.use','models.*.connection','models.*.timestamps', -'models.*.soft_deletes','models.*.date_format','models.*.per_page','models.*.base_files','models.*.snake_attributes', -'models.*.indent_with_space','models.*.qualified_tables','models.*.hidden','models.*.guarded','models.*.casts.*_json', -'models.*.except','models.*.only','models.*.table_prefix','models.*.lower_table_name_first','models.*.relation_name_strategy', -'models.*.with_property_constants','models.*.pluralize','models.*.override_pluralize_for','payone.defaults.aid','payone.defaults.mid', -'payone.defaults.portalid','payone.defaults.key','payone.defaults.mode','payone.defaults.api_version','payone.defaults.encoding', -'profanity.replaceFullWords','profanity.replaceWith','profanity.strReplace.a','profanity.strReplace.b','profanity.strReplace.c', -'profanity.strReplace.d','profanity.strReplace.e','profanity.strReplace.f','profanity.strReplace.g','profanity.strReplace.h', -'profanity.strReplace.i','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','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.sqs.driver','queue.connections.sqs.key','queue.connections.sqs.secret','queue.connections.sqs.prefix','queue.connections.sqs.queue', -'queue.connections.sqs.region','queue.connections.redis.driver','queue.connections.redis.connection','queue.connections.redis.queue','queue.connections.redis.retry_after', -'queue.connections.redis.block_for','queue.batching.database','queue.batching.table','queue.failed.database','queue.failed.table', -'services.postmark.token','services.ses.key','services.ses.secret','services.ses.region','services.resend.key', -'services.slack.notifications.bot_user_oauth_token','services.slack.notifications.channel','services.mailgun.domain','services.mailgun.secret','services.sparkpost.secret', -'services.stripe.model','services.stripe.key','services.stripe.secret','session.driver','session.lifetime', -'session.expire_on_close','session.encrypt','session.files','session.connection','session.table', -'session.store','session.lottery','session.cookie','session.path','session.domain', -'session.secure','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','tinker.commands','tinker.alias','tinker.dont_alias','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','trustedproxy.proxies','trustedproxy.headers.for','trustedproxy.headers.proto', -'trustedproxy.headers.host','trustedproxy.headers.port','trustedproxy.headers.prefix','trustedproxy.headers.aws_cloud_front_for','view.paths', -'view.compiled','concurrency.default','debugbar.enabled','debugbar.hide_empty_tabs','debugbar.except', -'debugbar.storage.enabled','debugbar.storage.open','debugbar.storage.driver','debugbar.storage.path','debugbar.storage.connection', -'debugbar.storage.provider','debugbar.storage.hostname','debugbar.storage.port','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.collectors.jobs','debugbar.collectors.pennant','debugbar.options.time.memory_usage', -'debugbar.options.messages.trace','debugbar.options.messages.capture_dumps','debugbar.options.memory.reset_peak','debugbar.options.memory.with_baseline','debugbar.options.memory.precision', -'debugbar.options.auth.show_name','debugbar.options.auth.show_guards','debugbar.options.db.with_params','debugbar.options.db.exclude_paths','debugbar.options.db.backtrace', -'debugbar.options.db.backtrace_exclude_paths','debugbar.options.db.timeline','debugbar.options.db.duration_background','debugbar.options.db.explain.enabled','debugbar.options.db.hints', -'debugbar.options.db.show_copy','debugbar.options.db.slow_threshold','debugbar.options.db.memory_usage','debugbar.options.db.soft_limit','debugbar.options.db.hard_limit', -'debugbar.options.mail.timeline','debugbar.options.mail.show_body','debugbar.options.views.timeline','debugbar.options.views.data','debugbar.options.views.group', -'debugbar.options.views.exclude_paths','debugbar.options.route.label','debugbar.options.session.hiddens','debugbar.options.symfony_request.label','debugbar.options.symfony_request.hiddens', -'debugbar.options.events.data','debugbar.options.logs.file','debugbar.options.cache.values','debugbar.inject','debugbar.route_prefix', +'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.extra.Yard','ide-helper.magic.Log.debug','ide-helper.magic.Log.info','ide-helper.magic.Log.notice','ide-helper.magic.Log.warning', +'ide-helper.magic.Log.error','ide-helper.magic.Log.critical','ide-helper.magic.Log.alert','ide-helper.magic.Log.emergency','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.format','ide-helper.custom_db_types','localization.supportedLocales.de.name','localization.supportedLocales.de.script', +'localization.supportedLocales.de.native','localization.supportedLocales.de.regional','localization.supportedLocales.en.name','localization.supportedLocales.en.script','localization.supportedLocales.en.native', +'localization.supportedLocales.en.regional','localization.supportedLocales.es.name','localization.supportedLocales.es.script','localization.supportedLocales.es.native','localization.supportedLocales.es.regional', +'logging.default','logging.deprecations.channel','logging.deprecations.trace','logging.channels.stack.driver','logging.channels.stack.channels', +'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.papertrail.handler_with.connectionString','logging.channels.papertrail.processors','logging.channels.stderr.driver', +'logging.channels.stderr.handler','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.order_controller.driver', +'logging.channels.order_controller.path','logging.channels.order_controller.level','logging.channels.payone.driver','logging.channels.payone.path','logging.channels.cleanup.driver', +'logging.channels.cleanup.path','logging.channels.payment.driver','logging.channels.payment.path','logging.channels.cron.driver','logging.channels.cron.path', +'logging.channels.deprecations.driver','logging.channels.deprecations.handler','mail.default','mail.mailers.smtp.transport','mail.mailers.smtp.scheme', +'mail.mailers.smtp.url','mail.mailers.smtp.host','mail.mailers.smtp.port','mail.mailers.smtp.username','mail.mailers.smtp.password', +'mail.mailers.smtp.timeout','mail.mailers.smtp.local_domain','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','mail.mailers.roundrobin.transport','mail.mailers.roundrobin.mailers','mail.from.address', +'mail.from.name','mail.markdown.theme','mail.markdown.paths','mail.driver','mail.host', +'mail.port','mail.encryption','mail.username','mail.password','mail.sendmail', +'mivita.renewal_days','mivita.abo_booking_days','mivita.remind_first_days','mivita.remind_sec_days','mivita.remind_last_days', +'mivita.edit_data_pass','mivita.add_number_id','models.*.path','models.*.namespace','models.*.parent', +'models.*.use','models.*.connection','models.*.timestamps','models.*.soft_deletes','models.*.date_format', +'models.*.per_page','models.*.base_files','models.*.snake_attributes','models.*.indent_with_space','models.*.qualified_tables', +'models.*.hidden','models.*.guarded','models.*.casts.*_json','models.*.except','models.*.only', +'models.*.table_prefix','models.*.lower_table_name_first','models.*.relation_name_strategy','models.*.with_property_constants','models.*.pluralize', +'models.*.override_pluralize_for','payone.defaults.aid','payone.defaults.mid','payone.defaults.portalid','payone.defaults.key', +'payone.defaults.mode','payone.defaults.api_version','payone.defaults.encoding','profanity.replaceFullWords','profanity.replaceWith', +'profanity.strReplace.a','profanity.strReplace.b','profanity.strReplace.c','profanity.strReplace.d','profanity.strReplace.e', +'profanity.strReplace.f','profanity.strReplace.g','profanity.strReplace.h','profanity.strReplace.i','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','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.sqs.driver','queue.connections.sqs.key', +'queue.connections.sqs.secret','queue.connections.sqs.prefix','queue.connections.sqs.queue','queue.connections.sqs.region','queue.connections.redis.driver', +'queue.connections.redis.connection','queue.connections.redis.queue','queue.connections.redis.retry_after','queue.connections.redis.block_for','queue.batching.database', +'queue.batching.table','queue.failed.database','queue.failed.table','services.postmark.token','services.ses.key', +'services.ses.secret','services.ses.region','services.resend.key','services.slack.notifications.bot_user_oauth_token','services.slack.notifications.channel', +'services.mailgun.domain','services.mailgun.secret','services.sparkpost.secret','services.stripe.model','services.stripe.key', +'services.stripe.secret','session.driver','session.lifetime','session.expire_on_close','session.encrypt', +'session.files','session.connection','session.table','session.store','session.lottery', +'session.cookie','session.path','session.domain','session.secure','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','tinker.commands', +'tinker.alias','tinker.dont_alias','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', +'trustedproxy.proxies','trustedproxy.headers.for','trustedproxy.headers.proto','trustedproxy.headers.host','trustedproxy.headers.port', +'trustedproxy.headers.prefix','trustedproxy.headers.aws_cloud_front_for','view.paths','view.compiled','debugbar.enabled', +'debugbar.hide_empty_tabs','debugbar.except','debugbar.storage.enabled','debugbar.storage.open','debugbar.storage.driver', +'debugbar.storage.path','debugbar.storage.connection','debugbar.storage.provider','debugbar.storage.hostname','debugbar.storage.port', +'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.collectors.jobs', +'debugbar.collectors.pennant','debugbar.options.time.memory_usage','debugbar.options.messages.trace','debugbar.options.messages.capture_dumps','debugbar.options.memory.reset_peak', +'debugbar.options.memory.with_baseline','debugbar.options.memory.precision','debugbar.options.auth.show_name','debugbar.options.auth.show_guards','debugbar.options.gate.trace', +'debugbar.options.db.with_params','debugbar.options.db.exclude_paths','debugbar.options.db.backtrace','debugbar.options.db.backtrace_exclude_paths','debugbar.options.db.timeline', +'debugbar.options.db.duration_background','debugbar.options.db.explain.enabled','debugbar.options.db.hints','debugbar.options.db.show_copy','debugbar.options.db.slow_threshold', +'debugbar.options.db.memory_usage','debugbar.options.db.soft_limit','debugbar.options.db.hard_limit','debugbar.options.mail.timeline','debugbar.options.mail.show_body', +'debugbar.options.views.timeline','debugbar.options.views.data','debugbar.options.views.group','debugbar.options.views.inertia_pages','debugbar.options.views.exclude_paths', +'debugbar.options.route.label','debugbar.options.session.hiddens','debugbar.options.symfony_request.label','debugbar.options.symfony_request.hiddens','debugbar.options.events.data', +'debugbar.options.events.excluded','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', @@ -3731,506 +3782,595 @@ 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','api.payment_status','api.google_merchant_feed','legal.data-protected', -'legal.imprint','legal.agb','contact.create','contact.store','zahlungsarten', -'versandkosten','storage_file','language.change','translation','product_image', -'storage_images','iq_image','user_shop_image','shop_product_image','checkout.checkout_card', -'checkout.checkout_card_final','checkout.transaction_status','checkout.transaction_status_post','checkout.transaction_approved','register_verify', -'data_protected','imprint','agb','contact_create','contact_store', -'public.tracking','public.tracking.check','main.register_user','main.register_user_member','main.register_user_post', -'main.register_user_finish','/','base.site',); +'languages.translations.update','languages.translations.create','languages.translations.store','horizon.stats.index','horizon.workload.index', +'horizon.masters.index','horizon.monitoring.index','horizon.monitoring.store','horizon.monitoring-tag.paginate','horizon.monitoring-tag.destroy', +'horizon.jobs-metrics.index','horizon.jobs-metrics.show','horizon.queues-metrics.index','horizon.queues-metrics.show','horizon.jobs-batches.index', +'horizon.jobs-batches.show','horizon.jobs-batches.retry','horizon.pending-jobs.index','horizon.completed-jobs.index','horizon.silenced-jobs.index', +'horizon.failed-jobs.index','horizon.failed-jobs.show','horizon.retry-jobs.show','horizon.jobs.show','horizon.index', +'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','api.payment_status','api.google_merchant_feed','legal.data-protected','legal.imprint','legal.agb','contact.create', +'contact.store','zahlungsarten','versandkosten','storage_file','language.change', +'translation','product_image','storage_images','iq_image','user_shop_image', +'shop_product_image','checkout.checkout_card','checkout.checkout_card_final','checkout.transaction_status','checkout.transaction_status_post', +'checkout.transaction_approved','register_verify','data_protected','imprint','agb', +'contact_create','contact_store','public.tracking','public.tracking.check','main.register_user', +'main.register_user_member','main.register_user_post','main.register_user_finish','/','base.site',); registerArgumentsSet('views', 'admin.abo._detail','admin.abo._executions','admin.abo._order_abo','admin.abo._order_abo_show','admin.abo.detail', 'admin.abo.index','admin.abo.modal_abo_update','admin.attribute.index','admin.business._user_detail_in','admin.business.commissions', -'admin.business.index','admin.business.modal_add_points','admin.business.modal_edit_points','admin.business.points','admin.business.show', -'admin.business.structure','admin.business.user_detail','admin.business_optimized._user_detail_in','admin.business_optimized.error','admin.business_optimized.show', -'admin.business_optimized.structure','admin.business_optimized.user_detail','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.dhl.cockpit','admin.dhl.create','admin.dhl.modal_create_shipment', -'admin.dhl.show','admin.downloadcenter.file_edit','admin.downloadcenter.file_upload','admin.downloadcenter.files','admin.downloadcenter.tags', -'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.level.index', -'admin.modal.business_user_detail','admin.modal.business_user_notfound','admin.modal.business_user_show','admin.modal.change_points','admin.modal.is_like_member', -'admin.modal.member','admin.modal.show_product','admin.modal.show_user_customers','admin.modal.user_level_edit','admin.payment.credit', -'admin.payment.credit_detail','admin.payment.credit_detail_long','admin.payment.invoice','admin.payment.modal_add_credit','admin.payment.modal_credit_status', -'admin.payment.salesvolume','admin.payment.taxadvisor','admin.payment_method.index','admin.product._form','admin.product.edit', -'admin.product.form','admin.product.images','admin.product.index','admin.revenue.index','admin.sales._detail', -'admin.sales._detail_collection','admin.sales._detail_homparty','admin.sales._detail_homparty_total','admin.sales._detail_homparty_user','admin.sales._detail_shopping_order', -'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.user.edit','admin.user.index','auth.change','auth.login','auth.passwords.email', -'auth.passwords.reset','auth.register','components.abo.product-table','components.abo.product-table-styles','dashboard._activities', -'dashboard._membership','dashboard._points','dashboard._reminder','dashboard._settings','dashboard._shop', -'dashboard.reminder','emails._auth','emails._blank','emails.auth','emails.blank', +'admin.business.modal_add_points','admin.business.modal_edit_points','admin.business.points','admin.business.show','admin.business.structure', +'admin.business.user_detail','admin.business_optimized._user_detail_in','admin.business_optimized.error','admin.business_optimized.show','admin.business_optimized.structure', +'admin.business_optimized.user_detail','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.dhl.cockpit','admin.dhl.create','admin.dhl.modal_create_shipment','admin.dhl.show', +'admin.downloadcenter.file_edit','admin.downloadcenter.file_upload','admin.downloadcenter.files','admin.downloadcenter.tags','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.level.index','admin.modal.business_user_detail', +'admin.modal.business_user_notfound','admin.modal.business_user_show','admin.modal.change_points','admin.modal.is_like_member','admin.modal.member', +'admin.modal.show_product','admin.modal.show_user_customers','admin.modal.user_level_edit','admin.payment.credit','admin.payment.credit_detail', +'admin.payment.credit_detail_long','admin.payment.invoice','admin.payment.modal_add_credit','admin.payment.modal_credit_status','admin.payment.salesvolume', +'admin.payment.taxadvisor','admin.payment_method.index','admin.product.edit','admin.product.form','admin.product.images', +'admin.product.index','admin.revenue.index','admin.sales._detail','admin.sales._detail_collection','admin.sales._detail_homparty', +'admin.sales._detail_homparty_total','admin.sales._detail_homparty_user','admin.sales._detail_shopping_order','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.user.edit','admin.user.index', +'auth.change','auth.login','auth.passwords.email','auth.passwords.reset','auth.register', +'dashboard._activities','dashboard._membership','dashboard._points','dashboard._reminder','dashboard._settings', +'dashboard._shop','emails._auth','emails._blank','emails.auth','emails.blank', 'emails.checkout','emails.checkout_status','emails.collection_detail','emails.contact','emails.custom', -'emails.custom_payment','emails.custom_payment_detail','emails.customer_otp','emails.exception','emails.homeparty_detail', -'emails.homeparty_detail_total','emails.homeparty_detail_user','emails.info','emails.shopping_order_detail','emails.sys', -'errors.401','errors.403','errors.404','errors.419','errors.429', -'errors.500','errors.503','errors._403','errors.illustrated-layout','errors.layout', -'errors.minimal','flash::message','flash::modal','home','layouts.app', -'layouts.application','layouts.auth','layouts.includes.header-language','layouts.includes.layout-footer','layouts.includes.layout-navbar', -'layouts.includes.layout-navbar-without','layouts.includes.layout-sidenav','layouts.layout-1','layouts.layout-1-flex','layouts.layout-2', -'layouts.layout-2-flex','layouts.layout-2-without','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.credit_details','pdf.credit_details_long','pdf.delivery','pdf.delivery-detail','pdf.delivery-homeparty', -'pdf.delivery-homeparty-detail','pdf.invoice','pdf.invoice-collection','pdf.invoice-detail','pdf.invoice-homeparty', -'pdf.invoice-homeparty-detail','pdf.invoice-journal-collection','portal.abo._create_basis_product','portal.abo._create_check','portal.abo._create_data', -'portal.abo._create_info','portal.abo._create_upgrade_products','portal.abo.componenten.product-table','portal.abo.componenten.product-table-styles','portal.abo.componenten.vat-info', -'portal.abo.my_abo','portal.abo.my_abo_create','portal.abo.no_shopping_user','portal.auth.change','portal.auth.login', -'portal.auth.verify-otp','portal.customer._edit','portal.customer._edit_form','portal.customer.edit','portal.dashboard', -'portal.dashboard.settings','portal.layout.application','portal.layouts.application','portal.layouts.auth','portal.layouts.includes.header-language', +'emails.custom_payment','emails.custom_payment_detail','emails.exception','emails.homeparty_detail','emails.homeparty_detail_total', +'emails.homeparty_detail_user','emails.info','emails.shopping_order_detail','emails.sys','errors.401', +'errors.403','errors.404','errors.419','errors.429','errors.500', +'errors.503','errors.illustrated-layout','errors.layout','errors.minimal','flash::message', +'flash::modal','home','layouts.app','layouts.application','layouts.auth', +'layouts.includes.header-language','layouts.includes.layout-footer','layouts.includes.layout-navbar','layouts.includes.layout-navbar-without','layouts.includes.layout-sidenav', +'layouts.layout-1','layouts.layout-1-flex','layouts.layout-2','layouts.layout-2-flex','layouts.layout-2-without', +'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.credit_details','pdf.credit_details_long', +'pdf.delivery','pdf.delivery-detail','pdf.delivery-homeparty','pdf.delivery-homeparty-detail','pdf.invoice', +'pdf.invoice-collection','pdf.invoice-detail','pdf.invoice-homeparty','pdf.invoice-homeparty-detail','pdf.invoice-journal-collection', +'portal.abo._create_basis_product','portal.abo._create_check','portal.abo._create_data','portal.abo._create_info','portal.abo._create_upgrade_products', +'portal.abo.componenten.product-table','portal.abo.componenten.product-table-styles','portal.abo.componenten.vat-info','portal.abo.my_abo','portal.abo.my_abo_create', +'portal.auth.change','portal.auth.login','portal.auth.verify-otp','portal.customer._edit_form','portal.customer.edit', +'portal.dashboard','portal.dashboard.settings','portal.layouts.application','portal.layouts.auth','portal.layouts.includes.header-language', 'portal.layouts.includes.layout-footer','portal.layouts.includes.layout-navbar','portal.layouts.includes.layout-navbar-without','portal.layouts.includes.layout-sidenav','portal.layouts.layout-2', -'portal.my_orders','portal.order._detail','portal.order._detail_shopping_order','portal.order.my_order_show','portal.order.my_orders', +'portal.order._detail','portal.order._detail_shopping_order','portal.order.my_order_show','portal.order.my_orders','public.tracking', '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.import', -'sys.admin.import-show','sys.admin.shopping-orders','sys.index','sys.sales.index','sys.settings.index', -'sys.tools.business_structur','sys.tools.buyings_products','sys.tools.cronjobs','sys.tools.customers','sys.tools.domain-ssl', -'sys.tools.import','sys.tools.import-show','sys.tools.sales','sys.tools.shopping-orders','templates.index', -'translation._index','translation.eloquent_index','translation.index','translation.index_file','translation.translation_row', -'translation::forms._select','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.custom', -'translation::languages.translations.index','translation::layout','translation::nav','translation::notifications','user.abo._bak_index', -'user.abo.detail','user.abo.index','user.abo.modal_abo_show_products','user.abo.vat_info','user.components.user_shop_edit', -'user.components.user_shop_edit_name','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.documents.index','user.downloadcenter.content-files','user.downloadcenter.index','user.edit', -'user.form','user.homeparty._address','user.homeparty._edit','user.homeparty.api_order_list','user.homeparty.detail', -'user.homeparty.guest_detail','user.homeparty.guests','user.homeparty.index','user.homeparty.modal_hp_show_products','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._payment','user.membership._payment_order', -'user.membership._upgrade','user.membership.index','user.order._bak_shipping_me','user.order._bak_shipping_ot','user.order._list_delivery_vat_info', -'user.order.api_order_list','user.order.comp_product','user.order.custom_payment','user.order.delivery','user.order.detail', -'user.order.index','user.order.list','user.order.list_form','user.order.list_me','user.order.list_ot-customer', -'user.order.list_ot-member','user.order.payment.custom_payment','user.order.payment.index','user.order.shipping_me','user.order.shipping_ot', -'user.order.yard_view_form','user.payment.credit','user.shop','user.shop.detail','user.shop.sales.api_order_detail', +'status.verify','sys.index','sys.settings.index','sys.tools.business_structur','sys.tools.buyings_products', +'sys.tools.cronjobs','sys.tools.customers','sys.tools.domain-ssl','sys.tools.import','sys.tools.import-show', +'sys.tools.sales','sys.tools.shopping-orders','templates.index','translation._index','translation.eloquent_index', +'translation.index','translation.index_file','translation.translation_row','translation::forms._select','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.custom','translation::languages.translations.index','translation::layout', +'translation::nav','translation::notifications','user.abo._bak_index','user.abo.detail','user.abo.index', +'user.abo.modal_abo_show_products','user.abo.vat_info','user.components.user_shop_edit','user.components.user_shop_edit_name','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.documents.index', +'user.downloadcenter.content-files','user.downloadcenter.index','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_hp_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._payment', +'user.membership._payment_order','user.membership._upgrade','user.membership.index','user.order._list_delivery_vat_info','user.order.comp_product', +'user.order.delivery','user.order.detail','user.order.index','user.order.list','user.order.list_me', +'user.order.list_ot-customer','user.order.list_ot-member','user.order.payment.custom_payment','user.order.payment.index','user.order.shipping_me', +'user.order.shipping_ot','user.order.yard_view_form','user.payment.credit','user.shop','user.shop.detail', 'user.shop.sales.api_order_list','user.shop.sales.api_order_list_total','user.shop.sales.api_orders','user.shop.sales.modal_api_order_detail','user.shop.sales.modal_api_order_shipping_detail', -'user.shop.sales.order_detail','user.shop.sales.orders','user.shop.translate','user.shop_edit_name','user.team._points_detail', -'user.team._points_sum','user.team.export','user.team.marketingplan','user.team.members','user.team.points', -'user.team.show','user.team.structure','user.team.structureOld','user.update_email','user.update_password', -'user.update_password_first','user.update_password_first_form','user.user_form','user.user_new_form','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','vendor.translation.forms._select','vendor.translation.forms.search', -'vendor.translation.forms.select','vendor.translation.forms.text','vendor.translation.icons.globe','vendor.translation.icons.translate','vendor.translation.languages.create', -'vendor.translation.languages.index','vendor.translation.languages.translations.create','vendor.translation.languages.translations.custom','vendor.translation.languages.translations.index','vendor.translation.layout', -'vendor.translation.nav','vendor.translation.notifications','web.index','web.layouts.application','web.layouts.includes.footer', -'web.layouts.includes.header','web.layouts.layout','web.start','web.templates._bcategories','web.templates._card', -'web.templates._categories','web.templates._content_contact','web.templates._existenzgruendung','web.templates._side_contact','web.templates.agb', -'web.templates.aloevera','web.templates.anforderungsprofil','web.templates.card','web.templates.checkout','web.templates.checkout-final', -'web.templates.checkout-is-final','web.templates.contact-final','web.templates.datenschutz','web.templates.erreichbarkeit','web.templates.impressum', -'web.templates.karrierechancen','web.templates.kontakt','web.templates.partner','web.templates.produkte','web.templates.produkte-item', -'web.templates.produkte-show','web.templates.registrierung','web.templates.registrierung_finish','web.templates.ueber-uns','web.templates.vereinbarkeit', -'web.templates.versandkosten','web.templates.vorteile','web.templates.zahlungsarten','web.user.layouts.application','web.user.layouts.includes.footer', -'web.user.layouts.includes.footer-checkout','web.user.layouts.includes.footer-web','web.user.layouts.includes.header','web.user.layouts.includes.header-checkout','web.user.layouts.includes.header-web', -'web.user.layouts.layout','web.user.start','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.shop.sales.order_detail','user.shop.sales.orders','user.shop.translate','user.shop_edit_name','user.team._points_sum', +'user.team.export','user.team.marketingplan','user.team.members','user.team.points','user.team.show', +'user.team.structure','user.team.structureOld','user.update_email','user.update_password','user.update_password_first', +'user.update_password_first_form','user.user_form','user.user_new_form','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','vendor.translation.forms._select','vendor.translation.forms.search','vendor.translation.forms.select', +'vendor.translation.forms.text','vendor.translation.icons.globe','vendor.translation.icons.translate','vendor.translation.languages.create','vendor.translation.languages.index', +'vendor.translation.languages.translations.create','vendor.translation.languages.translations.custom','vendor.translation.languages.translations.index','vendor.translation.layout','vendor.translation.nav', +'vendor.translation.notifications','web.index','web.layouts.application','web.layouts.includes.footer','web.layouts.includes.header', +'web.layouts.layout','web.start','web.templates._bcategories','web.templates._categories','web.templates._content_contact', +'web.templates._existenzgruendung','web.templates._side_contact','web.templates.aloevera','web.templates.anforderungsprofil','web.templates.card', +'web.templates.checkout','web.templates.checkout-final','web.templates.checkout-is-final','web.templates.contact-final','web.templates.karrierechancen', +'web.templates.kontakt','web.templates.produkte','web.templates.produkte-item','web.templates.produkte-show','web.templates.registrierung', +'web.templates.registrierung_finish','web.templates.vereinbarkeit','web.templates.versandkosten','web.templates.vorteile','web.templates.zahlungsarten', +'web.user.layouts.application','web.user.layouts.includes.footer','web.user.layouts.includes.header','web.user.layouts.layout','web.user.start', +'flash::message','flash::modal','horizon::layout','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','validation.custom.match_found','validation.custom.no_email', -'validation.custom.shipping_not_found','validation.custom.unique_email_client','validation.custom.unique_email_member','validation.attributes.accepted_data_checkbox','validation.attributes.accepted_data_protection', -'validation.attributes.address','validation.attributes.age','validation.attributes.available','validation.attributes.billing_address','validation.attributes.billing_city', -'validation.attributes.billing_country_code','validation.attributes.billing_email','validation.attributes.billing_firstname','validation.attributes.billing_lastname','validation.attributes.billing_salutation', -'validation.attributes.billing_zipcode','validation.attributes.birthday','validation.attributes.city','validation.attributes.content','validation.attributes.country', -'validation.attributes.date','validation.attributes.day','validation.attributes.description','validation.attributes.email','validation.attributes.email-confirm', -'validation.attributes.excerpt','validation.attributes.first_name','validation.attributes.g-recaptcha-response','validation.attributes.gender','validation.attributes.has_customer_buyed', -'validation.attributes.hour','validation.attributes.last_name','validation.attributes.m_account','validation.attributes.message','validation.attributes.minute', -'validation.attributes.mobil','validation.attributes.mobile','validation.attributes.month','validation.attributes.name','validation.attributes.password', -'validation.attributes.password-confirm','validation.attributes.password_confirmation','validation.attributes.phone','validation.attributes.place','validation.attributes.reverse_charge', -'validation.attributes.sales_partnership','validation.attributes.sales_partnership_message','validation.attributes.salutation','validation.attributes.second','validation.attributes.sex', -'validation.attributes.shipping_address','validation.attributes.shipping_city','validation.attributes.shipping_firstname','validation.attributes.shipping_lastname','validation.attributes.shipping_salutation', -'validation.attributes.shipping_zipcode','validation.attributes.size','validation.attributes.tax_identification_number','validation.attributes.tax_number','validation.attributes.time', -'validation.attributes.title','validation.attributes.user_shop_active','validation.attributes.user_shop_name','validation.attributes.username','validation.attributes.year', -'validation.full_word_check','validation.old_password','validation.profanity','validation.recaptcha','validation.users_update_email', -'de.0','abo.abo','abo.payment_for_abo','abo.abo_delivery','abo.abo_are_for_me_and_shipped', -'abo.abo_are_for_customer_and_shipped','abo.abo_delivery_to_me','abo.abo_delivery_to_the_customer','abo.every_week','abo.every_weeks', -'abo.of_month','abo.delivery_intervall','abo.abo_order_info','abo.abo_infos','abo.abo_delivery_infos', -'abo.abo_start_date','abo.abo_delivery_intervall','abo.delivery_day','abo.abo_settings','abo.add_new_abo', -'abo.abo_edit','abo.abo_details','abo.abo_is_active','abo.abo_copy_active','abo.abo_copy_next_date', -'abo.abo_copy_abo_interval','abo.error_abo_interval','abo.error_next_date','abo.checkout_mail_abo_hl','abo.checkout_mail_abo_start', -'abo.checkout_mail_abo_info','abo.abo_new','abo.abo_okay','abo.abo_hold','abo.abo_cancel', -'abo.abo_finish','abo.abo_inactive','abo.abo_grace','abo.pros_hl','abo.pros_list', -'abo.abo_pros','abo.abo_order_hl','abo.abo_order_info_2','abo.add_product','abo.product_prices_career_level_info', -'abo.product_prices_career_level_cpay_info','abo.error_email_has_abo','abo.abo_assigned','abo.base','abo.upgrade', -'abo.abo_type_info','abo.abo_type_info_base','abo.need_basis_product','abo.abo_item_not_found','abo.product_not_found', -'abo.create_abo','abo.info','abo.data','abo.check','abo.choose', -'abo.order','abo.basis_product','abo.upgrade_products','abo.base_product','abo.upgrade_product', -'abo.my_address','abo.my_address_check','abo.my_address_check_info','abo.edit','abo.confirm_and_next', -'abo.understood_and_next','abo.change_my_data_empty','abo.abo_error_basis_product','abo.back','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', -'actions.','actions.cancel','actions.confirm','actions.file_is_too_big','actions.image_too_small ', -'actions.invalid_file','actions.really_delete_picture','actions.rotate','actions.save_image','actions.search_file_or_drag_drop', -'actions.upload_photo','actions.dictDefaultMessage','actions.dictFallbackMessage','actions.dictFallbackText','actions.dictFileTooBig', -'actions.dictInvalidFileType','actions.dictResponseError','actions.dictCancelUpload','actions.dictRemoveFile','actions.dictMaxFilesExceeded', -'auth.not_found','auth.failed_customer','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_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','customer.about_shop','customer.add_customer_without_email','customer.add_customer_without_email_info1', -'customer.assigned','customer.assigned_counsellor','customer.check','customer.check_and_next','customer.check_and_save', -'customer.client_sovereignty','customer.counsellor_allocate','customer.created','customer.customer_add','customer.customer_billing_address', -'customer.customer_data','customer.customer_details','customer.customer_has_already_buy','customer.customer_has_already_purchased','customer.customer_has_not_yet_purchased', -'customer.customer_is_not_subscribed_to_newsletter','customer.customer_is_subscribed_to_newsletter','customer.customer_sovereignty_info1','customer.date','customer.edit', -'customer.edit_customer_data','customer.enter','customer.is_counsellor','customer.newsletter_subscribed_copy1','customer.next_without_email', -'customer.under_review','customer.select','dataprotect.data_protect','dataprotect.data_protect_copy1','dataprotect.data_protect_copy2', -'dataprotect.data_protect_copy3','dataprotect.data_protect_copy4','dataprotect.data_protect_copy5','dataprotect.data_protect_copy6','dataprotect.data_protect_copy7', -'dataprotect.data_protect_copy8','dataprotect.data_protect_copy9','dataprotect.data_protect_copy10','dataprotect.data_protect_copy11','dataprotect.data_protect_copy12', -'dataprotect.data_protect_copy13','dataprotect.data_protect_stand_shop','dataprotect.data_protect_stand_site','email.account_active','email.account_active_copy1line', -'email.account_incomplete_copy1line','email.activate_copy','email.active_copy1line','email.button_account','email.change_e_mail', -'email.checkout_copy1line','email.checkout_copy3line','email.checkout_copy3line_extern','email.checkout_mail_bank_bic','email.checkout_mail_bank_code', -'email.checkout_mail_bank_holder','email.checkout_mail_bank_iban','email.checkout_mail_bank_name','email.checkout_mail_bank_total','email.checkout_mail_deliver_addess', -'email.checkout_mail_deliver_customer','email.checkout_mail_hl1','email.checkout_mail_invoice_addess','email.checkout_mail_order_for_extern','email.checkout_mail_order_for_me', -'email.checkout_mail_order_for_membership','email.checkout_mail_order_for_ot','email.checkout_mail_order_for_wizard','email.checkout_mail_pay_approved','email.checkout_mail_pay_error', -'email.checkout_mail_pay_info','email.checkout_mail_pay_invoice_open','email.checkout_mail_pay_pre','email.checkout_mail_pay_pre_c1','email.checkout_mail_pay_pre_c2', -'email.checkout_mail_pay_ref','email.checkout_mail_pay_success','email.checkout_mail_pay_with','email.checkout_mail_same_address','email.checkout_mail_shipping', -'email.checkout_mail_status_info','email.checkout_mail_subtotal_ws','email.checkout_mail_system_status','email.checkout_mail_tax','email.checkout_mail_tax_info', -'email.checkout_mail_total','email.checkout_mail_your_mail','email.checkout_subject','email.checkout_subject_extern','email.checkout_subject_paid', -'email.copy2line','email.copy3line','email.copy_to_browser','email.credit_copy1line','email.credit_title', -'email.dear_mrs','email.dear_sir','email.email','email.email_incomplete','email.email_subject', -'email.email_verify','email.email_verify_copy1line','email.first_name','email.footer_copy1','email.footer_copy2', -'email.footer_copy3','email.greetings','email.hello','email.invoice_copy1line','email.invoice_title', -'email.invoice_subject','email.last_name','email.mail_confirm','email.message','email.phone', -'email.request_from','email.reset_pass_copy1line','email.reset_passwort','email.sales_partnership','email.sales_partnership_message', -'email.salutation','email.sender','email.status_copy1line','email.subject','email.subject_activate', -'email.subject_reset','email.update_level_copy1line','email.update_level_title','email.verify_copy1line','email.verify_e_mail', -'email.your_request_from','email.your_custom_payout','email.your_custom_abo_payout','email.subject_custom_payout','email.subject_custom_abo_payout', -'email.button_custom_payout','email.checkout_custom_payout','gtc.gtc','gtc.gtc_copy1','gtc.gtc_copy2', -'gtc.gtc_copy3','gtc.gtc_copy4','gtc.gtc_copy5','gtc.gtc_copy6','gtc.gtc_copy7', -'gtc.gtc_copy8','gtc.gtc_copy9','gtc.','home.','home.MIVITA_Consultancy_agreement', -'home.active_role','home.activities','home.adjust_data','home.adviser_membership_active','home.adviser_onlineshop_active', -'home.adviser_onlineshop_inactive','home.advisor_account_inactive','home.at','home.change_your_email_address','home.change_your_personal_data', -'home.change_your_personal_password','home.create_your_personal_password.','home.current_points_for','home.data','home.data_complete_unlocked', -'home.declaration_of_consent','home.email_verified','home.expired_on','home.log_out_and_see_you_soon','home.login', -'home.manage_membership','home.manage_membership_now_here','home.membership','home.open_since','home.open_your_shop', -'home.privacy_policy_approved','home.security','home.settings_your_shop','home.shop_not_booked','home.today_is', -'home.until','home.welcome_back','home.your_shop','homeparty.','homeparty.acceptect_data_protection', -'homeparty.add_as_guest','homeparty.add_product','homeparty.completed','homeparty.confirm_my_data_is_correct_and_complete','homeparty.copy', -'homeparty.copy_link','homeparty.copy_link_info','homeparty.country_can_no_longer_be_changed_after_created','homeparty.create_delivery_address_host_info','homeparty.create_guest', -'homeparty.create_guests','homeparty.create_guests_info','homeparty.create_new_homeparty','homeparty.credit_bonus','homeparty.credit_homeparty_voucher', -'homeparty.current_bonus_view','homeparty.data_protection','homeparty.data_protection_reasons_your_personal_data_will_not_be_shown','homeparty.deduct_points_by_voucher','homeparty.delivery_address_homeparty', -'homeparty.delivery_directly_to_the_guest','homeparty.delivery_to_host','homeparty.description_welcome_text','homeparty.enter_your_personal_data_for_homeparty','homeparty.event_date', -'homeparty.event_place','homeparty.from','homeparty.general_overview','homeparty.guest','homeparty.guest_delete_really', -'homeparty.guest_lists','homeparty.guest_order_sent_directly_info','homeparty.guests','homeparty.homeparty','homeparty.homeparty_add_host_address_info', -'homeparty.homeparty_delete_really','homeparty.homeparty_invoice_info','homeparty.homeparty_manage','homeparty.host','homeparty.host_address_save', -'homeparty.host_can_not_delete','homeparty.host_homeparty','homeparty.host_organiser_event','homeparty.invitation','homeparty.invitation_link_for_guests', -'homeparty.invoice_address','homeparty.let_your_guests_fill_in_their_own_details','homeparty.manage','homeparty.missing','homeparty.next_bonus', -'homeparty.order','homeparty.order_can_be_send_delivery_address_info','homeparty.order_create','homeparty.order_host','homeparty.order_show', -'homeparty.please_enter_delivery_address_info','homeparty.revoke_consent_at_any_time','homeparty.shipping_costs_host','homeparty.target_turnover','homeparty.voucher', -'homeparty.voucher_bonus','homeparty.voucher_bonus_cannot_be_applied','homeparty.voucher_total','homeparty.your_MIVITA_advice','homeparty.your_data_has_been_successfully_created_have_fun', -'homeparty.your_host','homeparty.your_hostess','homeparty.welcome_copy','marketingplan.title','marketingplan.subtitle', -'marketingplan.current_level','marketingplan.qualification','marketingplan.kp_points','marketingplan.tp_points','marketingplan.customer_points_full', -'marketingplan.team_points_full','marketingplan.provisions','marketingplan.standard','marketingplan.shop','marketingplan.provision_rates', -'marketingplan.team_provisions','marketingplan.team_provisions_by_lines','marketingplan.growth_bonus','marketingplan.next_level','marketingplan.your_current_level', -'marketingplan.your_next_goal','marketingplan.legend','marketingplan.legend_ku_description','marketingplan.legend_tp_description','marketingplan.legend_lines_description', -'marketingplan.legend_percentage_description','marketingplan.no_levels_available','marketingplan.no_levels_configured','marketingplan.loading_error','marketingplan.loading_time', -'marketingplan.show_details','marketingplan.back_to_overview','marketingplan.level_position','marketingplan.level_name','marketingplan.level_requirements', -'marketingplan.level_benefits','marketingplan.paylines','marketingplan.line_1','marketingplan.line_2','marketingplan.line_3', -'marketingplan.line_4','marketingplan.line_5','marketingplan.line_6','marketingplan.line_7','marketingplan.line_8', -'marketingplan.points','marketingplan.percent','marketingplan.euro','marketingplan.active','marketingplan.inactive', -'marketingplan.achieved','marketingplan.not_achieved','marketingplan.in_progress','marketingplan.congratulations','marketingplan.keep_going', -'marketingplan.almost_there','marketingplan.next_step','marketingplan.goal_reached','marketingplan.help_kp_points','marketingplan.help_tp_points', -'marketingplan.help_provisions','marketingplan.help_growth_bonus','membership.','membership.MIVITA_BUSINESS_Paket','membership.abo_copy_1', -'membership.abo_copy_2','membership.abo_copy_3','membership.active','membership.active_package','membership.booked_package', -'membership.change','membership.change_copy_1','membership.change_copy_2','membership.consultant_membership','membership.consultant_online_shop', -'membership.contract_renewal','membership.deactivate','membership.details','membership.downgrade_membership_is_not_possible','membership.end', -'membership.end_button','membership.end_checkbox','membership.end_copy_1','membership.end_copy_2','membership.end_copy_3', -'membership.expired_on','membership.home_copy_SEPA_32','membership.home_copy_SEPA_33','membership.home_copy_SEPA_36','membership.home_copy_alert_31', -'membership.home_copy_alert_35','membership.home_copy_alert_36','membership.home_copy_alert_36_today','membership.home_copy_last_31','membership.home_copy_last_33', -'membership.home_copy_last_34','membership.home_copy_last_35','membership.home_copy_last_36','membership.home_hl','membership.inactive', -'membership.is_no_longer_possible_to_change_package','membership.membership','membership.membership_was_renewed','membership.open_payment_options','membership.payment_copy_1', -'membership.payment_copy_2','membership.payment_has_been_made','membership.renewal_is_active_membership_fee_automatic','membership.status','membership.until', -'membership.upgrade','membership.upgrade_copy_1','membership.upgrade_copy_2','membership.upgrade_package_and_proceed_payment','membership.we_do_not_collect_membership_fee', -'membership.your_booked_package','membership.info_contract_renewal','membership.alert_contract_renewal','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','msg.account_released','navigation.documents','navigation.add', -'navigation.attribute','navigation.business','navigation.career_level','navigation.categories','navigation.clients', -'navigation.commissions','navigation.contents','navigation.countries','navigation.credit','navigation.do_order', -'navigation.edit','navigation.export','navigation.general','navigation.home','navigation.ingredients', -'navigation.invoice','navigation.language','navigation.languages','navigation.logout','navigation.manage', -'navigation.member','navigation.new_member','navigation.member_register','navigation.membership','navigation.modules', -'navigation.my_account','navigation.my_clients','navigation.my_data','navigation.my_homeparty','navigation.my_membership', -'navigation.my_orders','navigation.my_shop','navigation.my_team','navigation.order','navigation.orders', -'navigation.overview','navigation.payment_methods','navigation.payments','navigation.points','navigation.products', -'navigation.sales_volumes','navigation.settings','navigation.shipping_costs','navigation.start_site','navigation.structure', -'navigation.system_settings','navigation.translate','navigation.translation','navigation.trigger','navigation.user_roles', -'navigation.tax_advisor','navigation.downloadcenter','navigation.files','navigation.tags','navigation.myabos', -'navigation.customerabos','navigation.myabo','navigation.customerabo','navigation.abo','navigation.abos', -'navigation.payment_links','navigation.dashboard','navigation.shop','navigation.to_shop','navigation.marketingplan', -'navigation.dhl_cockpit','navigation.revenue','order.add_customer','order.advertising_material','order.adviser_collective_invoice', -'order.adviser_order_for_membership','order.adviser_order_for_registration','order.art_no','order.article','order.article_remove', -'order.assigned_advisor','order.assigned_counsellor','order.billing_address_of_client','order.billing_address_of_the_advisor','order.client_order_via_shop', -'order.collective_invoice','order.collective_invoice_contains_orders','order.compensation_product','order.confirm_and_proceed_to_checkout','order.confirm_and_proceed_to_order', -'order.consultant_order_for_home_party','order.content','order.contents','order.create_invoice','order.date', -'order.delivery_address_of_the_client','order.delivery_address_of_the_consultant','order.delivery_country_can_no_longer_be_changed','order.delivery_country_changed_customer_info','order.delivery_country_changed_info', -'order.delivery_note','order.delivery_to_me','order.delivery_to_the_customer','order.deliverydata','order.different_delivery_address', -'order.error_no_address_data_found','order.external_orders','order.external_orders_info_pay','order.external_orders_info_remove','order.external_orders_info_reset', -'order.goods_are_for_customer_and_shipped','order.goods_are_for_me_and_shipped','order.gross','order.gross_price','order.incentives', -'order.included_VAT','order.invoice','order.invoice_address','order.land_can_no_longer_be_changed','order.email_can_not_be_changed', -'order.link_to_the_invoice','order.my_delivery_address','order.net','order.net_price','order.no_address_created', -'order.no_career_level_info','order.no_delivery_address','order.no_order','order.number_of_items','order.order', -'order.order_consultant','order.order_date','order.order_for_client','order.order_for_consultant','order.order_number', -'order.order_via_external_shop','order.plus_VAT','order.points','order.points_total','order.points_turnover_assigned', -'order.product','order.product_prices_career_level_info','order.product_prices_career_level_cpay_info','order.purchased_from_shop','order.quantity', -'order.ship_to_existing_customer_select_customer','order.ship_to_new_customer','order.ship_to_this_customer','order.ship_to_this_customer_check','order.ship_to_this_customer_info', -'order.ship_to_this_customer_info_2','order.ship_to_this_email_info','order.shipping','order.shipping_compensation_product','order.shipping_costs', -'order.shopping_cart','order.shopping_cart_delete','order.shopping_cart_update','order.subtotal','order.sum', -'order.sums','order.total','order.total_gross','order.total_net','order.total_price', -'order.total_shipping_costs','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.order_abo_was_placed_successfully','order.payment_link_for_your_customer','order.delivery', -'order.number','order.reorder','order.reorder_info','order.reorder_info_2','payment.', -'payment.BIC','payment.IBAN','payment.Mastercard','payment.American Express','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.checkout_cancel','payment.status.checkout_error','payment.status.checkout_payment', -'payment.status.payment_approved','payment.status.payment_error','payment.status.payment_not_found','payment.status.payment_redirect','payment.status.store_payment', -'payment.status.success','payment.status.success_payment','payment.status.txaction_appointed','payment.status.txaction_failed','payment.status.txaction_paid', -'payment.thank_you_very_much','payment.total_amount','payment.valid until','payment.valid','payment.verification_no', -'payment.we_have_received_your_order_get_email','payment.your_mivita_team','payment.your_order_number_is','payment.open','payment.openly', -'payment.paid','payment.check','payment.cancelled','payment.link_sent','payment.link_openly', -'payment.link_check','payment.link_pending','payment.link_failed','payment.link_canceled','payment.link_appointed', -'payment.link_paid','payment.alert_link_sent','payment.alert_link_openly','payment.alert_link_check','payment.alert_link_pending', -'payment.alert_link_failed','payment.alert_link_canceled','payment.alert_link_appointed','payment.alert_link_paid','payment.failed', -'payment.no_payment','payment.link_was_paid','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.unknown','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.invoice_does_not_include_vat','pdf.vat_is_declared_and_paid_by_recipient', -'pdf.tax_free_export_delivery','portal.login','portal.login_title','portal.login_email','portal.login_password', -'portal.login_button','portal.login_forgot_password','portal.login_register','portal.mail_subject','portal.mail_hello', -'portal.mail_otp','portal.mail_otp_valid','portal.mail_otp_not_requested','portal.mail_greetings','portal.mail_sender', -'portal.verify_otp_title','portal.verify_otp_description','portal.verify_otp_resend','portal.verify_otp_resend_link','portal.login_send_otp_description', -'portal.login_send_otp_description2','portal.back_to_shop','portal.guest','portal.change_login_title','portal.change_login_title2', -'portal.logout_button','portal.change_login_description','portal.change_login_description2','portal.change_login_description3','portal.change_my_data', -'portal.change_my_data_empty','portal.my_orders_empty','portal.my_orders_info','portal.change_my_data_empty_button','portal.my_subscriptions_empty', -'portal.my_subscriptions_info','register.accept-contract','register.account_deleted','register.adjust','register.advisor_invite', -'register.agree','register.agree_and_continue','register.assigned','register.badge','register.business_license_later', -'register.business_license_non','register.business_license_non_text','register.business_license_now','register.business_license_release','register.business_license_deposited', -'register.change_documents','register.change_email','register.change_email_address_verify_it_info','register.change_email_contact_address_verify_it_info','register.complete', -'register.complete_registration','register.confirm_your_identity','register.contract','register.contract_data_protection','register.create_advisor_send_email_to_invite', -'register.create_and_next','register.data','register.data_protection','register.declaration-of-consent','register.delete_account', -'register.i_have_read_and_accept_it','register.next','register.open_payment_options','register.package','register.password', -'register.password_has_already_been_created','register.really_delete_the_file','register.reg_checked','register.reg_finisch_hl','register.reg_finisch_line_1', -'register.reg_finisch_line_2','register.reg_hl','register.reg_line_1','register.registration','register.registration_completed', -'register.required_fields','register.save_and_continue','register.select','register.sender','register.trade_licence', -'register.upload','register.wizard_business_license_hl','register.wizard_business_license_line_1','register.wizard_create_release_hl','register.wizard_create_release_line_1', -'register.wizard_finish_hl','register.wizard_finish_line_1','register.wizard_reg_release_hl','register.wizard_reg_release_line_1','register.wizard_verification_hl', -'register.wizard_verification_line_1','reminder.button_31','reminder.button_32','reminder.button_33','reminder.button_34', -'reminder.button_35','reminder.button_36','reminder.button_37','reminder.copy_first_31','reminder.copy_first_32', -'reminder.copy_first_33','reminder.copy_first_34','reminder.copy_first_35','reminder.copy_first_36','reminder.copy_first_37', -'reminder.copy_last_31','reminder.copy_last_32','reminder.copy_last_33','reminder.copy_last_34','reminder.copy_last_35', -'reminder.copy_last_36','reminder.copy_last_37','reminder.subject','shop.','shop.Choose Your Shop Name', -'shop.Shop details','shop.Terms of Use','shop.Your Shop','shop.Your Shop Name','shop.accept_and_next', -'shop.accept_and_change','shop.active_since','shop.available','shop.check','shop.declaration_of_shop', -'shop.domain','shop.name','shop.not_available','shop.not_available_copy','shop.open_copy_1', -'shop.open_copy_2','shop.open_note_1','shop.open_note_hl','shop.open_your_shop','shop.edit_your_shop', -'shop.order_customer','shop.orders_customers','shop.preview_shop_internet_address','shop.save and continue','shop.shop_about', -'shop.shop_about_help','shop.shop_accessibility','shop.shop_accessibility_help','shop.shop_contact','shop.shop_contact_help', -'shop.shop_image','shop.shop_image_copy','shop.shop_name_description','shop.shop_name_error_1','shop.shop_name_error_2', -'shop.shop_on_site','shop.shop_on_site_copy','shop.shop_title','shop.shop_title_help','shop.your_shop_name', -'shop.shop_contact_text','shop.shop_accessibility_text','shop.phone','shop.mobil','shop.your_street_number', -'shop.your_zip_code','shop.your_city','shop.your_phone_number','shop.your_mobile_number','shop.error_subdomain_exists', -'shop.your_current_shop_name','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','tables.my_commission','tables.start_date','tables.next_date','tables.last_date', -'tables.abo_delivery_day','tables.abo_delivery','tables.active','tables.is_for','tables.count', -'tables.member','tables.adviser','tables.exc','tables.executions','tables.previous_orders', -'tables.partner_since','team.','team.KU','team.PP','team.TP', -'team.WB','team.account','team.account_to','team.active','team.business', -'team.career_level','team.collapse_all','team.commission_WB','team.commission_payline','team.commission_shop', -'team.commission_team','team.commission_total','team.completed','team.create_new_consultant','team.current_commission_level', -'team.customer_commission','team.consultant_margin','team.consultant_margin_info','team.customer_points','team.date', -'team.e','team.expand_all','team.export','team.export_as_xls','team.link_for_consultant_registration', -'team.net_turnover','team.new_consultant_copy1','team.next_career_level','team.next_commission_level','team.no_sponsor_assigned', -'team.not_active','team.own','team.payline_points','team.points','team.qualification', -'team.qualification_commission','team.qualification_points','team.register_new_consultant','team.s','team.shop', -'team.shop_commission','team.sponsor','team.structure','team.total_points','team.total_turnover', -'team.until','team.volume_KU','team.your_sponsor','team.your_team','team.sales_store_net', -'team.filename_export','team.payout_details','team.filter_active','team.filter_not_active','team.filter_all', -'team.all_status','team.qualified_green','team.in_progress_yellow','team.no_level_red','team.optimized', -'team.standard_monitoring','team.fallback','team.loading_time','team.memory','team.memory_usage', -'team.team_size','team.team_members','team.execution_time','team.user_id','team.performance_details', -'team.team_structure','team.new_member','team.optimized_action','team.standard_action','team.close', -'team.show_details','team.test_optimized','team.standard_version','team.performance_metrics_team_overview','team.performance_metrics_my_team', -'team.performance_monitoring','team.fallback_support','team.optimized_with_cache','team.datatable_mode_switched','team.error_loading_optimized_overview', -'team.live_not_supported_fallback','team.optimized_performance_features','team.next_level','team.calculation_type','team.version', -'team.cache','team.live','team.ID','team.Ebene','team.Level', -'team.KD','team.bis','webcontent.career_opportunities_at_mivita','webcontent.requirement_profile','webcontent.advantages_of_direct_sales', -'webcontent.compatibility_with_family_private_life','webcontent.start_up','webcontent.that_sounds_exciting_to_you','webcontent.then_get_in_touch_with_us_today','webcontent.to_the_registration', -'webcontent.to_the_contact_form','webcontent.aloe_vera_word_copy','webcontent.origin_aloe_hl','webcontent.origin_aloe_subl','webcontent.origin_aloe_copy', -'webcontent.bio_quality_hl','webcontent.bio_quality_subl','webcontent.bio_quality_copy','webcontent.shop_at_the_aloe_vera_farm','webcontent.aloe_high_quality_hl', -'webcontent.aloe_high_quality_subl','webcontent.aloe_high_quality_copy','webcontent.aloe_high_quality_li1','webcontent.aloe_high_quality_li2','webcontent.aloe_high_quality_li3', -'webcontent.aloe_high_quality_li4','webcontent.aloe_high_quality_li5','webcontent.aloe_high_quality_li6','webcontent.aloe_high_quality_li7','webcontent.aloe_high_quality_li8', -'webcontent.aloe_high_quality_li9','webcontent.aloe_high_quality_li10','webcontent.pillars_best_aloe_vera_quality','webcontent.pillars_best_aloe_vera_quality_1_hl','webcontent.pillars_best_aloe_vera_quality_1_subl', -'webcontent.pillars_best_aloe_vera_quality_2_hl','webcontent.pillars_best_aloe_vera_quality_2_subl','webcontent.pillars_best_aloe_vera_quality_3_hl','webcontent.pillars_best_aloe_vera_quality_3_subl','webcontent.pillars_best_aloe_vera_quality_4_hl', -'webcontent.pillars_best_aloe_vera_quality_4_subl','webcontent.pillars_best_aloe_vera_quality_5_hl','webcontent.pillars_best_aloe_vera_quality_5_subl','webcontent.requirement_profile_at_mivita','webcontent.requirement_profile_at_mivita_copy', -'webcontent.trade_licence_hl','webcontent.trade_licence_copy','webcontent.funding_opportunities_hl','webcontent.funding_opportunities_copy','webcontent.social_security_hl', -'webcontent.social_security_copy','webcontent.training_aloe_farm_mallorca','webcontent.training_aloe_farm_mallorca_copy','webcontent.career_opportunitie_point_1','webcontent.career_opportunitie_point_2', -'webcontent.career_opportunitie_point_3','webcontent.career_opportunitie_point_4','webcontent.career_opportunitie_point_5','webcontent.make_people_happy_hl','webcontent.make_people_happy_copy', -'webcontent.how_to_sell_exactly_hl','webcontent.how_to_sell_exactly_copy','webcontent.private_environment_hl','webcontent.private_environment_list','webcontent.business_environment_hl', -'webcontent.business_environment_list','webcontent.social_environment_hl','webcontent.social_environment_list','webcontent.direct_sales_advantages_hl','webcontent.direct_sales_advantages_copy', -'webcontent.direct_sales_exactly_hl','webcontent.direct_sales_exactly_copy','webcontent.advantages_MIVITA_hl','webcontent.advantages_MIVITA_subl','webcontent.advantages_MIVITA_list', -'webcontent.advantages_MIVITA_botl','webcontent.advantages_direct_sales_hl','webcontent.advantages_direct_sales_subl','webcontent.advantages_direct_sales_list','webcontent.compatibility_with_family_copy1', -'webcontent.compatibility_with_family_copy2','webcontent.compatibility_with_family_list','webcontent.women_direct_sales_hl','webcontent.women_direct_sales_copy','webcontent.', -'weborder.product_details','weborder.description','weborder.application','weborder.ingredients','weborder.to_shopping_cart', -'weborder.shopping_cart','weborder.excl_VAT_plus_shipping_costs','weborder.incl_VAT_plus_shipping_costs','weborder.free_shipping_costs_from','weborder.only_missing_free_shipping_costs_from', -'weborder.add_shopping_cart','weborder.details','weborder.to_product','weborder.price_net','weborder.incl', -'weborder.VAT','weborder.plus_shipping_cost','weborder.delivery_time_1_3','weborder.payment_methods','weborder.payment_method_paypal', -'weborder.payment_method_paypal_copy','weborder.payment_method_direct','weborder.payment_method_direct_copy','weborder.payment_method_sepa','weborder.payment_method_sepa_copy', -'weborder.payment_method_creditcard','weborder.payment_method_creditcard_copy','weborder.payment_method_prepayment','weborder.payment_method_prepayment_copy','weborder.shipping_methods_costs', -'weborder.free_shipping_at','weborder.only_missing_free_shipping_at','weborder.free_shipping','weborder.not_free_shipping','weborder.shopping_cart_sum', -'weborder.shipping_cost','weborder.sum_net','weborder.checkout_ssl_server','weborder.to_checkout','weborder.all_price_plus_VAT_info', -'weborder.','website.start','website.aloe_vera','website.productworld','website.career_opportunities', -'website.contact','website.shop','website.partner','website.register','website.contents', -'website.all_rights_reserved','website.payment_methods','website.impress','website.cancellation_policy','website.privacy_policy', -'website.gtc','website.shipping_costs','website.sales_partner_or_questions','website.contact_now','website.contact_number', -'website.contact_number_link','website.to_contact','website.email','website.address','website.phone', -'website.contact_address','website.phone_number','website.email_address','website.business_hours','website.business_hours_details', -'website.language','website.you_are_now_in_shop','website.you_are_now_in_shop_notice','website.change_country','website.start_copy_mivita', -'website.more','website.read','website.NOW','website.slider_subl','website.slider_hl', -'website.start_why_hl','website.start_why_copy','website.start_aloe_hl','website.start_aloe_copy','website.start_products_hl', -'website.start_products_copy','website.start_salespartner_hl','website.start_salespartner_copy','website.start_mivitapartner_copy','website.youtube_accepted_copy', -'website.to_privacy_policy','website.accept_youtube_load','website.welcome','website.welcome_copy','website.my_accessibility', -'website.for_you_on_spot','website.for_you_on_spot_copy','website.thank_you_for_your_request','website.we_will_get_back_to_you','website.best_regards', -'website.your_mivita_team','website.contact_hl','website.contact_subl','website.your_message_to_us','website.your_enquiry_relate_partnership', -'website.yes','website.no','website.through_whom_label','website.through_whom_placeholder','website.send_message', -'website.register_now','website.business_owner','website.registry_court','website.register_number','website.VATID', -'website.business_owner_value','website.registry_court_value','website.register_number_value','website.VATID_value','website.support_mivita', -'website.note_on_use','website.online_dispute_resolution','website.note_on_use_copy','website.online_dispute_resolution_copy','website.show_all_products', -'website.to_login','website.to_customer_portal','website.to_sales_center','website.shipping_error_billing','website.shipping_error_delivery', -'website.','en.0','abo.abo_delivery_interval','abo.delivery_interval','actions.image_too_small', -'order.VAT','website.my_accessibility:','es.0','website.Director General','profanity.0', -'errors.0','translation.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','translation::translation.invalid_driver','translation::translation.invalid_language','translation::translation.prompt_from_driver', -'translation::translation.prompt_language_if_any','translation::translation.prompt_to_driver',); +'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','abo.abo','abo.payment_for_abo','abo.abo_delivery', +'abo.abo_are_for_me_and_shipped','abo.abo_are_for_customer_and_shipped','abo.abo_delivery_to_me','abo.abo_delivery_to_the_customer','abo.every_week', +'abo.every_weeks','abo.of_month','abo.delivery_intervall','abo.abo_order_info','abo.abo_infos', +'abo.abo_delivery_infos','abo.abo_start_date','abo.abo_delivery_intervall','abo.delivery_day','abo.abo_settings', +'abo.add_new_abo','abo.abo_edit','abo.abo_details','abo.abo_is_active','abo.abo_copy_active', +'abo.abo_copy_next_date','abo.abo_copy_abo_interval','abo.error_abo_interval','abo.error_next_date','abo.checkout_mail_abo_hl', +'abo.checkout_mail_abo_start','abo.checkout_mail_abo_info','abo.abo_new','abo.abo_okay','abo.abo_hold', +'abo.abo_cancel','abo.abo_finish','abo.abo_inactive','abo.abo_grace','abo.pros_hl', +'abo.pros_list','abo.abo_pros','abo.abo_order_hl','abo.abo_order_info_2','abo.add_product', +'abo.product_prices_career_level_info','abo.product_prices_career_level_cpay_info','abo.error_email_has_abo','abo.abo_assigned','abo.base', +'abo.upgrade','abo.abo_type_info','abo.abo_type_info_base','abo.need_basis_product','abo.abo_item_not_found', +'abo.product_not_found','abo.create_abo','abo.info','abo.data','abo.check', +'abo.choose','abo.order','abo.basis_product','abo.upgrade_products','abo.base_product', +'abo.upgrade_product','abo.my_address','abo.my_address_check','abo.my_address_check_info','abo.edit', +'abo.confirm_and_next','abo.understood_and_next','abo.change_my_data_empty','abo.abo_error_basis_product','abo.back', +'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','actions.','actions.cancel','actions.confirm','actions.file_is_too_big', +'actions.image_too_small ','actions.invalid_file','actions.really_delete_picture','actions.rotate','actions.save_image', +'actions.search_file_or_drag_drop','actions.upload_photo','actions.dictDefaultMessage','actions.dictFallbackMessage','actions.dictFallbackText', +'actions.dictFileTooBig','actions.dictInvalidFileType','actions.dictResponseError','actions.dictCancelUpload','actions.dictRemoveFile', +'actions.dictMaxFilesExceeded','auth.not_found','auth.failed_customer','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_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','customer.about_shop','customer.add_customer_without_email', +'customer.add_customer_without_email_info1','customer.assigned','customer.assigned_counsellor','customer.check','customer.check_and_next', +'customer.check_and_save','customer.client_sovereignty','customer.counsellor_allocate','customer.created','customer.customer_add', +'customer.customer_billing_address','customer.customer_data','customer.customer_details','customer.customer_has_already_buy','customer.customer_has_already_purchased', +'customer.customer_has_not_yet_purchased','customer.customer_is_not_subscribed_to_newsletter','customer.customer_is_subscribed_to_newsletter','customer.customer_sovereignty_info1','customer.date', +'customer.edit','customer.edit_customer_data','customer.enter','customer.is_counsellor','customer.newsletter_subscribed_copy1', +'customer.next_without_email','customer.under_review','customer.select','dataprotect.data_protect','dataprotect.data_protect_copy1', +'dataprotect.data_protect_copy2','dataprotect.data_protect_copy3','dataprotect.data_protect_copy4','dataprotect.data_protect_copy5','dataprotect.data_protect_copy6', +'dataprotect.data_protect_copy7','dataprotect.data_protect_copy8','dataprotect.data_protect_copy9','dataprotect.data_protect_copy10','dataprotect.data_protect_copy11', +'dataprotect.data_protect_copy12','dataprotect.data_protect_copy13','dataprotect.data_protect_stand_shop','dataprotect.data_protect_stand_site','email.account_active', +'email.account_active_copy1line','email.account_incomplete_copy1line','email.activate_copy','email.active_copy1line','email.button_account', +'email.change_e_mail','email.checkout_copy1line','email.checkout_copy3line','email.checkout_copy3line_extern','email.checkout_mail_bank_bic', +'email.checkout_mail_bank_code','email.checkout_mail_bank_holder','email.checkout_mail_bank_iban','email.checkout_mail_bank_name','email.checkout_mail_bank_total', +'email.checkout_mail_deliver_addess','email.checkout_mail_deliver_customer','email.checkout_mail_hl1','email.checkout_mail_invoice_addess','email.checkout_mail_order_for_extern', +'email.checkout_mail_order_for_me','email.checkout_mail_order_for_membership','email.checkout_mail_order_for_ot','email.checkout_mail_order_for_wizard','email.checkout_mail_pay_approved', +'email.checkout_mail_pay_error','email.checkout_mail_pay_info','email.checkout_mail_pay_invoice_open','email.checkout_mail_pay_pre','email.checkout_mail_pay_pre_c1', +'email.checkout_mail_pay_pre_c2','email.checkout_mail_pay_ref','email.checkout_mail_pay_success','email.checkout_mail_pay_with','email.checkout_mail_same_address', +'email.checkout_mail_shipping','email.checkout_mail_status_info','email.checkout_mail_subtotal_ws','email.checkout_mail_system_status','email.checkout_mail_tax', +'email.checkout_mail_tax_info','email.checkout_mail_total','email.checkout_mail_your_mail','email.checkout_subject','email.checkout_subject_extern', +'email.checkout_subject_paid','email.copy2line','email.copy3line','email.copy_to_browser','email.credit_copy1line', +'email.credit_title','email.dear_mrs','email.dear_sir','email.email','email.email_incomplete', +'email.email_subject','email.email_verify','email.email_verify_copy1line','email.first_name','email.footer_copy1', +'email.footer_copy2','email.footer_copy3','email.greetings','email.hello','email.invoice_copy1line', +'email.invoice_title','email.invoice_subject','email.last_name','email.mail_confirm','email.message', +'email.phone','email.request_from','email.reset_pass_copy1line','email.reset_passwort','email.sales_partnership', +'email.sales_partnership_message','email.salutation','email.sender','email.status_copy1line','email.subject', +'email.subject_activate','email.subject_reset','email.update_level_copy1line','email.update_level_title','email.verify_copy1line', +'email.verify_e_mail','email.your_request_from','email.your_custom_payout','email.your_custom_abo_payout','email.subject_custom_payout', +'email.subject_custom_abo_payout','email.button_custom_payout','email.checkout_custom_payout','gtc.gtc','gtc.gtc_copy1', +'gtc.gtc_copy2','gtc.gtc_copy3','gtc.gtc_copy4','gtc.gtc_copy5','gtc.gtc_copy6', +'gtc.gtc_copy7','gtc.gtc_copy8','gtc.gtc_copy9','gtc.','home.', +'home.MIVITA_Consultancy_agreement','home.active_role','home.activities','home.adjust_data','home.adviser_membership_active', +'home.adviser_onlineshop_active','home.adviser_onlineshop_inactive','home.advisor_account_inactive','home.at','home.change_your_email_address', +'home.change_your_personal_data','home.change_your_personal_password','home.create_your_personal_password.','home.current_points_for','home.data', +'home.data_complete_unlocked','home.declaration_of_consent','home.email_verified','home.expired_on','home.log_out_and_see_you_soon', +'home.login','home.manage_membership','home.manage_membership_now_here','home.membership','home.open_since', +'home.open_your_shop','home.privacy_policy_approved','home.security','home.settings_your_shop','home.shop_not_booked', +'home.today_is','home.until','home.welcome_back','home.your_shop','homeparty.', +'homeparty.acceptect_data_protection','homeparty.add_as_guest','homeparty.add_product','homeparty.completed','homeparty.confirm_my_data_is_correct_and_complete', +'homeparty.copy','homeparty.copy_link','homeparty.copy_link_info','homeparty.country_can_no_longer_be_changed_after_created','homeparty.create_delivery_address_host_info', +'homeparty.create_guest','homeparty.create_guests','homeparty.create_guests_info','homeparty.create_new_homeparty','homeparty.credit_bonus', +'homeparty.credit_homeparty_voucher','homeparty.current_bonus_view','homeparty.data_protection','homeparty.data_protection_reasons_your_personal_data_will_not_be_shown','homeparty.deduct_points_by_voucher', +'homeparty.delivery_address_homeparty','homeparty.delivery_directly_to_the_guest','homeparty.delivery_to_host','homeparty.description_welcome_text','homeparty.enter_your_personal_data_for_homeparty', +'homeparty.event_date','homeparty.event_place','homeparty.from','homeparty.general_overview','homeparty.guest', +'homeparty.guest_delete_really','homeparty.guest_lists','homeparty.guest_order_sent_directly_info','homeparty.guests','homeparty.homeparty', +'homeparty.homeparty_add_host_address_info','homeparty.homeparty_delete_really','homeparty.homeparty_invoice_info','homeparty.homeparty_manage','homeparty.host', +'homeparty.host_address_save','homeparty.host_can_not_delete','homeparty.host_homeparty','homeparty.host_organiser_event','homeparty.invitation', +'homeparty.invitation_link_for_guests','homeparty.invoice_address','homeparty.let_your_guests_fill_in_their_own_details','homeparty.manage','homeparty.missing', +'homeparty.next_bonus','homeparty.order','homeparty.order_can_be_send_delivery_address_info','homeparty.order_create','homeparty.order_host', +'homeparty.order_show','homeparty.please_enter_delivery_address_info','homeparty.revoke_consent_at_any_time','homeparty.shipping_costs_host','homeparty.target_turnover', +'homeparty.voucher','homeparty.voucher_bonus','homeparty.voucher_bonus_cannot_be_applied','homeparty.voucher_total','homeparty.your_MIVITA_advice', +'homeparty.your_data_has_been_successfully_created_have_fun','homeparty.your_host','homeparty.your_hostess','homeparty.welcome_copy','marketingplan.title', +'marketingplan.subtitle','marketingplan.current_level','marketingplan.qualification','marketingplan.kp_points','marketingplan.tp_points', +'marketingplan.customer_points_full','marketingplan.team_points_full','marketingplan.provisions','marketingplan.standard','marketingplan.shop', +'marketingplan.provision_rates','marketingplan.team_provisions','marketingplan.team_provisions_by_lines','marketingplan.growth_bonus','marketingplan.next_level', +'marketingplan.your_current_level','marketingplan.your_next_goal','marketingplan.legend','marketingplan.legend_ku_description','marketingplan.legend_tp_description', +'marketingplan.legend_lines_description','marketingplan.legend_percentage_description','marketingplan.no_levels_available','marketingplan.no_levels_configured','marketingplan.loading_error', +'marketingplan.loading_time','marketingplan.show_details','marketingplan.back_to_overview','marketingplan.level_position','marketingplan.level_name', +'marketingplan.level_requirements','marketingplan.level_benefits','marketingplan.paylines','marketingplan.line_1','marketingplan.line_2', +'marketingplan.line_3','marketingplan.line_4','marketingplan.line_5','marketingplan.line_6','marketingplan.line_7', +'marketingplan.line_8','marketingplan.points','marketingplan.percent','marketingplan.euro','marketingplan.active', +'marketingplan.inactive','marketingplan.achieved','marketingplan.not_achieved','marketingplan.in_progress','marketingplan.congratulations', +'marketingplan.keep_going','marketingplan.almost_there','marketingplan.next_step','marketingplan.goal_reached','marketingplan.help_kp_points', +'marketingplan.help_tp_points','marketingplan.help_provisions','marketingplan.help_growth_bonus','membership.','membership.MIVITA_BUSINESS_Paket', +'membership.abo_copy_1','membership.abo_copy_2','membership.abo_copy_3','membership.active','membership.active_package', +'membership.booked_package','membership.change','membership.change_copy_1','membership.change_copy_2','membership.consultant_membership', +'membership.consultant_online_shop','membership.contract_renewal','membership.deactivate','membership.details','membership.downgrade_membership_is_not_possible', +'membership.end','membership.end_button','membership.end_checkbox','membership.end_copy_1','membership.end_copy_2', +'membership.end_copy_3','membership.expired_on','membership.home_copy_SEPA_32','membership.home_copy_SEPA_33','membership.home_copy_SEPA_36', +'membership.home_copy_alert_31','membership.home_copy_alert_35','membership.home_copy_alert_36','membership.home_copy_alert_36_today','membership.home_copy_last_31', +'membership.home_copy_last_33','membership.home_copy_last_34','membership.home_copy_last_35','membership.home_copy_last_36','membership.home_hl', +'membership.inactive','membership.is_no_longer_possible_to_change_package','membership.membership','membership.membership_was_renewed','membership.open_payment_options', +'membership.payment_copy_1','membership.payment_copy_2','membership.payment_has_been_made','membership.renewal_is_active_membership_fee_automatic','membership.status', +'membership.until','membership.upgrade','membership.upgrade_copy_1','membership.upgrade_copy_2','membership.upgrade_package_and_proceed_payment', +'membership.we_do_not_collect_membership_fee','membership.your_booked_package','membership.info_contract_renewal','membership.alert_contract_renewal','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','msg.account_released','navigation.documents', +'navigation.add','navigation.attribute','navigation.business','navigation.career_level','navigation.categories', +'navigation.clients','navigation.commissions','navigation.contents','navigation.countries','navigation.credit', +'navigation.do_order','navigation.edit','navigation.export','navigation.general','navigation.home', +'navigation.ingredients','navigation.invoice','navigation.language','navigation.languages','navigation.logout', +'navigation.manage','navigation.member','navigation.new_member','navigation.member_register','navigation.membership', +'navigation.modules','navigation.my_account','navigation.my_clients','navigation.my_data','navigation.my_homeparty', +'navigation.my_membership','navigation.my_orders','navigation.my_shop','navigation.my_team','navigation.order', +'navigation.orders','navigation.overview','navigation.payment_methods','navigation.payments','navigation.points', +'navigation.products','navigation.sales_volumes','navigation.settings','navigation.shipping_costs','navigation.start_site', +'navigation.structure','navigation.system_settings','navigation.translate','navigation.translation','navigation.trigger', +'navigation.user_roles','navigation.tax_advisor','navigation.downloadcenter','navigation.files','navigation.tags', +'navigation.myabos','navigation.customerabos','navigation.myabo','navigation.customerabo','navigation.abo', +'navigation.abos','navigation.payment_links','navigation.dashboard','navigation.shop','navigation.to_shop', +'navigation.marketingplan','navigation.dhl_cockpit','navigation.revenue','order.add_customer','order.advertising_material', +'order.adviser_collective_invoice','order.adviser_order_for_membership','order.adviser_order_for_registration','order.art_no','order.article', +'order.article_remove','order.assigned_advisor','order.assigned_counsellor','order.billing_address_of_client','order.billing_address_of_the_advisor', +'order.client_order_via_shop','order.collective_invoice','order.collective_invoice_contains_orders','order.compensation_product','order.confirm_and_proceed_to_checkout', +'order.confirm_and_proceed_to_order','order.consultant_order_for_home_party','order.content','order.contents','order.create_invoice', +'order.date','order.delivery_address_of_the_client','order.delivery_address_of_the_consultant','order.delivery_country_can_no_longer_be_changed','order.delivery_country_changed_customer_info', +'order.delivery_country_changed_info','order.delivery_note','order.delivery_to_me','order.delivery_to_the_customer','order.deliverydata', +'order.different_delivery_address','order.error_no_address_data_found','order.external_orders','order.external_orders_info_pay','order.external_orders_info_remove', +'order.external_orders_info_reset','order.goods_are_for_customer_and_shipped','order.goods_are_for_me_and_shipped','order.gross','order.gross_price', +'order.incentives','order.included_VAT','order.invoice','order.invoice_address','order.land_can_no_longer_be_changed', +'order.email_can_not_be_changed','order.link_to_the_invoice','order.my_delivery_address','order.net','order.net_price', +'order.no_address_created','order.no_career_level_info','order.no_delivery_address','order.no_order','order.number_of_items', +'order.order','order.order_consultant','order.order_date','order.order_for_client','order.order_for_consultant', +'order.order_number','order.order_via_external_shop','order.plus_VAT','order.points','order.points_total', +'order.points_turnover_assigned','order.product','order.product_prices_career_level_info','order.product_prices_career_level_cpay_info','order.purchased_from_shop', +'order.quantity','order.ship_to_existing_customer_select_customer','order.ship_to_new_customer','order.ship_to_this_customer','order.ship_to_this_customer_check', +'order.ship_to_this_customer_info','order.ship_to_this_customer_info_2','order.ship_to_this_email_info','order.shipping','order.shipping_compensation_product', +'order.shipping_costs','order.shopping_cart','order.shopping_cart_delete','order.shopping_cart_update','order.subtotal', +'order.sum','order.sums','order.total','order.total_gross','order.total_net', +'order.total_price','order.total_shipping_costs','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.order_abo_was_placed_successfully','order.payment_link_for_your_customer', +'order.delivery','order.number','order.reorder','order.reorder_info','order.reorder_info_2', +'passwords.password','payment.','payment.BIC','payment.IBAN','payment.Mastercard', +'payment.American Express','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.checkout_cancel', +'payment.status.checkout_error','payment.status.checkout_payment','payment.status.payment_approved','payment.status.payment_error','payment.status.payment_not_found', +'payment.status.payment_redirect','payment.status.store_payment','payment.status.success','payment.status.success_payment','payment.status.txaction_appointed', +'payment.status.txaction_failed','payment.status.txaction_paid','payment.thank_you_very_much','payment.total_amount','payment.valid until', +'payment.valid','payment.verification_no','payment.we_have_received_your_order_get_email','payment.your_mivita_team','payment.your_order_number_is', +'payment.open','payment.openly','payment.paid','payment.check','payment.cancelled', +'payment.link_sent','payment.link_openly','payment.link_check','payment.link_pending','payment.link_failed', +'payment.link_canceled','payment.link_appointed','payment.link_paid','payment.alert_link_sent','payment.alert_link_openly', +'payment.alert_link_check','payment.alert_link_pending','payment.alert_link_failed','payment.alert_link_canceled','payment.alert_link_appointed', +'payment.alert_link_paid','payment.failed','payment.no_payment','payment.link_was_paid','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.unknown','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.invoice_does_not_include_vat','pdf.vat_is_declared_and_paid_by_recipient','pdf.tax_free_export_delivery','portal.login','portal.login_title', +'portal.login_email','portal.login_password','portal.login_button','portal.login_forgot_password','portal.login_register', +'portal.mail_subject','portal.mail_hello','portal.mail_otp','portal.mail_otp_valid','portal.mail_otp_not_requested', +'portal.mail_greetings','portal.mail_sender','portal.verify_otp_title','portal.verify_otp_description','portal.verify_otp_resend', +'portal.verify_otp_resend_link','portal.login_send_otp_description','portal.login_send_otp_description2','portal.back_to_shop','portal.guest', +'portal.change_login_title','portal.change_login_title2','portal.logout_button','portal.change_login_description','portal.change_login_description2', +'portal.change_login_description3','portal.change_my_data','portal.change_my_data_empty','portal.my_orders_empty','portal.my_orders_info', +'portal.change_my_data_empty_button','portal.my_subscriptions_empty','portal.my_subscriptions_info','register.accept-contract','register.account_deleted', +'register.adjust','register.advisor_invite','register.agree','register.agree_and_continue','register.assigned', +'register.badge','register.business_license_later','register.business_license_non','register.business_license_non_text','register.business_license_now', +'register.business_license_release','register.business_license_deposited','register.change_documents','register.change_email','register.change_email_address_verify_it_info', +'register.change_email_contact_address_verify_it_info','register.complete','register.complete_registration','register.confirm_your_identity','register.contract', +'register.contract_data_protection','register.create_advisor_send_email_to_invite','register.create_and_next','register.data','register.data_protection', +'register.declaration-of-consent','register.delete_account','register.i_have_read_and_accept_it','register.next','register.open_payment_options', +'register.package','register.password','register.password_has_already_been_created','register.really_delete_the_file','register.reg_checked', +'register.reg_finisch_hl','register.reg_finisch_line_1','register.reg_finisch_line_2','register.reg_hl','register.reg_line_1', +'register.registration','register.registration_completed','register.required_fields','register.save_and_continue','register.select', +'register.sender','register.trade_licence','register.upload','register.wizard_business_license_hl','register.wizard_business_license_line_1', +'register.wizard_create_release_hl','register.wizard_create_release_line_1','register.wizard_finish_hl','register.wizard_finish_line_1','register.wizard_reg_release_hl', +'register.wizard_reg_release_line_1','register.wizard_verification_hl','register.wizard_verification_line_1','reminder.button_31','reminder.button_32', +'reminder.button_33','reminder.button_34','reminder.button_35','reminder.button_36','reminder.button_37', +'reminder.copy_first_31','reminder.copy_first_32','reminder.copy_first_33','reminder.copy_first_34','reminder.copy_first_35', +'reminder.copy_first_36','reminder.copy_first_37','reminder.copy_last_31','reminder.copy_last_32','reminder.copy_last_33', +'reminder.copy_last_34','reminder.copy_last_35','reminder.copy_last_36','reminder.copy_last_37','reminder.subject', +'shop.','shop.Choose Your Shop Name','shop.Shop details','shop.Terms of Use','shop.Your Shop', +'shop.Your Shop Name','shop.accept_and_next','shop.accept_and_change','shop.active_since','shop.available', +'shop.check','shop.declaration_of_shop','shop.domain','shop.name','shop.not_available', +'shop.not_available_copy','shop.open_copy_1','shop.open_copy_2','shop.open_note_1','shop.open_note_hl', +'shop.open_your_shop','shop.edit_your_shop','shop.order_customer','shop.orders_customers','shop.preview_shop_internet_address', +'shop.save and continue','shop.shop_about','shop.shop_about_help','shop.shop_accessibility','shop.shop_accessibility_help', +'shop.shop_contact','shop.shop_contact_help','shop.shop_image','shop.shop_image_copy','shop.shop_name_description', +'shop.shop_name_error_1','shop.shop_name_error_2','shop.shop_on_site','shop.shop_on_site_copy','shop.shop_title', +'shop.shop_title_help','shop.your_shop_name','shop.shop_contact_text','shop.shop_accessibility_text','shop.phone', +'shop.mobil','shop.your_street_number','shop.your_zip_code','shop.your_city','shop.your_phone_number', +'shop.your_mobile_number','shop.error_subdomain_exists','shop.your_current_shop_name','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','tables.my_commission','tables.start_date', +'tables.next_date','tables.last_date','tables.abo_delivery_day','tables.abo_delivery','tables.active', +'tables.is_for','tables.count','tables.member','tables.adviser','tables.exc', +'tables.executions','tables.previous_orders','tables.partner_since','team.','team.KU', +'team.PP','team.TP','team.WB','team.account','team.account_to', +'team.active','team.business','team.career_level','team.collapse_all','team.commission_WB', +'team.commission_payline','team.commission_shop','team.commission_team','team.commission_total','team.completed', +'team.create_new_consultant','team.current_commission_level','team.customer_commission','team.consultant_margin','team.consultant_margin_info', +'team.customer_points','team.date','team.e','team.expand_all','team.export', +'team.export_as_xls','team.link_for_consultant_registration','team.net_turnover','team.new_consultant_copy1','team.next_career_level', +'team.next_commission_level','team.no_sponsor_assigned','team.not_active','team.own','team.payline_points', +'team.points','team.qualification','team.qualification_commission','team.qualification_points','team.register_new_consultant', +'team.s','team.shop','team.shop_commission','team.sponsor','team.structure', +'team.total_points','team.total_turnover','team.until','team.volume_KU','team.your_sponsor', +'team.your_team','team.sales_store_net','team.filename_export','team.payout_details','team.filter_active', +'team.filter_not_active','team.filter_all','team.all_status','team.qualified_green','team.in_progress_yellow', +'team.no_level_red','team.optimized','team.standard_monitoring','team.fallback','team.loading_time', +'team.memory','team.memory_usage','team.team_size','team.team_members','team.execution_time', +'team.user_id','team.performance_details','team.team_structure','team.new_member','team.optimized_action', +'team.standard_action','team.close','team.show_details','team.test_optimized','team.standard_version', +'team.performance_metrics_team_overview','team.performance_metrics_my_team','team.performance_monitoring','team.fallback_support','team.optimized_with_cache', +'team.datatable_mode_switched','team.error_loading_optimized_overview','team.live_not_supported_fallback','team.optimized_performance_features','team.next_level', +'team.calculation_type','team.version','team.cache','team.live','team.ID', +'team.Ebene','team.Level','team.KD','team.bis','validation.attributes.accepted_data_checkbox', +'validation.attributes.accepted_data_protection','validation.attributes.address','validation.attributes.age','validation.attributes.available','validation.attributes.billing_address', +'validation.attributes.billing_city','validation.attributes.billing_country_code','validation.attributes.billing_email','validation.attributes.billing_firstname','validation.attributes.billing_lastname', +'validation.attributes.billing_salutation','validation.attributes.billing_zipcode','validation.attributes.birthday','validation.attributes.city','validation.attributes.content', +'validation.attributes.country','validation.attributes.date','validation.attributes.day','validation.attributes.description','validation.attributes.email', +'validation.attributes.email-confirm','validation.attributes.excerpt','validation.attributes.first_name','validation.attributes.g-recaptcha-response','validation.attributes.gender', +'validation.attributes.has_customer_buyed','validation.attributes.hour','validation.attributes.last_name','validation.attributes.m_account','validation.attributes.message', +'validation.attributes.minute','validation.attributes.mobil','validation.attributes.mobile','validation.attributes.month','validation.attributes.name', +'validation.attributes.password','validation.attributes.password-confirm','validation.attributes.password_confirmation','validation.attributes.phone','validation.attributes.place', +'validation.attributes.reverse_charge','validation.attributes.sales_partnership','validation.attributes.sales_partnership_message','validation.attributes.salutation','validation.attributes.second', +'validation.attributes.sex','validation.attributes.shipping_address','validation.attributes.shipping_city','validation.attributes.shipping_firstname','validation.attributes.shipping_lastname', +'validation.attributes.shipping_salutation','validation.attributes.shipping_zipcode','validation.attributes.size','validation.attributes.tax_identification_number','validation.attributes.tax_number', +'validation.attributes.time','validation.attributes.title','validation.attributes.user_shop_active','validation.attributes.user_shop_name','validation.attributes.username', +'validation.attributes.year','validation.custom.match_found','validation.custom.no_email','validation.custom.shipping_not_found','validation.custom.unique_email_client', +'validation.custom.unique_email_member','validation.full_word_check','validation.old_password','validation.profanity','validation.recaptcha', +'validation.users_update_email','webcontent.career_opportunities_at_mivita','webcontent.requirement_profile','webcontent.advantages_of_direct_sales','webcontent.compatibility_with_family_private_life', +'webcontent.start_up','webcontent.that_sounds_exciting_to_you','webcontent.then_get_in_touch_with_us_today','webcontent.to_the_registration','webcontent.to_the_contact_form', +'webcontent.aloe_vera_word_copy','webcontent.origin_aloe_hl','webcontent.origin_aloe_subl','webcontent.origin_aloe_copy','webcontent.bio_quality_hl', +'webcontent.bio_quality_subl','webcontent.bio_quality_copy','webcontent.shop_at_the_aloe_vera_farm','webcontent.aloe_high_quality_hl','webcontent.aloe_high_quality_subl', +'webcontent.aloe_high_quality_copy','webcontent.aloe_high_quality_li1','webcontent.aloe_high_quality_li2','webcontent.aloe_high_quality_li3','webcontent.aloe_high_quality_li4', +'webcontent.aloe_high_quality_li5','webcontent.aloe_high_quality_li6','webcontent.aloe_high_quality_li7','webcontent.aloe_high_quality_li8','webcontent.aloe_high_quality_li9', +'webcontent.aloe_high_quality_li10','webcontent.pillars_best_aloe_vera_quality','webcontent.pillars_best_aloe_vera_quality_1_hl','webcontent.pillars_best_aloe_vera_quality_1_subl','webcontent.pillars_best_aloe_vera_quality_2_hl', +'webcontent.pillars_best_aloe_vera_quality_2_subl','webcontent.pillars_best_aloe_vera_quality_3_hl','webcontent.pillars_best_aloe_vera_quality_3_subl','webcontent.pillars_best_aloe_vera_quality_4_hl','webcontent.pillars_best_aloe_vera_quality_4_subl', +'webcontent.pillars_best_aloe_vera_quality_5_hl','webcontent.pillars_best_aloe_vera_quality_5_subl','webcontent.requirement_profile_at_mivita','webcontent.requirement_profile_at_mivita_copy','webcontent.trade_licence_hl', +'webcontent.trade_licence_copy','webcontent.funding_opportunities_hl','webcontent.funding_opportunities_copy','webcontent.social_security_hl','webcontent.social_security_copy', +'webcontent.training_aloe_farm_mallorca','webcontent.training_aloe_farm_mallorca_copy','webcontent.career_opportunitie_point_1','webcontent.career_opportunitie_point_2','webcontent.career_opportunitie_point_3', +'webcontent.career_opportunitie_point_4','webcontent.career_opportunitie_point_5','webcontent.make_people_happy_hl','webcontent.make_people_happy_copy','webcontent.how_to_sell_exactly_hl', +'webcontent.how_to_sell_exactly_copy','webcontent.private_environment_hl','webcontent.private_environment_list','webcontent.business_environment_hl','webcontent.business_environment_list', +'webcontent.social_environment_hl','webcontent.social_environment_list','webcontent.direct_sales_advantages_hl','webcontent.direct_sales_advantages_copy','webcontent.direct_sales_exactly_hl', +'webcontent.direct_sales_exactly_copy','webcontent.advantages_MIVITA_hl','webcontent.advantages_MIVITA_subl','webcontent.advantages_MIVITA_list','webcontent.advantages_MIVITA_botl', +'webcontent.advantages_direct_sales_hl','webcontent.advantages_direct_sales_subl','webcontent.advantages_direct_sales_list','webcontent.compatibility_with_family_copy1','webcontent.compatibility_with_family_copy2', +'webcontent.compatibility_with_family_list','webcontent.women_direct_sales_hl','webcontent.women_direct_sales_copy','webcontent.','weborder.product_details', +'weborder.description','weborder.application','weborder.ingredients','weborder.to_shopping_cart','weborder.shopping_cart', +'weborder.excl_VAT_plus_shipping_costs','weborder.incl_VAT_plus_shipping_costs','weborder.free_shipping_costs_from','weborder.only_missing_free_shipping_costs_from','weborder.add_shopping_cart', +'weborder.details','weborder.to_product','weborder.price_net','weborder.incl','weborder.VAT', +'weborder.plus_shipping_cost','weborder.delivery_time_1_3','weborder.payment_methods','weborder.payment_method_paypal','weborder.payment_method_paypal_copy', +'weborder.payment_method_direct','weborder.payment_method_direct_copy','weborder.payment_method_sepa','weborder.payment_method_sepa_copy','weborder.payment_method_creditcard', +'weborder.payment_method_creditcard_copy','weborder.payment_method_prepayment','weborder.payment_method_prepayment_copy','weborder.shipping_methods_costs','weborder.free_shipping_at', +'weborder.only_missing_free_shipping_at','weborder.free_shipping','weborder.not_free_shipping','weborder.shopping_cart_sum','weborder.shipping_cost', +'weborder.sum_net','weborder.checkout_ssl_server','weborder.to_checkout','weborder.all_price_plus_VAT_info','weborder.', +'website.start','website.aloe_vera','website.productworld','website.career_opportunities','website.contact', +'website.shop','website.partner','website.register','website.contents','website.all_rights_reserved', +'website.payment_methods','website.impress','website.cancellation_policy','website.privacy_policy','website.gtc', +'website.shipping_costs','website.sales_partner_or_questions','website.contact_now','website.contact_number','website.contact_number_link', +'website.to_contact','website.email','website.address','website.phone','website.contact_address', +'website.phone_number','website.email_address','website.business_hours','website.business_hours_details','website.language', +'website.you_are_now_in_shop','website.you_are_now_in_shop_notice','website.change_country','website.start_copy_mivita','website.more', +'website.read','website.NOW','website.slider_subl','website.slider_hl','website.start_why_hl', +'website.start_why_copy','website.start_aloe_hl','website.start_aloe_copy','website.start_products_hl','website.start_products_copy', +'website.start_salespartner_hl','website.start_salespartner_copy','website.start_mivitapartner_copy','website.youtube_accepted_copy','website.to_privacy_policy', +'website.accept_youtube_load','website.welcome','website.welcome_copy','website.my_accessibility','website.for_you_on_spot', +'website.for_you_on_spot_copy','website.thank_you_for_your_request','website.we_will_get_back_to_you','website.best_regards','website.your_mivita_team', +'website.contact_hl','website.contact_subl','website.your_message_to_us','website.your_enquiry_relate_partnership','website.yes', +'website.no','website.through_whom_label','website.through_whom_placeholder','website.send_message','website.register_now', +'website.business_owner','website.registry_court','website.register_number','website.VATID','website.business_owner_value', +'website.registry_court_value','website.register_number_value','website.VATID_value','website.support_mivita','website.note_on_use', +'website.online_dispute_resolution','website.note_on_use_copy','website.online_dispute_resolution_copy','website.show_all_products','website.to_login', +'website.to_customer_portal','website.to_sales_center','website.shipping_error_billing','website.shipping_error_delivery','website.', +'abo.abo_delivery_interval','abo.delivery_interval','actions.image_too_small','order.VAT','website.my_accessibility:', +'website.Director General','laravel-profane.de.validation.0','laravel-profane.de.validation.1','laravel-profane.de.validation.2','laravel-profane.de.validation.3', +'laravel-profane.de.validation.4','laravel-profane.de.validation.5','laravel-profane.de.validation.6','laravel-profane.de.validation.7','laravel-profane.de.validation.8', +'laravel-profane.de.validation.9','laravel-profane.de.validation.10','laravel-profane.de.validation.11','laravel-profane.de.validation.12','laravel-profane.de.validation.13', +'laravel-profane.de.validation.14','laravel-profane.de.validation.15','laravel-profane.de.validation.16','laravel-profane.de.validation.17','laravel-profane.de.validation.18', +'laravel-profane.de.validation.19','laravel-profane.de.validation.20','laravel-profane.de.validation.21','laravel-profane.de.validation.22','laravel-profane.de.validation.23', +'laravel-profane.de.validation.24','laravel-profane.de.validation.25','laravel-profane.de.validation.26','laravel-profane.de.validation.27','laravel-profane.de.validation.28', +'laravel-profane.de.validation.29','laravel-profane.de.validation.30','laravel-profane.de.validation.31','laravel-profane.de.validation.32','laravel-profane.de.validation.33', +'laravel-profane.de.validation.34','laravel-profane.de.validation.35','laravel-profane.de.validation.36','laravel-profane.de.validation.37','laravel-profane.de.validation.38', +'laravel-profane.de.validation.39','laravel-profane.de.validation.40','laravel-profane.de.validation.41','laravel-profane.de.validation.42','laravel-profane.de.validation.43', +'laravel-profane.de.validation.44','laravel-profane.de.validation.45','laravel-profane.de.validation.46','laravel-profane.de.validation.47','laravel-profane.de.validation.48', +'laravel-profane.de.validation.49','laravel-profane.de.validation.50','laravel-profane.de.validation.51','laravel-profane.de.validation.52','laravel-profane.de.validation.53', +'laravel-profane.de.validation.54','laravel-profane.de.validation.55','laravel-profane.de.validation.56','laravel-profane.de.validation.57','laravel-profane.de.validation.58', +'laravel-profane.de.validation.59','laravel-profane.de.validation.60','laravel-profane.de.validation.61','laravel-profane.de.validation.62','laravel-profane.de.validation.63', +'laravel-profane.de.validation.64','laravel-profane.de.validation.65','laravel-profane.de.validation.66','laravel-profane.de.validation.67','laravel-profane.de.validation.68', +'laravel-profane.de.validation.69','laravel-profane.de.validation.70','laravel-profane.de.validation.71','laravel-profane.de.validation.72','laravel-profane.en.validation.profane', +'laravel-profane.es-cl.validation.profane','laravel-profane.es.validation.profane','laravel-profane.fr.validation.profane','laravel-profane.gr.validation.profane','laravel-profane.id.validation.profane', +'laravel-profane.it.validation.profane','laravel-profane.ml.validation.profane','laravel-profane.nl.validation.profane','laravel-profane.pt-br.validation.profane','laravel-profane.ro-md.validation.profane', +'laravel-profane.ro.validation.profane','laravel-profane.sk.validation.profane','laravel-profane.sr-rs.validation.profane','laravel-profane.zh-tw.validation.profane','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.de.errors.key_exists','translation.de.errors.language_exists', +'translation.de.translation.Gruppe','translation.de.translation.add','translation.de.translation.add_language','translation.de.translation.add_translation','translation.de.translation.advanced_options', +'translation.de.translation.file','translation.de.translation.group_label','translation.de.translation.group_placeholder','translation.de.translation.group_single','translation.de.translation.invalid_driver', +'translation.de.translation.invalid_language','translation.de.translation.key','translation.de.translation.key_label','translation.de.translation.key_placeholder','translation.de.translation.keys_synced', +'translation.de.translation.language','translation.de.translation.language_added','translation.de.translation.language_exists','translation.de.translation.language_key_added','translation.de.translation.language_name', +'translation.de.translation.languages','translation.de.translation.locale','translation.de.translation.namespace','translation.de.translation.namespace_label','translation.de.translation.namespace_placeholder', +'translation.de.translation.no_missing_keys','translation.de.translation.prompt_file','translation.de.translation.prompt_from_driver','translation.de.translation.prompt_key','translation.de.translation.prompt_language', +'translation.de.translation.prompt_language_for_key','translation.de.translation.prompt_language_if_any','translation.de.translation.prompt_to_driver','translation.de.translation.prompt_type','translation.de.translation.prompt_value', +'translation.de.translation.save','translation.de.translation.search','translation.de.translation.single','translation.de.translation.synced','translation.de.translation.synchronisieren', +'translation.de.translation.translation_added','translation.de.translation.translations','translation.de.translation.type','translation.de.translation.type_error','translation.de.translation.uh_oh', +'translation.de.translation.value','translation.de.translation.value_label','translation.de.translation.value_placeholder','translation.en.errors.key_exists','translation.en.errors.language_exists', +'translation.en.translation.add','translation.en.translation.add_language','translation.en.translation.add_translation','translation.en.translation.advanced_options','translation.en.translation.file', +'translation.en.translation.group','translation.en.translation.group_label','translation.en.translation.group_placeholder','translation.en.translation.group_single','translation.en.translation.invalid_driver', +'translation.en.translation.invalid_language','translation.en.translation.key','translation.en.translation.key_label','translation.en.translation.key_placeholder','translation.en.translation.keys_synced', +'translation.en.translation.language','translation.en.translation.language_added','translation.en.translation.language_exists','translation.en.translation.language_key_added','translation.en.translation.language_name', +'translation.en.translation.languages','translation.en.translation.locale','translation.en.translation.namespace','translation.en.translation.namespace_label','translation.en.translation.namespace_placeholder', +'translation.en.translation.no_missing_keys','translation.en.translation.prompt_file','translation.en.translation.prompt_from_driver','translation.en.translation.prompt_key','translation.en.translation.prompt_language', +'translation.en.translation.prompt_language_for_key','translation.en.translation.prompt_language_if_any','translation.en.translation.prompt_to_driver','translation.en.translation.prompt_type','translation.en.translation.prompt_value', +'translation.en.translation.save','translation.en.translation.search','translation.en.translation.single','translation.en.translation.synced','translation.en.translation.syncing', +'translation.en.translation.translation_added','translation.en.translation.translations','translation.en.translation.type','translation.en.translation.type_error','translation.en.translation.uh_oh', +'translation.en.translation.value','translation.en.translation.value_label','translation.en.translation.value_placeholder','translation.es.errors.key_exists','translation.es.errors.language_exists', +'translation.fr.errors.key_exists','translation.fr.errors.language_exists','translation.fr.translation.add','translation.fr.translation.add_language','translation.fr.translation.add_translation', +'translation.fr.translation.advanced_options','translation.fr.translation.file','translation.fr.translation.group','translation.fr.translation.group_label','translation.fr.translation.group_placeholder', +'translation.fr.translation.group_single','translation.fr.translation.invalid_driver','translation.fr.translation.invalid_language','translation.fr.translation.key','translation.fr.translation.key_label', +'translation.fr.translation.key_placeholder','translation.fr.translation.keys_synced','translation.fr.translation.language','translation.fr.translation.language_added','translation.fr.translation.language_exists', +'translation.fr.translation.language_key_added','translation.fr.translation.language_name','translation.fr.translation.languages','translation.fr.translation.locale','translation.fr.translation.namespace', +'translation.fr.translation.namespace_label','translation.fr.translation.namespace_placeholder','translation.fr.translation.no_missing_keys','translation.fr.translation.prompt_file','translation.fr.translation.prompt_from_driver', +'translation.fr.translation.prompt_key','translation.fr.translation.prompt_language','translation.fr.translation.prompt_language_for_key','translation.fr.translation.prompt_language_if_any','translation.fr.translation.prompt_to_driver', +'translation.fr.translation.prompt_type','translation.fr.translation.prompt_value','translation.fr.translation.save','translation.fr.translation.search','translation.fr.translation.single', +'translation.fr.translation.synced','translation.fr.translation.syncing','translation.fr.translation.translation_added','translation.fr.translation.translations','translation.fr.translation.type', +'translation.fr.translation.type_error','translation.fr.translation.uh_oh','translation.fr.translation.value','translation.fr.translation.value_label','translation.fr.translation.value_placeholder', +'translation.nl.errors.language_exists','translation.nl.errors.key_exists','translation.nl.translation.languages','translation.nl.translation.language','translation.nl.translation.type', +'translation.nl.translation.file','translation.nl.translation.key','translation.nl.translation.prompt_language','translation.nl.translation.language_added','translation.nl.translation.prompt_language_for_key', +'translation.nl.translation.prompt_type','translation.nl.translation.prompt_file','translation.nl.translation.prompt_key','translation.nl.translation.prompt_value','translation.nl.translation.type_error', +'translation.nl.translation.language_key_added','translation.nl.translation.no_missing_keys','translation.nl.translation.keys_synced','translation.nl.translation.search','translation.nl.translation.translations', +'translation.nl.translation.language_name','translation.nl.translation.locale','translation.nl.translation.add','translation.nl.translation.add_language','translation.nl.translation.save', +'translation.nl.translation.language_exists','translation.nl.translation.uh_oh','translation.nl.translation.group_single','translation.nl.translation.group','translation.nl.translation.single', +'translation.nl.translation.value','translation.nl.translation.namespace','translation.nl.translation.prompt_from_driver','translation.nl.translation.prompt_to_driver','translation.nl.translation.prompt_language_if_any', +'translation.nl.translation.syncing','translation.nl.translation.synced','translation.nl.translation.invalid_driver','translation.nl.translation.invalid_language','translation.nl.translation.add_translation', +'translation.nl.translation.translation_added','translation.nl.translation.namespace_label','translation.nl.translation.group_label','translation.nl.translation.key_label','translation.nl.translation.value_label', +'translation.nl.translation.namespace_placeholder','translation.nl.translation.group_placeholder','translation.nl.translation.key_placeholder','translation.nl.translation.value_placeholder','translation.nl.translation.advanced_options', +'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',); registerArgumentsSet('env', 'APP_NAME','APP_ENV','APP_DEBUG','APP_KEY','APP_URL', 'APP_URL_CRM','APP_DOMAIN','APP_TLD_CARE','APP_TLD_SHOP','APP_PROTOCOL', -'APP_URL_MAIN','APP_URL_CHECKOUT','APP_URL_CRM','APP_URL_PORTAL','APP_CONTACT_MAIL', -'APP_CHECKOUT_MAIL','APP_INFO_MAIL','APP_PROORITY_MAIL','APP_DEFAULT_MAIL','APP_CHECKOUT_TEST_MAIL', -'APP_INFO_TEST_MAIL','EXCEPTION_MAIL','SESSION_DOMAIN','APP_MODE','APP_IPINFO', -'APP_MAIN_TAX','APP_MAIN_TAX_RATE','APP_SHIPPING_TAX','APP_PHP_VERSION','LOG_CHANNEL', -'DB_CONNECTION','DB_HOST','DB_PORT','DB_DATABASE','DB_USERNAME', -'DB_PASSWORD','PAYONE_URL','PAYONE_TS','PAYONE_KEY','BROADCAST_DRIVER', -'CACHE_DRIVER','SESSION_DRIVER','SESSION_LIFETIME','QUEUE_DRIVER','REDIS_HOST', -'REDIS_PASSWORD','REDIS_PORT','MAIL_DRIVER','MAIL_HOST','MAIL_PORT', -'MAIL_USERNAME','MAIL_PASSWORD','MAIL_ENCRYPTION','PUSHER_APP_ID','PUSHER_APP_KEY', -'PUSHER_APP_SECRET','PUSHER_APP_CLUSTER','MIX_PUSHER_APP_KEY','MIX_PUSHER_APP_CLUSTER','MIVITA_RENEWAL_DAYS', -'MIVITA_REMIND_FIRST_DAYS','MIVITA_REMIND_SEC_DAYS','MIVITA_ABO_BOOKING_DAYS','MIVITA_REMIND_LAST_DAYS','MIVITA_EDIT_DATA_PASS', -'MIVITA_ADD_NUMBER_ID','DHL_API_TYPE','DHL_API_KEY','DHL_API_SECRET','DHL_API_USERNAME', -'DHL_API_PASSWORD','DHL_SANDBOX','DHL_TEST_MODE','DHL_ACCOUNT_NUMBER_DEFAULT','DHL_ACCOUNT_NUMBER_V01PAK', +'APP_URL_MAIN','APP_URL_CHECKOUT','APP_PRE_URL_CRM','APP_URL_PORTAL','APP_PRE_URL_PORTAL', +'APP_CONTACT_MAIL','APP_CHECKOUT_MAIL','APP_INFO_MAIL','APP_PROORITY_MAIL','APP_DEFAULT_MAIL', +'APP_CHECKOUT_TEST_MAIL','APP_INFO_TEST_MAIL','EXCEPTION_MAIL','SESSION_DOMAIN','APP_MODE', +'APP_IPINFO','APP_MAIN_TAX','APP_MAIN_TAX_RATE','APP_SHIPPING_TAX','APP_PHP_VERSION', +'LOG_CHANNEL','DB_CONNECTION','DB_HOST','DB_PORT','DB_DATABASE', +'DB_USERNAME','DB_PASSWORD','FORWARD_DB_PORT','MYSQL_EXTRA_OPTIONS','PAYONE_URL', +'PAYONE_TS','PAYONE_KEY','BROADCAST_DRIVER','CACHE_DRIVER','SESSION_DRIVER', +'SESSION_LIFETIME','QUEUE_DRIVER','QUEUE_CONNECTION','REDIS_HOST','REDIS_PASSWORD', +'REDIS_PORT','MAIL_DRIVER','MAIL_HOST','MAIL_PORT','PUSHER_APP_ID', +'PUSHER_APP_KEY','PUSHER_APP_SECRET','PUSHER_APP_CLUSTER','MIX_PUSHER_APP_KEY','MIX_PUSHER_APP_CLUSTER', +'MIVITA_RENEWAL_DAYS','MIVITA_REMIND_FIRST_DAYS','MIVITA_REMIND_SEC_DAYS','MIVITA_ABO_BOOKING_DAYS','MIVITA_REMIND_LAST_DAYS', +'MIVITA_EDIT_DATA_PASS','MIVITA_ADD_NUMBER_ID','DHL_BASE_URL','DHL_API_KEY','DHL_USERNAME', +'DHL_PASSWORD','DHL_BILLING_NUMBER','DHL_PRODUCT','DHL_LABEL_FORMAT','DHL_PRINT_FORMAT', +'DHL_RETOURE_PRINT_FORMAT','DHL_PROFILE','DHL_USE_QUEUE','DHL_ACCOUNT_NUMBER_DEFAULT','DHL_ACCOUNT_NUMBER_V01PAK', +'DHL_ACCOUNT_NUMBER_V62WP','DHL_ACCOUNT_NUMBER_V53PAK','DHL_ACCOUNT_NUMBER_V07PAK','DHL_ACCOUNT_NUMBER_DEFAULT','DHL_ACCOUNT_NUMBER_V01PAK', 'DHL_ACCOUNT_NUMBER_V62WP','DHL_ACCOUNT_NUMBER_V53PAK','DHL_ACCOUNT_NUMBER_V07PAK','DHL_SENDER_COMPANY','DHL_SENDER_NAME', -'DHL_SENDER_STREET','DHL_SENDER_STREET_NUMBER','DHL_SENDER_POSTAL_CODE','DHL_SENDER_CITY','DHL_SENDER_STATE', -'DHL_SENDER_COUNTRY','DHL_SENDER_EMAIL','DHL_SENDER_PHONE','DHL_DEFAULT_PRODUCT','DHL_LABEL_FORMAT', -'DHL_LABEL_SIZE','DHL_LABEL_STORAGE_PATH','DHL_LABEL_PUBLIC_PATH','DHL_RETURNS_ENABLED','DHL_RETURN_PRODUCT', -'DHL_RETURN_RECEIVER_ID','DHL_TRACKING_ENABLED','DHL_TRACKING_AUTO_UPDATE','DHL_TRACKING_UPDATE_INTERVAL','DHL_LOGGING_ENABLED', -'DHL_LOGGING_LEVEL','DHL_LOG_REQUESTS','DHL_LOG_RESPONSES','DHL_QUEUE_CONNECTION','DHL_QUEUE_NAME', -'DHL_QUEUE_TIMEOUT','DHL_QUEUE_MAX_TRIES','DHL_THROW_EXCEPTIONS','DHL_ERROR_NOTIFICATION_EMAIL','DHL_CACHE_ENABLED', -'DHL_CACHE_TTL','DHL_FAKE_API_CALLS','DHL_MOCK_RESPONSES','DHL_DEBUG_MODE',); +'DHL_SENDER_STREET','DHL_SENDER_STREET_NUMBER','DHL_SENDER_POSTAL_CODE','DHL_SENDER_CITY','DHL_SENDER_COUNTRY', +'DHL_SENDER_EMAIL','DHL_SENDER_PHONE','DHL_API_TYPE','DHL_API_SECRET','DHL_SANDBOX', +'DHL_TEST_MODE',); expectedArguments(\Illuminate\Support\Facades\Gate::has(), 0, argumentsSet('auth')); expectedArguments(\Illuminate\Support\Facades\Gate::allows(), 0, argumentsSet('auth')); diff --git a/_ide_helper b/_ide_helper index bac64db..1de9f0e 100644 Binary files a/_ide_helper and b/_ide_helper differ diff --git a/_ide_helper.php b/_ide_helper.php index fb37930..562be67 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.45.1. + * Generated for Laravel 11.45.2. * * 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 = '') { @@ -359,8 +357,8 @@ namespace Illuminate\Support\Facades { * 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) { @@ -1239,10 +1237,10 @@ namespace Illuminate\Support\Facades { * `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() { @@ -2602,8 +2592,8 @@ namespace Illuminate\Support\Facades { * * This method does not cycle the "remember" token. * - * @return void - * @static + * @return void + * @static */ public static function logoutCurrentDevice() { @@ -2617,9 +2607,9 @@ namespace Illuminate\Support\Facades { * 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) { @@ -3585,8 +3571,8 @@ namespace Illuminate\Support\Facades { * 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) { @@ -3835,8 +3819,8 @@ namespace Illuminate\Support\Facades { * * @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) { @@ -4586,8 +4568,8 @@ namespace Illuminate\Support\Facades { * 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) { @@ -8365,8 +8333,8 @@ namespace Illuminate\Support\Facades { * * @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 { } /** - * - * * @see \Illuminate\Translation\Translator */ class Lang { @@ -9087,8 +9049,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) { @@ -9102,8 +9064,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) { @@ -9118,8 +9080,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) { @@ -9134,8 +9096,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) { @@ -9149,8 +9111,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 = '*') { @@ -9164,8 +9126,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) { @@ -9177,8 +9139,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) { @@ -9191,8 +9153,8 @@ namespace Illuminate\Support\Facades { * * @param string $namespace * @param string $hint - * @return void - * @static + * @return void + * @static */ public static function addNamespace($namespace, $hint) { @@ -9204,8 +9166,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) { @@ -9217,8 +9179,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) { @@ -9230,8 +9192,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) { @@ -9243,8 +9205,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) { @@ -9255,8 +9217,8 @@ namespace Illuminate\Support\Facades { /** * Get the message selector instance. * - * @return \Illuminate\Translation\MessageSelector - * @static + * @return \Illuminate\Translation\MessageSelector + * @static */ public static function getSelector() { @@ -9268,8 +9230,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) { @@ -9280,8 +9242,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() { @@ -9292,8 +9254,8 @@ namespace Illuminate\Support\Facades { /** * Get the default locale being used. * - * @return string - * @static + * @return string + * @static */ public static function locale() { @@ -9304,8 +9266,8 @@ namespace Illuminate\Support\Facades { /** * Get the default locale being used. * - * @return string - * @static + * @return string + * @static */ public static function getLocale() { @@ -9317,9 +9279,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) { @@ -9330,8 +9292,8 @@ namespace Illuminate\Support\Facades { /** * Get the fallback locale being used. * - * @return string - * @static + * @return string + * @static */ public static function getFallback() { @@ -9343,8 +9305,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) { @@ -9356,8 +9318,8 @@ namespace Illuminate\Support\Facades { * Set the loaded translation groups. * * @param array $loaded - * @return void - * @static + * @return void + * @static */ public static function setLoaded($loaded) { @@ -9370,8 +9332,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) { @@ -9384,8 +9346,8 @@ namespace Illuminate\Support\Facades { * * @param string $key * @param array $parsed - * @return void - * @static + * @return void + * @static */ public static function setParsedKey($key, $parsed) { @@ -9397,8 +9359,8 @@ namespace Illuminate\Support\Facades { /** * Flush the cache of parsed keys. * - * @return void - * @static + * @return void + * @static */ public static function flushParsedKeys() { @@ -9413,8 +9375,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) { @@ -9426,9 +9388,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) { @@ -9439,8 +9401,8 @@ namespace Illuminate\Support\Facades { * Checks if macro is registered. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasMacro($name) { @@ -9450,8 +9412,8 @@ namespace Illuminate\Support\Facades { /** * Flush the existing macros. * - * @return void - * @static + * @return void + * @static */ public static function flushMacros() { @@ -9460,8 +9422,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) @@ -9477,8 +9437,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) { @@ -9491,8 +9451,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) { @@ -9504,8 +9464,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) { @@ -9517,8 +9477,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) { @@ -9530,8 +9490,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) { @@ -9542,8 +9502,8 @@ namespace Illuminate\Support\Facades { /** * The context shared across channels and stacks. * - * @return array - * @static + * @return array + * @static */ public static function sharedContext() { @@ -9554,8 +9514,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() { @@ -9566,8 +9526,8 @@ namespace Illuminate\Support\Facades { /** * Flush the shared context. * - * @return \Illuminate\Log\LogManager - * @static + * @return \Illuminate\Log\LogManager + * @static */ public static function flushSharedContext() { @@ -9578,8 +9538,8 @@ namespace Illuminate\Support\Facades { /** * Get the default log driver name. * - * @return string|null - * @static + * @return string|null + * @static */ public static function getDefaultDriver() { @@ -9591,8 +9551,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) { @@ -9605,8 +9565,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) { @@ -9618,8 +9578,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) { @@ -9630,8 +9590,8 @@ namespace Illuminate\Support\Facades { /** * Get all of the resolved log channels. * - * @return array - * @static + * @return array + * @static */ public static function getChannels() { @@ -9644,8 +9604,8 @@ namespace Illuminate\Support\Facades { * * @param string|\Stringable $message * @param array $context - * @return void - * @static + * @return void + * @static */ public static function emergency($message, $context = []) { @@ -9661,8 +9621,8 @@ namespace Illuminate\Support\Facades { * * @param string|\Stringable $message * @param array $context - * @return void - * @static + * @return void + * @static */ public static function alert($message, $context = []) { @@ -9677,8 +9637,8 @@ namespace Illuminate\Support\Facades { * * @param string|\Stringable $message * @param array $context - * @return void - * @static + * @return void + * @static */ public static function critical($message, $context = []) { @@ -9692,8 +9652,8 @@ namespace Illuminate\Support\Facades { * * @param string|\Stringable $message * @param array $context - * @return void - * @static + * @return void + * @static */ public static function error($message, $context = []) { @@ -9709,8 +9669,8 @@ namespace Illuminate\Support\Facades { * * @param string|\Stringable $message * @param array $context - * @return void - * @static + * @return void + * @static */ public static function warning($message, $context = []) { @@ -9723,8 +9683,8 @@ namespace Illuminate\Support\Facades { * * @param string|\Stringable $message * @param array $context - * @return void - * @static + * @return void + * @static */ public static function notice($message, $context = []) { @@ -9739,8 +9699,8 @@ namespace Illuminate\Support\Facades { * * @param string|\Stringable $message * @param array $context - * @return void - * @static + * @return void + * @static */ public static function info($message, $context = []) { @@ -9753,8 +9713,8 @@ namespace Illuminate\Support\Facades { * * @param string|\Stringable $message * @param array $context - * @return void - * @static + * @return void + * @static */ public static function debug($message, $context = []) { @@ -9768,8 +9728,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 = []) { @@ -9781,8 +9741,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) { @@ -9792,8 +9752,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) @@ -9820,8 +9778,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) { @@ -9833,8 +9791,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) { @@ -9846,8 +9804,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) { @@ -9859,9 +9817,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) { @@ -9872,8 +9830,8 @@ namespace Illuminate\Support\Facades { /** * Get the default mail driver name. * - * @return string - * @static + * @return string + * @static */ public static function getDefaultDriver() { @@ -9885,8 +9843,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) { @@ -9898,8 +9856,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) { @@ -9912,8 +9870,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) { @@ -9924,8 +9882,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() { @@ -9937,8 +9895,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) { @@ -9949,8 +9907,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() { @@ -9963,8 +9921,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) { @@ -9977,8 +9935,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) { @@ -9991,8 +9949,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) { @@ -10003,8 +9961,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() { @@ -10015,8 +9973,8 @@ namespace Illuminate\Support\Facades { /** * Assert that no mailables were sent. * - * @return void - * @static + * @return void + * @static */ public static function assertNothingSent() { @@ -10029,8 +9987,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) { @@ -10043,8 +10001,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) { @@ -10055,8 +10013,8 @@ namespace Illuminate\Support\Facades { /** * Assert that no mailables were queued. * - * @return void - * @static + * @return void + * @static */ public static function assertNothingQueued() { @@ -10068,8 +10026,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) { @@ -10081,8 +10039,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) { @@ -10094,8 +10052,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) { @@ -10108,8 +10066,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) { @@ -10121,8 +10079,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) { @@ -10135,8 +10093,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) { @@ -10148,8 +10106,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) { @@ -10161,8 +10119,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) { @@ -10174,8 +10132,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) { @@ -10187,8 +10145,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) { @@ -10201,8 +10159,8 @@ namespace Illuminate\Support\Facades { * * @param string $text * @param \Closure|string $callback - * @return void - * @static + * @return void + * @static */ public static function raw($text, $callback) { @@ -10216,8 +10174,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) { @@ -10231,8 +10189,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) { @@ -10245,8 +10203,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) { @@ -10260,8 +10218,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) { @@ -10271,8 +10229,6 @@ namespace Illuminate\Support\Facades { } /** - * - * * @see \Illuminate\Notifications\ChannelManager * @see \Illuminate\Support\Testing\Fakes\NotificationFake */ @@ -10282,8 +10238,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) { @@ -10297,8 +10253,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) { @@ -10310,8 +10266,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) { @@ -10322,8 +10278,8 @@ namespace Illuminate\Support\Facades { /** * Get the default channel driver name. * - * @return string - * @static + * @return string + * @static */ public static function getDefaultDriver() { @@ -10334,8 +10290,8 @@ namespace Illuminate\Support\Facades { /** * Get the default channel driver name. * - * @return string - * @static + * @return string + * @static */ public static function deliversVia() { @@ -10347,8 +10303,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) { @@ -10360,8 +10316,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) { @@ -10373,9 +10329,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) { @@ -10389,8 +10345,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) { @@ -10402,8 +10358,8 @@ namespace Illuminate\Support\Facades { /** * Get all of the created "drivers". * - * @return array - * @static + * @return array + * @static */ public static function getDrivers() { @@ -10415,8 +10371,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() { @@ -10429,8 +10385,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) { @@ -10442,8 +10398,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() { @@ -10457,9 +10413,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) { @@ -10473,9 +10429,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) { @@ -10488,8 +10444,8 @@ namespace Illuminate\Support\Facades { * * @param string $notification * @param int $times - * @return void - * @static + * @return void + * @static */ public static function assertSentOnDemandTimes($notification, $times = 1) { @@ -10503,8 +10459,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) { @@ -10518,9 +10474,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) { @@ -10531,8 +10487,8 @@ namespace Illuminate\Support\Facades { /** * Assert that no notifications were sent. * - * @return void - * @static + * @return void + * @static */ public static function assertNothingSent() { @@ -10544,9 +10500,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) { @@ -10559,8 +10515,8 @@ namespace Illuminate\Support\Facades { * * @param string $notification * @param int $expectedCount - * @return void - * @static + * @return void + * @static */ public static function assertSentTimes($notification, $expectedCount) { @@ -10572,8 +10528,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) { @@ -10587,8 +10543,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) { @@ -10601,8 +10557,8 @@ namespace Illuminate\Support\Facades { * * @param mixed $notifiable * @param string $notification - * @return bool - * @static + * @return bool + * @static */ public static function hasSent($notifiable, $notification) { @@ -10614,8 +10570,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) { @@ -10626,8 +10582,8 @@ namespace Illuminate\Support\Facades { /** * Get the notifications that have been sent. * - * @return array - * @static + * @return array + * @static */ public static function sentNotifications() { @@ -10641,8 +10597,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) { @@ -10654,9 +10610,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) { @@ -10667,8 +10623,8 @@ namespace Illuminate\Support\Facades { * Checks if macro is registered. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasMacro($name) { @@ -10678,8 +10634,8 @@ namespace Illuminate\Support\Facades { /** * Flush the existing macros. * - * @return void - * @static + * @return void + * @static */ public static function flushMacros() { @@ -10688,8 +10644,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) @@ -10706,8 +10660,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) { @@ -10718,8 +10672,8 @@ namespace Illuminate\Support\Facades { /** * Get the default password broker name. * - * @return string - * @static + * @return string + * @static */ public static function getDefaultDriver() { @@ -10731,8 +10685,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) { @@ -10742,8 +10696,6 @@ namespace Illuminate\Support\Facades { } /** - * - * * @see \Illuminate\Queue\QueueManager * @see \Illuminate\Queue\Queue * @see \Illuminate\Support\Testing\Fakes\QueueFake @@ -10753,8 +10705,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) { @@ -10766,8 +10718,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) { @@ -10779,8 +10731,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) { @@ -10792,8 +10744,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) { @@ -10805,8 +10757,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) { @@ -10818,8 +10770,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) { @@ -10831,8 +10783,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) { @@ -10844,8 +10796,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) { @@ -10858,8 +10810,8 @@ namespace Illuminate\Support\Facades { * * @param string $driver * @param \Closure $resolver - * @return void - * @static + * @return void + * @static */ public static function extend($driver, $resolver) { @@ -10872,8 +10824,8 @@ namespace Illuminate\Support\Facades { * * @param string $driver * @param \Closure $resolver - * @return void - * @static + * @return void + * @static */ public static function addConnector($driver, $resolver) { @@ -10884,8 +10836,8 @@ namespace Illuminate\Support\Facades { /** * Get the name of the default queue connection. * - * @return string - * @static + * @return string + * @static */ public static function getDefaultDriver() { @@ -10897,8 +10849,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) { @@ -10910,8 +10862,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) { @@ -10922,8 +10874,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() { @@ -10935,8 +10887,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) { @@ -10948,8 +10900,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) { @@ -10962,8 +10914,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) { @@ -10977,8 +10929,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) { @@ -10992,8 +10944,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) { @@ -11006,8 +10958,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) { @@ -11019,8 +10971,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) { @@ -11032,8 +10984,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) { @@ -11046,8 +10998,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) { @@ -11059,8 +11011,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) { @@ -11071,8 +11023,8 @@ namespace Illuminate\Support\Facades { /** * Assert that no jobs were pushed. * - * @return void - * @static + * @return void + * @static */ public static function assertNothingPushed() { @@ -11085,8 +11037,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) { @@ -11098,8 +11050,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) { @@ -11111,8 +11063,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) { @@ -11124,8 +11076,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) { @@ -11139,8 +11091,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) { @@ -11152,8 +11104,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) { @@ -11167,8 +11119,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 = []) { @@ -11183,8 +11135,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) { @@ -11198,8 +11150,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 = '') { @@ -11214,8 +11166,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 = '') { @@ -11227,8 +11179,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) { @@ -11242,8 +11194,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) { @@ -11254,8 +11206,8 @@ namespace Illuminate\Support\Facades { /** * Get the jobs that have been pushed. * - * @return array - * @static + * @return array + * @static */ public static function pushedJobs() { @@ -11266,8 +11218,8 @@ namespace Illuminate\Support\Facades { /** * Get the payloads that were pushed raw. * - * @return list - * @static + * @return list + * @static */ public static function rawPushes() { @@ -11279,8 +11231,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) { @@ -11291,8 +11243,8 @@ namespace Illuminate\Support\Facades { /** * Get the connection name for the queue. * - * @return string - * @static + * @return string + * @static */ public static function getConnectionName() { @@ -11304,8 +11256,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) { @@ -11314,47 +11266,58 @@ namespace Illuminate\Support\Facades { } /** - * Release a reserved job back onto the queue after (n) seconds. + * Get the number of queue jobs that are ready to process. * - * @param string $queue - * @param \Illuminate\Queue\Jobs\DatabaseJobRecord $job - * @param int $delay - * @return mixed - * @static + * @param string|null $queue + * @return int + * @static */ - public static function release($queue, $job, $delay) + public static function readyNow($queue = null) { - /** @var \Illuminate\Queue\DatabaseQueue $instance */ - return $instance->release($queue, $job, $delay); + /** @var \Laravel\Horizon\RedisQueue $instance */ + return $instance->readyNow($queue); + } + + /** + * Migrate the delayed jobs that are ready to the regular queue. + * + * @param string $from + * @param string $to + * @return void + * @static + */ + public static function migrateExpiredJobs($from, $to) + { + /** @var \Laravel\Horizon\RedisQueue $instance */ + $instance->migrateExpiredJobs($from, $to); } /** * Delete a reserved job from the queue. * * @param string $queue - * @param string $id - * @return void - * @throws \Throwable - * @static + * @param \Illuminate\Queue\Jobs\RedisJob $job + * @return void + * @static */ - public static function deleteReserved($queue, $id) + public static function deleteReserved($queue, $job) { - /** @var \Illuminate\Queue\DatabaseQueue $instance */ - $instance->deleteReserved($queue, $id); + /** @var \Laravel\Horizon\RedisQueue $instance */ + $instance->deleteReserved($queue, $job); } /** * Delete a reserved job from the reserved queue and release it. * * @param string $queue - * @param \Illuminate\Queue\Jobs\DatabaseJob $job + * @param \Illuminate\Queue\Jobs\RedisJob $job * @param int $delay - * @return void - * @static + * @return void + * @static */ public static function deleteAndRelease($queue, $job, $delay) { - /** @var \Illuminate\Queue\DatabaseQueue $instance */ + /** @var \Laravel\Horizon\RedisQueue $instance */ $instance->deleteAndRelease($queue, $job, $delay); } @@ -11362,12 +11325,13 @@ namespace Illuminate\Support\Facades { * Delete all of the jobs from the queue. * * @param string $queue - * @return int - * @static + * @return int + * @static */ public static function clear($queue) { - /** @var \Illuminate\Queue\DatabaseQueue $instance */ + //Method inherited from \Illuminate\Queue\RedisQueue + /** @var \Laravel\Horizon\RedisQueue $instance */ return $instance->clear($queue); } @@ -11375,38 +11339,53 @@ namespace Illuminate\Support\Facades { * Get the queue or return the default. * * @param string|null $queue - * @return string - * @static + * @return string + * @static */ public static function getQueue($queue) { - /** @var \Illuminate\Queue\DatabaseQueue $instance */ + //Method inherited from \Illuminate\Queue\RedisQueue + /** @var \Laravel\Horizon\RedisQueue $instance */ return $instance->getQueue($queue); } /** - * Get the underlying database instance. + * Get the connection for the queue. * - * @return \Illuminate\Database\Connection - * @static + * @return \Illuminate\Redis\Connections\Connection + * @static */ - public static function getDatabase() + public static function getConnection() { - /** @var \Illuminate\Queue\DatabaseQueue $instance */ - return $instance->getDatabase(); + //Method inherited from \Illuminate\Queue\RedisQueue + /** @var \Laravel\Horizon\RedisQueue $instance */ + return $instance->getConnection(); + } + + /** + * Get the underlying Redis instance. + * + * @return \Illuminate\Contracts\Redis\Factory + * @static + */ + public static function getRedis() + { + //Method inherited from \Illuminate\Queue\RedisQueue + /** @var \Laravel\Horizon\RedisQueue $instance */ + return $instance->getRedis(); } /** * 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) { //Method inherited from \Illuminate\Queue\Queue - /** @var \Illuminate\Queue\DatabaseQueue $instance */ + /** @var \Laravel\Horizon\RedisQueue $instance */ return $instance->getJobTries($job); } @@ -11414,13 +11393,13 @@ 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) { //Method inherited from \Illuminate\Queue\Queue - /** @var \Illuminate\Queue\DatabaseQueue $instance */ + /** @var \Laravel\Horizon\RedisQueue $instance */ return $instance->getJobBackoff($job); } @@ -11428,13 +11407,13 @@ 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) { //Method inherited from \Illuminate\Queue\Queue - /** @var \Illuminate\Queue\DatabaseQueue $instance */ + /** @var \Laravel\Horizon\RedisQueue $instance */ return $instance->getJobExpiration($job); } @@ -11442,25 +11421,25 @@ 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) { //Method inherited from \Illuminate\Queue\Queue - \Illuminate\Queue\DatabaseQueue::createPayloadUsing($callback); + \Laravel\Horizon\RedisQueue::createPayloadUsing($callback); } /** * Get the container instance being used by the connection. * - * @return \Illuminate\Container\Container - * @static + * @return \Illuminate\Container\Container + * @static */ public static function getContainer() { //Method inherited from \Illuminate\Queue\Queue - /** @var \Illuminate\Queue\DatabaseQueue $instance */ + /** @var \Laravel\Horizon\RedisQueue $instance */ return $instance->getContainer(); } @@ -11468,20 +11447,18 @@ 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) { //Method inherited from \Illuminate\Queue\Queue - /** @var \Illuminate\Queue\DatabaseQueue $instance */ + /** @var \Laravel\Horizon\RedisQueue $instance */ $instance->setContainer($container); } } /** - * - * * @see \Illuminate\Routing\Redirector */ class Redirect { @@ -11491,8 +11468,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) { @@ -11505,8 +11482,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 = []) { @@ -11521,8 +11498,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) { @@ -11537,8 +11514,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) { @@ -11553,8 +11530,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) { @@ -11568,8 +11545,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 = []) { @@ -11583,8 +11560,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 = []) { @@ -11599,8 +11576,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 = []) { @@ -11616,8 +11593,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 = []) { @@ -11633,8 +11610,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 = []) { @@ -11649,8 +11626,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 = []) { @@ -11661,8 +11638,8 @@ namespace Illuminate\Support\Facades { /** * Get the URL generator instance. * - * @return \Illuminate\Routing\UrlGenerator - * @static + * @return \Illuminate\Routing\UrlGenerator + * @static */ public static function getUrlGenerator() { @@ -11674,8 +11651,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) { @@ -11686,8 +11663,8 @@ namespace Illuminate\Support\Facades { /** * Get the "intended" URL from the session. * - * @return string|null - * @static + * @return string|null + * @static */ public static function getIntendedUrl() { @@ -11699,8 +11676,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) { @@ -11714,8 +11691,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) { @@ -11727,9 +11704,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) { @@ -11740,8 +11717,8 @@ namespace Illuminate\Support\Facades { * Checks if macro is registered. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasMacro($name) { @@ -11751,8 +11728,8 @@ namespace Illuminate\Support\Facades { /** * Flush the existing macros. * - * @return void - * @static + * @return void + * @static */ public static function flushMacros() { @@ -11761,19 +11738,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() { @@ -11783,8 +11755,8 @@ namespace Illuminate\Support\Facades { /** * Return the Request instance. * - * @return \Illuminate\Http\Request - * @static + * @return \Illuminate\Http\Request + * @static */ public static function instance() { @@ -11795,8 +11767,8 @@ namespace Illuminate\Support\Facades { /** * Get the request method. * - * @return string - * @static + * @return string + * @static */ public static function method() { @@ -11807,8 +11779,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() { @@ -11819,8 +11791,8 @@ namespace Illuminate\Support\Facades { /** * Get the root URL for the application. * - * @return string - * @static + * @return string + * @static */ public static function root() { @@ -11831,8 +11803,8 @@ namespace Illuminate\Support\Facades { /** * Get the URL (no query string) for the request. * - * @return string - * @static + * @return string + * @static */ public static function url() { @@ -11843,8 +11815,8 @@ namespace Illuminate\Support\Facades { /** * Get the full URL for the request. * - * @return string - * @static + * @return string + * @static */ public static function fullUrl() { @@ -11856,8 +11828,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) { @@ -11869,8 +11841,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) { @@ -11881,8 +11853,8 @@ namespace Illuminate\Support\Facades { /** * Get the current path info for the request. * - * @return string - * @static + * @return string + * @static */ public static function path() { @@ -11893,8 +11865,8 @@ namespace Illuminate\Support\Facades { /** * Get the current decoded path info for the request. * - * @return string - * @static + * @return string + * @static */ public static function decodedPath() { @@ -11907,8 +11879,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) { @@ -11919,8 +11891,8 @@ namespace Illuminate\Support\Facades { /** * Get all of the segments for the request path. * - * @return array - * @static + * @return array + * @static */ public static function segments() { @@ -11932,8 +11904,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) { @@ -11945,8 +11917,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) { @@ -11958,8 +11930,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) { @@ -11970,8 +11942,8 @@ namespace Illuminate\Support\Facades { /** * Get the host name. * - * @return string - * @static + * @return string + * @static */ public static function host() { @@ -11982,8 +11954,8 @@ namespace Illuminate\Support\Facades { /** * Get the HTTP host being requested. * - * @return string - * @static + * @return string + * @static */ public static function httpHost() { @@ -11994,8 +11966,8 @@ namespace Illuminate\Support\Facades { /** * Get the scheme and HTTP host. * - * @return string - * @static + * @return string + * @static */ public static function schemeAndHttpHost() { @@ -12006,8 +11978,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() { @@ -12018,8 +11990,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() { @@ -12030,8 +12002,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() { @@ -12042,8 +12014,8 @@ namespace Illuminate\Support\Facades { /** * Determine if the request is over HTTPS. * - * @return bool - * @static + * @return bool + * @static */ public static function secure() { @@ -12054,8 +12026,8 @@ namespace Illuminate\Support\Facades { /** * Get the client IP address. * - * @return string|null - * @static + * @return string|null + * @static */ public static function ip() { @@ -12066,8 +12038,8 @@ namespace Illuminate\Support\Facades { /** * Get the client IP addresses. * - * @return array - * @static + * @return array + * @static */ public static function ips() { @@ -12078,8 +12050,8 @@ namespace Illuminate\Support\Facades { /** * Get the client user agent. * - * @return string|null - * @static + * @return string|null + * @static */ public static function userAgent() { @@ -12091,8 +12063,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) { @@ -12104,8 +12076,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) { @@ -12117,8 +12089,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) { @@ -12133,8 +12105,8 @@ namespace Illuminate\Support\Facades { * * @param string $key * @param mixed $default - * @return mixed - * @static + * @return mixed + * @static */ public static function get($key, $default = null) { @@ -12147,8 +12119,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) { @@ -12161,8 +12133,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) { @@ -12173,8 +12145,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) { @@ -12184,14 +12156,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) { @@ -12207,7 +12179,7 @@ namespace Illuminate\Support\Facades { * is associated with a Session instance. * * @param bool $skipIfUninitialized When true, ignores factories injected by `setSessionFactory` - * @static + * @static */ public static function hasSession($skipIfUninitialized = false) { @@ -12219,7 +12191,7 @@ namespace Illuminate\Support\Facades { * Gets the Session. * * @throws SessionNotFoundException When session is not set properly - * @static + * @static */ public static function getSession() { @@ -12230,9 +12202,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() { @@ -12244,8 +12216,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) { @@ -12257,8 +12229,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) { @@ -12270,8 +12242,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) { @@ -12283,8 +12255,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) { @@ -12297,8 +12269,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) { @@ -12309,9 +12281,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() { @@ -12323,8 +12295,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) { @@ -12335,8 +12307,8 @@ namespace Illuminate\Support\Facades { /** * Get the user resolver callback. * - * @return \Closure - * @static + * @return \Closure + * @static */ public static function getUserResolver() { @@ -12348,8 +12320,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) { @@ -12360,8 +12332,8 @@ namespace Illuminate\Support\Facades { /** * Get the route resolver callback. * - * @return \Closure - * @static + * @return \Closure + * @static */ public static function getRouteResolver() { @@ -12373,8 +12345,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) { @@ -12385,8 +12357,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() { @@ -12398,8 +12370,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) { @@ -12411,8 +12383,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) { @@ -12425,8 +12397,8 @@ namespace Illuminate\Support\Facades { * * @param string $offset * @param mixed $value - * @return void - * @static + * @return void + * @static */ public static function offsetSet($offset, $value) { @@ -12438,8 +12410,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) { @@ -12459,7 +12431,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) { @@ -12471,7 +12443,7 @@ namespace Illuminate\Support\Facades { /** * Creates a new request with values from PHP's super globals. * - * @static + * @static */ public static function createFromGlobals() { @@ -12493,7 +12465,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) { @@ -12508,7 +12480,7 @@ namespace Illuminate\Support\Facades { * to keep BC with an existing system. It should not be used for any * other purpose. * - * @static + * @static */ public static function setFactory($callable) { @@ -12522,7 +12494,7 @@ namespace Illuminate\Support\Facades { * It overrides $_GET, $_POST, $_REQUEST, $_SERVER, $_COOKIE. * $_FILES is never overridden, see rfc1867 * - * @static + * @static */ public static function overrideGlobals() { @@ -12538,7 +12510,7 @@ namespace Illuminate\Support\Facades { * * @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) { @@ -12549,8 +12521,8 @@ namespace Illuminate\Support\Facades { /** * Gets the list of trusted proxies. * - * @return string[] - * @static + * @return string[] + * @static */ public static function getTrustedProxies() { @@ -12562,7 +12534,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() { @@ -12576,7 +12548,7 @@ namespace Illuminate\Support\Facades { * 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) { @@ -12587,8 +12559,8 @@ namespace Illuminate\Support\Facades { /** * Gets the list of trusted host patterns. * - * @return string[] - * @static + * @return string[] + * @static */ public static function getTrustedHosts() { @@ -12602,7 +12574,7 @@ namespace Illuminate\Support\Facades { * 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) { @@ -12621,7 +12593,7 @@ namespace Illuminate\Support\Facades { * * The HTTP method can only be overridden when the real HTTP method is POST. * - * @static + * @static */ public static function enableHttpMethodParameterOverride() { @@ -12632,7 +12604,7 @@ namespace Illuminate\Support\Facades { /** * Checks whether support for the _method request parameter is enabled. * - * @static + * @static */ public static function getHttpMethodParameterOverride() { @@ -12644,7 +12616,7 @@ namespace Illuminate\Support\Facades { * Whether the request contains a Session which was started in one of the * previous requests. * - * @static + * @static */ public static function hasPreviousSession() { @@ -12654,9 +12626,7 @@ namespace Illuminate\Support\Facades { } /** - * - * - * @static + * @static */ public static function setSession($session) { @@ -12666,11 +12636,9 @@ namespace Illuminate\Support\Facades { } /** - * - * - * @internal + * @internal * @param callable(): SessionInterface $factory - * @static + * @static */ public static function setSessionFactory($factory) { @@ -12689,7 +12657,7 @@ namespace Illuminate\Support\Facades { * Use this method carefully; you should use getClientIp() instead. * * @see getClientIp() - * @static + * @static */ public static function getClientIps() { @@ -12713,7 +12681,7 @@ namespace Illuminate\Support\Facades { * * @see getClientIps() * @see https://wikipedia.org/wiki/X-Forwarded-For - * @static + * @static */ public static function getClientIp() { @@ -12725,7 +12693,7 @@ namespace Illuminate\Support\Facades { /** * Returns current script name. * - * @static + * @static */ public static function getScriptName() { @@ -12747,7 +12715,7 @@ namespace Illuminate\Support\Facades { * * http://localhost/mysite/about?var=1 returns '/about' * * @return string The raw path (i.e. not urldecoded) - * @static + * @static */ public static function getPathInfo() { @@ -12767,7 +12735,7 @@ namespace Illuminate\Support\Facades { * * http://localhost/we%20b/index.php returns '/we%20b' * * @return string The raw path (i.e. not urldecoded) - * @static + * @static */ public static function getBasePath() { @@ -12785,7 +12753,7 @@ namespace Illuminate\Support\Facades { * script filename (e.g. index.php) if one exists. * * @return string The raw URL (i.e. not urldecoded) - * @static + * @static */ public static function getBaseUrl() { @@ -12797,7 +12765,7 @@ namespace Illuminate\Support\Facades { /** * Gets the request's scheme. * - * @static + * @static */ public static function getScheme() { @@ -12815,7 +12783,7 @@ namespace Illuminate\Support\Facades { * 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() { @@ -12827,7 +12795,7 @@ namespace Illuminate\Support\Facades { /** * Returns the user. * - * @static + * @static */ public static function getUser() { @@ -12839,7 +12807,7 @@ namespace Illuminate\Support\Facades { /** * Returns the password. * - * @static + * @static */ public static function getPassword() { @@ -12852,7 +12820,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() { @@ -12866,7 +12834,7 @@ namespace Illuminate\Support\Facades { * * The port name will be appended to the host if it's non-standard. * - * @static + * @static */ public static function getHttpHost() { @@ -12879,7 +12847,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() { @@ -12894,7 +12862,7 @@ namespace Illuminate\Support\Facades { * 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() { @@ -12907,7 +12875,7 @@ namespace Illuminate\Support\Facades { * Generates a normalized URI (URL) for the Request. * * @see getQueryString() - * @static + * @static */ public static function getUri() { @@ -12920,7 +12888,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) { @@ -12944,7 +12912,7 @@ namespace Illuminate\Support\Facades { * - "/a/b/c/other" -> "other" * - "/a/x/y" -> "../../x/y" * - * @static + * @static */ public static function getRelativeUriForPath($path) { @@ -12959,7 +12927,7 @@ namespace Illuminate\Support\Facades { * It builds a normalized query string, where keys/value pairs are alphabetized * and have consistent escaping. * - * @static + * @static */ public static function getQueryString() { @@ -12976,7 +12944,7 @@ namespace Illuminate\Support\Facades { * * The "X-Forwarded-Proto" header must contain the protocol: "https" or "http". * - * @static + * @static */ public static function isSecure() { @@ -12994,7 +12962,7 @@ namespace Illuminate\Support\Facades { * 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() { @@ -13006,7 +12974,7 @@ namespace Illuminate\Support\Facades { /** * Sets the request method. * - * @static + * @static */ public static function setMethod($method) { @@ -13027,7 +12995,7 @@ namespace Illuminate\Support\Facades { * The method is always an uppercased string. * * @see getRealMethod() - * @static + * @static */ public static function getMethod() { @@ -13040,7 +13008,7 @@ namespace Illuminate\Support\Facades { * Gets the "real" request method. * * @see getMethod() - * @static + * @static */ public static function getRealMethod() { @@ -13052,7 +13020,7 @@ namespace Illuminate\Support\Facades { /** * Gets the mime type associated with the format. * - * @static + * @static */ public static function getMimeType($format) { @@ -13064,8 +13032,8 @@ namespace Illuminate\Support\Facades { /** * Gets the mime types associated with the format. * - * @return string[] - * @static + * @return string[] + * @static */ public static function getMimeTypes($format) { @@ -13076,7 +13044,7 @@ namespace Illuminate\Support\Facades { /** * Gets the format associated with the mime type. * - * @static + * @static */ public static function getFormat($mimeType) { @@ -13089,7 +13057,7 @@ namespace Illuminate\Support\Facades { * Associates a format with mime types. * * @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) { @@ -13108,7 +13076,7 @@ namespace Illuminate\Support\Facades { * * $default * * @see getPreferredFormat - * @static + * @static */ public static function getRequestFormat($default = 'html') { @@ -13120,7 +13088,7 @@ namespace Illuminate\Support\Facades { /** * Sets the request format. * - * @static + * @static */ public static function setRequestFormat($format) { @@ -13133,7 +13101,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() { @@ -13145,7 +13113,7 @@ namespace Illuminate\Support\Facades { /** * Sets the default locale. * - * @static + * @static */ public static function setDefaultLocale($locale) { @@ -13157,7 +13125,7 @@ namespace Illuminate\Support\Facades { /** * Get the default locale. * - * @static + * @static */ public static function getDefaultLocale() { @@ -13169,7 +13137,7 @@ namespace Illuminate\Support\Facades { /** * Sets the locale. * - * @static + * @static */ public static function setLocale($locale) { @@ -13181,7 +13149,7 @@ namespace Illuminate\Support\Facades { /** * Get the locale. * - * @static + * @static */ public static function getLocale() { @@ -13194,7 +13162,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) { @@ -13207,7 +13175,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() { @@ -13219,7 +13187,7 @@ namespace Illuminate\Support\Facades { /** * Checks whether or not the method is idempotent. * - * @static + * @static */ public static function isMethodIdempotent() { @@ -13232,7 +13200,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() { @@ -13250,7 +13218,7 @@ namespace Illuminate\Support\Facades { * if the proxy is trusted (see "setTrustedProxies()"), otherwise it returns * the latter (from the "SERVER_PROTOCOL" server parameter). * - * @static + * @static */ public static function getProtocolVersion() { @@ -13263,9 +13231,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) { @@ -13278,7 +13246,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() { @@ -13290,7 +13258,7 @@ namespace Illuminate\Support\Facades { /** * Gets the Etags. * - * @static + * @static */ public static function getETags() { @@ -13300,9 +13268,7 @@ namespace Illuminate\Support\Facades { } /** - * - * - * @static + * @static */ public static function isNoCache() { @@ -13319,7 +13285,7 @@ namespace Illuminate\Support\Facades { * 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') { @@ -13332,7 +13298,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) { @@ -13344,8 +13310,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() { @@ -13357,8 +13323,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() { @@ -13370,8 +13336,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() { @@ -13383,8 +13349,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() { @@ -13400,7 +13366,7 @@ namespace Illuminate\Support\Facades { * 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() { @@ -13413,7 +13379,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() { @@ -13428,7 +13394,7 @@ namespace Illuminate\Support\Facades { * This can be useful to determine whether or not to trust the * contents of a proxy-specific header. * - * @static + * @static */ public static function isFromTrustedProxy() { @@ -13441,8 +13407,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) { @@ -13453,8 +13419,8 @@ namespace Illuminate\Support\Facades { /** * Determine if the request is attempting to be precognitive. * - * @return bool - * @static + * @return bool + * @static */ public static function isAttemptingPrecognition() { @@ -13465,8 +13431,8 @@ namespace Illuminate\Support\Facades { /** * Determine if the request is precognitive. * - * @return bool - * @static + * @return bool + * @static */ public static function isPrecognitive() { @@ -13477,8 +13443,8 @@ namespace Illuminate\Support\Facades { /** * Determine if the request is sending JSON. * - * @return bool - * @static + * @return bool + * @static */ public static function isJson() { @@ -13489,8 +13455,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() { @@ -13501,8 +13467,8 @@ namespace Illuminate\Support\Facades { /** * Determine if the current request is asking for JSON. * - * @return bool - * @static + * @return bool + * @static */ public static function wantsJson() { @@ -13514,8 +13480,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) { @@ -13527,8 +13493,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) { @@ -13539,8 +13505,8 @@ namespace Illuminate\Support\Facades { /** * Determine if the current request accepts any content type. * - * @return bool - * @static + * @return bool + * @static */ public static function acceptsAnyContentType() { @@ -13551,8 +13517,8 @@ namespace Illuminate\Support\Facades { /** * Determines whether a request accepts JSON. * - * @return bool - * @static + * @return bool + * @static */ public static function acceptsJson() { @@ -13563,8 +13529,8 @@ namespace Illuminate\Support\Facades { /** * Determines whether a request accepts HTML. * - * @return bool - * @static + * @return bool + * @static */ public static function acceptsHtml() { @@ -13577,8 +13543,8 @@ namespace Illuminate\Support\Facades { * * @param string $actual * @param string $type - * @return bool - * @static + * @return bool + * @static */ public static function matchesType($actual, $type) { @@ -13589,8 +13555,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') { @@ -13603,8 +13569,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) { @@ -13615,8 +13581,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() { @@ -13628,8 +13594,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) { @@ -13641,8 +13607,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) { @@ -13653,8 +13619,8 @@ namespace Illuminate\Support\Facades { /** * Flush all of the old input from the session. * - * @return void - * @static + * @return void + * @static */ public static function flush() { @@ -13667,8 +13633,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) { @@ -13680,8 +13646,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) { @@ -13694,8 +13660,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) { @@ -13706,8 +13672,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() { @@ -13718,8 +13684,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() { @@ -13731,8 +13697,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) { @@ -13745,8 +13711,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) { @@ -13758,8 +13724,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) { @@ -13772,8 +13738,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) { @@ -13786,8 +13752,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) { @@ -13799,8 +13765,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) { @@ -13813,8 +13779,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) { @@ -13825,8 +13791,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() { @@ -13838,8 +13804,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) { @@ -13852,8 +13818,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) { @@ -13865,8 +13831,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 = []) { @@ -13878,8 +13844,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) { @@ -13891,8 +13857,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) { @@ -13904,8 +13870,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) { @@ -13917,8 +13883,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) { @@ -13932,8 +13898,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) { @@ -13945,8 +13911,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) { @@ -13958,8 +13924,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) { @@ -13971,8 +13937,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) { @@ -13986,8 +13952,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) { @@ -13999,8 +13965,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) { @@ -14014,8 +13980,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) { @@ -14028,8 +13994,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) { @@ -14042,8 +14008,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) { @@ -14058,8 +14024,8 @@ namespace Illuminate\Support\Facades { * * @param string|null $key * @param bool $default - * @return bool - * @static + * @return bool + * @static */ public static function boolean($key = null, $default = false) { @@ -14072,8 +14038,8 @@ namespace Illuminate\Support\Facades { * * @param string $key * @param int $default - * @return int - * @static + * @return int + * @static */ public static function integer($key, $default = 0) { @@ -14086,8 +14052,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) { @@ -14101,9 +14067,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) { @@ -14117,8 +14083,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) { @@ -14132,8 +14098,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) { @@ -14145,8 +14111,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) { @@ -14158,8 +14124,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) { @@ -14171,8 +14137,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) { @@ -14184,8 +14150,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) { @@ -14201,8 +14167,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) { @@ -14218,8 +14184,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) { @@ -14233,8 +14199,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) { @@ -14246,9 +14212,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) { @@ -14259,8 +14225,8 @@ namespace Illuminate\Support\Facades { * Checks if macro is registered. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasMacro($name) { @@ -14270,18 +14236,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 { @@ -14291,8 +14318,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 = []) { @@ -14305,8 +14332,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 = []) { @@ -14321,8 +14348,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 = []) { @@ -14337,8 +14364,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) { @@ -14354,8 +14381,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) { @@ -14369,8 +14396,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 = '') { @@ -14384,8 +14411,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 = []) { @@ -14400,8 +14427,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) { @@ -14416,9 +14443,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') { @@ -14433,8 +14460,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') { @@ -14447,8 +14474,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 = []) { @@ -14463,8 +14490,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) { @@ -14479,8 +14506,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 = []) { @@ -14495,8 +14522,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 = []) { @@ -14511,8 +14538,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) { @@ -14527,8 +14554,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) { @@ -14542,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) { @@ -14555,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) { @@ -14568,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) { @@ -14579,8 +14606,8 @@ namespace Illuminate\Support\Facades { /** * Flush the existing macros. * - * @return void - * @static + * @return void + * @static */ public static function flushMacros() { @@ -14589,8 +14616,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) @@ -14619,8 +14644,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) { @@ -14633,8 +14658,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) { @@ -14647,8 +14672,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) { @@ -14661,8 +14686,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) { @@ -14675,8 +14700,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) { @@ -14689,8 +14714,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) { @@ -14703,8 +14728,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) { @@ -14716,8 +14741,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) { @@ -14731,8 +14756,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) { @@ -14745,8 +14770,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) { @@ -14762,8 +14787,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 = []) { @@ -14777,8 +14802,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) { @@ -14791,8 +14816,8 @@ namespace Illuminate\Support\Facades { * * @param array $resources * @param array $options - * @return void - * @static + * @return void + * @static */ public static function resources($resources, $options = []) { @@ -14806,8 +14831,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 = []) { @@ -14820,8 +14845,8 @@ namespace Illuminate\Support\Facades { * * @param array $resources * @param array $options - * @return void - * @static + * @return void + * @static */ public static function apiResources($resources, $options = []) { @@ -14835,8 +14860,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 = []) { @@ -14849,8 +14874,8 @@ namespace Illuminate\Support\Facades { * * @param array $singletons * @param array $options - * @return void - * @static + * @return void + * @static */ public static function singletons($singletons, $options = []) { @@ -14864,8 +14889,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 = []) { @@ -14878,8 +14903,8 @@ namespace Illuminate\Support\Facades { * * @param array $singletons * @param array $options - * @return void - * @static + * @return void + * @static */ public static function apiSingletons($singletons, $options = []) { @@ -14893,8 +14918,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 = []) { @@ -14907,8 +14932,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) { @@ -14921,8 +14946,8 @@ namespace Illuminate\Support\Facades { * * @param array $new * @param bool $prependExistingPrefix - * @return array - * @static + * @return array + * @static */ public static function mergeWithLastGroup($new, $prependExistingPrefix = true) { @@ -14933,8 +14958,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() { @@ -14948,8 +14973,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) { @@ -14963,8 +14988,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) { @@ -14976,8 +15001,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) { @@ -14989,8 +15014,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) { @@ -15002,8 +15027,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) { @@ -15015,8 +15040,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) { @@ -15029,8 +15054,8 @@ namespace Illuminate\Support\Facades { * * @param array $middleware * @param array $excluded - * @return array - * @static + * @return array + * @static */ public static function resolveMiddleware($middleware, $excluded = []) { @@ -15043,8 +15068,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) { @@ -15057,8 +15082,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) { @@ -15069,10 +15094,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) { @@ -15084,10 +15109,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) { @@ -15099,8 +15124,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) { @@ -15112,8 +15137,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) { @@ -15124,8 +15149,8 @@ namespace Illuminate\Support\Facades { /** * Get all of the defined middleware short-hand names. * - * @return array - * @static + * @return array + * @static */ public static function getMiddleware() { @@ -15138,8 +15163,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) { @@ -15151,8 +15176,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) { @@ -15163,8 +15188,8 @@ namespace Illuminate\Support\Facades { /** * Get all of the defined middleware groups. * - * @return array - * @static + * @return array + * @static */ public static function getMiddlewareGroups() { @@ -15177,8 +15202,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) { @@ -15193,8 +15218,8 @@ namespace Illuminate\Support\Facades { * * @param string $group * @param string $middleware - * @return \Illuminate\Routing\Router - * @static + * @return \Illuminate\Routing\Router + * @static */ public static function prependMiddlewareToGroup($group, $middleware) { @@ -15209,8 +15234,8 @@ namespace Illuminate\Support\Facades { * * @param string $group * @param string $middleware - * @return \Illuminate\Routing\Router - * @static + * @return \Illuminate\Routing\Router + * @static */ public static function pushMiddlewareToGroup($group, $middleware) { @@ -15223,8 +15248,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) { @@ -15235,8 +15260,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() { @@ -15249,8 +15274,8 @@ namespace Illuminate\Support\Facades { * * @param string $key * @param string|callable $binder - * @return void - * @static + * @return void + * @static */ public static function bind($key, $binder) { @@ -15264,8 +15289,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) { @@ -15277,8 +15302,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) { @@ -15289,8 +15314,8 @@ namespace Illuminate\Support\Facades { /** * Get the global "where" patterns. * - * @return array - * @static + * @return array + * @static */ public static function getPatterns() { @@ -15303,8 +15328,8 @@ namespace Illuminate\Support\Facades { * * @param string $key * @param string $pattern - * @return void - * @static + * @return void + * @static */ public static function pattern($key, $pattern) { @@ -15316,8 +15341,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) { @@ -15328,8 +15353,8 @@ namespace Illuminate\Support\Facades { /** * Determine if the router currently has a group stack. * - * @return bool - * @static + * @return bool + * @static */ public static function hasGroupStack() { @@ -15340,8 +15365,8 @@ namespace Illuminate\Support\Facades { /** * Get the current group stack for the router. * - * @return array - * @static + * @return array + * @static */ public static function getGroupStack() { @@ -15354,8 +15379,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) { @@ -15366,8 +15391,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() { @@ -15378,8 +15403,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() { @@ -15390,8 +15415,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() { @@ -15403,8 +15428,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) { @@ -15415,8 +15440,8 @@ namespace Illuminate\Support\Facades { /** * Get the current route name. * - * @return string|null - * @static + * @return string|null + * @static */ public static function currentRouteName() { @@ -15428,8 +15453,8 @@ namespace Illuminate\Support\Facades { * Alias for the "currentRouteNamed" method. * * @param mixed $patterns - * @return bool - * @static + * @return bool + * @static */ public static function is(...$patterns) { @@ -15441,8 +15466,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) { @@ -15453,8 +15478,8 @@ namespace Illuminate\Support\Facades { /** * Get the current route action. * - * @return string|null - * @static + * @return string|null + * @static */ public static function currentRouteAction() { @@ -15466,8 +15491,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) { @@ -15479,8 +15504,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) { @@ -15492,8 +15517,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) { @@ -15505,8 +15530,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 = []) { @@ -15518,8 +15543,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 = []) { @@ -15530,8 +15555,8 @@ namespace Illuminate\Support\Facades { /** * Get the underlying route collection. * - * @return \Illuminate\Routing\RouteCollectionInterface - * @static + * @return \Illuminate\Routing\RouteCollectionInterface + * @static */ public static function getRoutes() { @@ -15543,8 +15568,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) { @@ -15556,8 +15581,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) { @@ -15569,8 +15594,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) { @@ -15581,8 +15606,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) { @@ -15596,8 +15621,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) { @@ -15609,9 +15634,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) { @@ -15622,8 +15647,8 @@ namespace Illuminate\Support\Facades { * Checks if macro is registered. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasMacro($name) { @@ -15633,8 +15658,8 @@ namespace Illuminate\Support\Facades { /** * Flush the existing macros. * - * @return void - * @static + * @return void + * @static */ public static function flushMacros() { @@ -15646,9 +15671,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) { @@ -15661,7 +15686,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) { @@ -15669,10 +15694,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 { @@ -15680,8 +15740,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) { @@ -15693,8 +15753,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) { @@ -15706,8 +15766,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) { @@ -15718,8 +15778,8 @@ namespace Illuminate\Support\Facades { /** * Get the tables for the database. * - * @return array - * @static + * @return array + * @static */ public static function getTables() { @@ -15730,8 +15790,8 @@ namespace Illuminate\Support\Facades { /** * Get the views for the database. * - * @return array - * @static + * @return array + * @static */ public static function getViews() { @@ -15743,8 +15803,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) { @@ -15756,8 +15816,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) { @@ -15769,8 +15829,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) { @@ -15781,8 +15841,8 @@ namespace Illuminate\Support\Facades { /** * Drop all tables from the database. * - * @return void - * @static + * @return void + * @static */ public static function dropAllTables() { @@ -15793,8 +15853,8 @@ namespace Illuminate\Support\Facades { /** * Drop all views from the database. * - * @return void - * @static + * @return void + * @static */ public static function dropAllViews() { @@ -15806,8 +15866,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) { @@ -15819,9 +15879,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) { @@ -15832,8 +15892,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() { @@ -15844,8 +15904,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() { @@ -15857,8 +15917,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) { @@ -15870,8 +15930,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() { @@ -15883,8 +15943,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() { @@ -15898,8 +15958,8 @@ namespace Illuminate\Support\Facades { * * @param string $table * @param string $column - * @return bool - * @static + * @return bool + * @static */ public static function hasColumn($table, $column) { @@ -15913,8 +15973,8 @@ namespace Illuminate\Support\Facades { * * @param string $table * @param array $columns - * @return bool - * @static + * @return bool + * @static */ public static function hasColumns($table, $columns) { @@ -15929,8 +15989,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) { @@ -15945,8 +16005,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) { @@ -15961,8 +16021,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) { @@ -15975,8 +16035,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) { @@ -15989,8 +16049,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) { @@ -16005,8 +16065,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) { @@ -16020,8 +16080,8 @@ namespace Illuminate\Support\Facades { * * @param string $table * @param \Closure $callback - * @return void - * @static + * @return void + * @static */ public static function table($table, $callback) { @@ -16035,8 +16095,8 @@ namespace Illuminate\Support\Facades { * * @param string $table * @param \Closure $callback - * @return void - * @static + * @return void + * @static */ public static function create($table, $callback) { @@ -16049,8 +16109,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) { @@ -16063,8 +16123,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) { @@ -16078,8 +16138,8 @@ namespace Illuminate\Support\Facades { * * @param string $table * @param string|array $columns - * @return void - * @static + * @return void + * @static */ public static function dropColumns($table, $columns) { @@ -16091,9 +16151,9 @@ namespace Illuminate\Support\Facades { /** * Drop all types from the database. * - * @return void + * @return void * @throws \LogicException - * @static + * @static */ public static function dropAllTypes() { @@ -16107,8 +16167,8 @@ namespace Illuminate\Support\Facades { * * @param string $from * @param string $to - * @return void - * @static + * @return void + * @static */ public static function rename($from, $to) { @@ -16120,8 +16180,8 @@ namespace Illuminate\Support\Facades { /** * Enable foreign key constraints. * - * @return bool - * @static + * @return bool + * @static */ public static function enableForeignKeyConstraints() { @@ -16133,8 +16193,8 @@ namespace Illuminate\Support\Facades { /** * Disable foreign key constraints. * - * @return bool - * @static + * @return bool + * @static */ public static function disableForeignKeyConstraints() { @@ -16147,8 +16207,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) { @@ -16160,8 +16220,8 @@ namespace Illuminate\Support\Facades { /** * Get the database connection instance. * - * @return \Illuminate\Database\Connection - * @static + * @return \Illuminate\Database\Connection + * @static */ public static function getConnection() { @@ -16174,8 +16234,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) { @@ -16188,8 +16248,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) { @@ -16204,8 +16264,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) { @@ -16218,9 +16278,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) { @@ -16232,8 +16292,8 @@ namespace Illuminate\Support\Facades { * Checks if macro is registered. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasMacro($name) { @@ -16244,8 +16304,8 @@ namespace Illuminate\Support\Facades { /** * Flush the existing macros. * - * @return void - * @static + * @return void + * @static */ public static function flushMacros() { @@ -16255,16 +16315,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() { @@ -16275,8 +16333,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() { @@ -16287,8 +16345,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() { @@ -16299,8 +16357,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() { @@ -16311,8 +16369,8 @@ namespace Illuminate\Support\Facades { /** * Get the session configuration. * - * @return array - * @static + * @return array + * @static */ public static function getSessionConfig() { @@ -16323,8 +16381,8 @@ namespace Illuminate\Support\Facades { /** * Get the default session driver name. * - * @return string - * @static + * @return string + * @static */ public static function getDefaultDriver() { @@ -16336,8 +16394,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) { @@ -16349,9 +16407,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) { @@ -16365,8 +16423,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) { @@ -16378,8 +16436,8 @@ namespace Illuminate\Support\Facades { /** * Get all of the created "drivers". * - * @return array - * @static + * @return array + * @static */ public static function getDrivers() { @@ -16391,8 +16449,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() { @@ -16405,8 +16463,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) { @@ -16418,8 +16476,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() { @@ -16431,8 +16489,8 @@ namespace Illuminate\Support\Facades { /** * Start the session, reading the data from a handler. * - * @return bool - * @static + * @return bool + * @static */ public static function start() { @@ -16443,8 +16501,8 @@ namespace Illuminate\Support\Facades { /** * Save the session data to storage. * - * @return void - * @static + * @return void + * @static */ public static function save() { @@ -16455,8 +16513,8 @@ namespace Illuminate\Support\Facades { /** * Age the flash data for the session. * - * @return void - * @static + * @return void + * @static */ public static function ageFlashData() { @@ -16467,8 +16525,8 @@ namespace Illuminate\Support\Facades { /** * Get all of the session data. * - * @return array - * @static + * @return array + * @static */ public static function all() { @@ -16480,8 +16538,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) { @@ -16493,8 +16551,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) { @@ -16506,8 +16564,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) { @@ -16519,8 +16577,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) { @@ -16532,8 +16590,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) { @@ -16545,8 +16603,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) { @@ -16559,8 +16617,8 @@ namespace Illuminate\Support\Facades { * * @param string $key * @param mixed $default - * @return mixed - * @static + * @return mixed + * @static */ public static function get($key, $default = null) { @@ -16573,8 +16631,8 @@ namespace Illuminate\Support\Facades { * * @param string $key * @param mixed $default - * @return mixed - * @static + * @return mixed + * @static */ public static function pull($key, $default = null) { @@ -16586,8 +16644,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) { @@ -16600,8 +16658,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) { @@ -16613,8 +16671,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) { @@ -16627,8 +16685,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) { @@ -16641,8 +16699,8 @@ namespace Illuminate\Support\Facades { * * @param string $key * @param \Closure $callback - * @return mixed - * @static + * @return mixed + * @static */ public static function remember($key, $callback) { @@ -16655,8 +16713,8 @@ namespace Illuminate\Support\Facades { * * @param string $key * @param mixed $value - * @return void - * @static + * @return void + * @static */ public static function push($key, $value) { @@ -16669,8 +16727,8 @@ namespace Illuminate\Support\Facades { * * @param string $key * @param int $amount - * @return mixed - * @static + * @return mixed + * @static */ public static function increment($key, $amount = 1) { @@ -16683,8 +16741,8 @@ namespace Illuminate\Support\Facades { * * @param string $key * @param int $amount - * @return int - * @static + * @return int + * @static */ public static function decrement($key, $amount = 1) { @@ -16697,8 +16755,8 @@ namespace Illuminate\Support\Facades { * * @param string $key * @param mixed $value - * @return void - * @static + * @return void + * @static */ public static function flash($key, $value = true) { @@ -16711,8 +16769,8 @@ namespace Illuminate\Support\Facades { * * @param string $key * @param mixed $value - * @return void - * @static + * @return void + * @static */ public static function now($key, $value) { @@ -16723,8 +16781,8 @@ namespace Illuminate\Support\Facades { /** * Reflash all of the session flash data. * - * @return void - * @static + * @return void + * @static */ public static function reflash() { @@ -16736,8 +16794,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) { @@ -16749,8 +16807,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) { @@ -16762,8 +16820,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) { @@ -16775,8 +16833,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) { @@ -16787,8 +16845,8 @@ namespace Illuminate\Support\Facades { /** * Remove all of the items from the session. * - * @return void - * @static + * @return void + * @static */ public static function flush() { @@ -16799,8 +16857,8 @@ namespace Illuminate\Support\Facades { /** * Flush the session data and regenerate the ID. * - * @return bool - * @static + * @return bool + * @static */ public static function invalidate() { @@ -16812,8 +16870,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) { @@ -16825,8 +16883,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) { @@ -16837,8 +16895,8 @@ namespace Illuminate\Support\Facades { /** * Determine if the session has been started. * - * @return bool - * @static + * @return bool + * @static */ public static function isStarted() { @@ -16849,8 +16907,8 @@ namespace Illuminate\Support\Facades { /** * Get the name of the session. * - * @return string - * @static + * @return string + * @static */ public static function getName() { @@ -16862,8 +16920,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) { @@ -16874,8 +16932,8 @@ namespace Illuminate\Support\Facades { /** * Get the current session ID. * - * @return string - * @static + * @return string + * @static */ public static function id() { @@ -16886,8 +16944,8 @@ namespace Illuminate\Support\Facades { /** * Get the current session ID. * - * @return string - * @static + * @return string + * @static */ public static function getId() { @@ -16899,8 +16957,8 @@ namespace Illuminate\Support\Facades { * Set the session ID. * * @param string|null $id - * @return void - * @static + * @return void + * @static */ public static function setId($id) { @@ -16912,8 +16970,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) { @@ -16925,8 +16983,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) { @@ -16937,8 +16995,8 @@ namespace Illuminate\Support\Facades { /** * Get the CSRF token value. * - * @return string - * @static + * @return string + * @static */ public static function token() { @@ -16949,8 +17007,8 @@ namespace Illuminate\Support\Facades { /** * Regenerate the CSRF token value. * - * @return void - * @static + * @return void + * @static */ public static function regenerateToken() { @@ -16961,8 +17019,8 @@ namespace Illuminate\Support\Facades { /** * Determine if the previous URI is available. * - * @return bool - * @static + * @return bool + * @static */ public static function hasPreviousUri() { @@ -16973,9 +17031,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() { @@ -16986,8 +17044,8 @@ namespace Illuminate\Support\Facades { /** * Get the previous URL from the session. * - * @return string|null - * @static + * @return string|null + * @static */ public static function previousUrl() { @@ -16999,8 +17057,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) { @@ -17011,8 +17069,8 @@ namespace Illuminate\Support\Facades { /** * Specify that the user has confirmed their password. * - * @return void - * @static + * @return void + * @static */ public static function passwordConfirmed() { @@ -17023,8 +17081,8 @@ namespace Illuminate\Support\Facades { /** * Get the underlying session handler implementation. * - * @return \SessionHandlerInterface - * @static + * @return \SessionHandlerInterface + * @static */ public static function getHandler() { @@ -17036,8 +17094,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) { @@ -17048,8 +17106,8 @@ namespace Illuminate\Support\Facades { /** * Determine if the session handler needs a request. * - * @return bool - * @static + * @return bool + * @static */ public static function handlerNeedsRequest() { @@ -17061,8 +17119,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) { @@ -17076,8 +17134,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) { @@ -17089,9 +17147,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) { @@ -17102,8 +17160,8 @@ namespace Illuminate\Support\Facades { * Checks if macro is registered. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasMacro($name) { @@ -17113,8 +17171,8 @@ namespace Illuminate\Support\Facades { /** * Flush the existing macros. * - * @return void - * @static + * @return void + * @static */ public static function flushMacros() { @@ -17123,8 +17181,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) @@ -17139,8 +17195,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) { @@ -17152,8 +17208,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) { @@ -17164,8 +17220,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() { @@ -17177,8 +17233,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) { @@ -17191,8 +17247,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') { @@ -17204,8 +17260,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) { @@ -17217,8 +17273,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) { @@ -17230,8 +17286,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) { @@ -17243,8 +17299,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) { @@ -17257,8 +17313,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) { @@ -17269,8 +17325,8 @@ namespace Illuminate\Support\Facades { /** * Get the default driver name. * - * @return string - * @static + * @return string + * @static */ public static function getDefaultDriver() { @@ -17281,8 +17337,8 @@ namespace Illuminate\Support\Facades { /** * Get the default cloud driver name. * - * @return string - * @static + * @return string + * @static */ public static function getDefaultCloudDriver() { @@ -17294,8 +17350,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) { @@ -17307,8 +17363,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) { @@ -17321,8 +17377,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) { @@ -17334,8 +17390,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) { @@ -17346,8 +17402,8 @@ namespace Illuminate\Support\Facades { /** * Determine if temporary URLs can be generated. * - * @return bool - * @static + * @return bool + * @static */ public static function providesTemporaryUrls() { @@ -17361,8 +17417,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 = []) { @@ -17374,8 +17430,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) { @@ -17388,8 +17444,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) { @@ -17402,8 +17458,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) { @@ -17418,8 +17474,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) { @@ -17432,8 +17488,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) { @@ -17446,8 +17502,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) { @@ -17460,8 +17516,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) { @@ -17474,8 +17530,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) { @@ -17488,8 +17544,8 @@ namespace Illuminate\Support\Facades { * Determine if a file exists. * * @param string $path - * @return bool - * @static + * @return bool + * @static */ public static function fileExists($path) { @@ -17502,8 +17558,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) { @@ -17516,8 +17572,8 @@ namespace Illuminate\Support\Facades { * Determine if a directory exists. * * @param string $path - * @return bool - * @static + * @return bool + * @static */ public static function directoryExists($path) { @@ -17530,8 +17586,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) { @@ -17544,8 +17600,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) { @@ -17558,8 +17614,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) { @@ -17573,8 +17629,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) { @@ -17590,8 +17646,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') { @@ -17607,8 +17663,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 = []) { @@ -17623,8 +17679,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 = []) { @@ -17639,8 +17695,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 = []) { @@ -17655,8 +17711,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 = []) { @@ -17672,8 +17728,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 = []) { @@ -17686,8 +17742,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) { @@ -17701,8 +17757,8 @@ namespace Illuminate\Support\Facades { * * @param string $path * @param string $visibility - * @return bool - * @static + * @return bool + * @static */ public static function setVisibility($path, $visibility) { @@ -17717,8 +17773,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 = ' ') @@ -17734,8 +17790,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 = ' ') @@ -17749,8 +17805,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) { @@ -17764,8 +17820,8 @@ namespace Illuminate\Support\Facades { * * @param string $from * @param string $to - * @return bool - * @static + * @return bool + * @static */ public static function copy($from, $to) { @@ -17779,8 +17835,8 @@ namespace Illuminate\Support\Facades { * * @param string $from * @param string $to - * @return bool - * @static + * @return bool + * @static */ public static function move($from, $to) { @@ -17793,8 +17849,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) { @@ -17806,9 +17862,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 = []) { @@ -17821,8 +17877,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) { @@ -17835,8 +17891,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) { @@ -17850,7 +17906,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) { @@ -17865,8 +17921,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 = []) { @@ -17879,9 +17935,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) { @@ -17896,9 +17952,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 = []) { @@ -17912,8 +17968,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) { @@ -17926,8 +17982,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) { @@ -17941,8 +17997,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) { @@ -17955,8 +18011,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) { @@ -17969,8 +18025,8 @@ namespace Illuminate\Support\Facades { * Create a directory. * * @param string $path - * @return bool - * @static + * @return bool + * @static */ public static function makeDirectory($path) { @@ -17983,8 +18039,8 @@ namespace Illuminate\Support\Facades { * Recursively delete a directory. * * @param string $directory - * @return bool - * @static + * @return bool + * @static */ public static function deleteDirectory($directory) { @@ -17996,8 +18052,8 @@ namespace Illuminate\Support\Facades { /** * Get the Flysystem driver. * - * @return \League\Flysystem\FilesystemOperator - * @static + * @return \League\Flysystem\FilesystemOperator + * @static */ public static function getDriver() { @@ -18009,8 +18065,8 @@ namespace Illuminate\Support\Facades { /** * Get the Flysystem adapter. * - * @return \League\Flysystem\FilesystemAdapter - * @static + * @return \League\Flysystem\FilesystemAdapter + * @static */ public static function getAdapter() { @@ -18022,8 +18078,8 @@ namespace Illuminate\Support\Facades { /** * Get the configuration values. * - * @return array - * @static + * @return array + * @static */ public static function getConfig() { @@ -18036,8 +18092,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) { @@ -18050,8 +18106,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) { @@ -18068,8 +18124,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) { @@ -18085,8 +18141,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) { @@ -18100,8 +18156,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) { @@ -18114,9 +18170,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) { @@ -18128,8 +18184,8 @@ namespace Illuminate\Support\Facades { * Checks if macro is registered. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasMacro($name) { @@ -18140,8 +18196,8 @@ namespace Illuminate\Support\Facades { /** * Flush the existing macros. * - * @return void - * @static + * @return void + * @static */ public static function flushMacros() { @@ -18154,9 +18210,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) { @@ -18167,16 +18223,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() { @@ -18187,8 +18241,8 @@ namespace Illuminate\Support\Facades { /** * Get the current URL for the request. * - * @return string - * @static + * @return string + * @static */ public static function current() { @@ -18200,8 +18254,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) { @@ -18213,8 +18267,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) { @@ -18228,8 +18282,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) { @@ -18244,8 +18298,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) { @@ -18258,8 +18312,8 @@ namespace Illuminate\Support\Facades { * * @param string $path * @param array $parameters - * @return string - * @static + * @return string + * @static */ public static function secure($path, $parameters = []) { @@ -18272,8 +18326,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) { @@ -18285,8 +18339,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) { @@ -18300,8 +18354,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) { @@ -18313,8 +18367,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) { @@ -18329,9 +18383,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) { @@ -18346,8 +18400,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) { @@ -18361,8 +18415,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 = []) { @@ -18375,8 +18429,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 = []) { @@ -18390,8 +18444,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 = []) { @@ -18403,8 +18457,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) { @@ -18418,9 +18472,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) { @@ -18434,9 +18488,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) { @@ -18450,9 +18504,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) { @@ -18464,8 +18518,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) { @@ -18478,8 +18532,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) { @@ -18493,8 +18547,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) { @@ -18506,8 +18560,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) { @@ -18519,8 +18573,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) { @@ -18531,8 +18585,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() { @@ -18544,8 +18598,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) { @@ -18557,8 +18611,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) { @@ -18570,8 +18624,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) { @@ -18583,9 +18637,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) { @@ -18597,8 +18651,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) { @@ -18610,8 +18664,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) { @@ -18623,8 +18677,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) { @@ -18635,8 +18689,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() { @@ -18647,8 +18701,8 @@ namespace Illuminate\Support\Facades { /** * Get the request instance. * - * @return \Illuminate\Http\Request - * @static + * @return \Illuminate\Http\Request + * @static */ public static function getRequest() { @@ -18660,8 +18714,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) { @@ -18673,8 +18727,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) { @@ -18686,8 +18740,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) { @@ -18699,8 +18753,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) { @@ -18712,8 +18766,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) { @@ -18725,8 +18779,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) { @@ -18737,8 +18791,8 @@ namespace Illuminate\Support\Facades { /** * Get the root controller namespace. * - * @return string - * @static + * @return string + * @static */ public static function getRootControllerNamespace() { @@ -18750,8 +18804,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) { @@ -18765,8 +18819,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) { @@ -18778,9 +18832,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) { @@ -18791,8 +18845,8 @@ namespace Illuminate\Support\Facades { * Checks if macro is registered. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasMacro($name) { @@ -18802,8 +18856,8 @@ namespace Illuminate\Support\Facades { /** * Flush the existing macros. * - * @return void - * @static + * @return void + * @static */ public static function flushMacros() { @@ -18812,8 +18866,6 @@ namespace Illuminate\Support\Facades { } /** - * - * * @see \Illuminate\Validation\Factory */ class Validator { @@ -18824,8 +18876,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 = []) { @@ -18840,9 +18892,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 = []) { @@ -18856,8 +18908,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) { @@ -18871,8 +18923,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) { @@ -18886,8 +18938,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) { @@ -18900,8 +18952,8 @@ namespace Illuminate\Support\Facades { * * @param string $rule * @param \Closure|string $replacer - * @return void - * @static + * @return void + * @static */ public static function replacer($rule, $replacer) { @@ -18912,8 +18964,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() { @@ -18924,8 +18976,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() { @@ -18937,8 +18989,8 @@ namespace Illuminate\Support\Facades { * Set the Validator instance resolver. * * @param \Closure $resolver - * @return void - * @static + * @return void + * @static */ public static function resolver($resolver) { @@ -18949,8 +19001,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() { @@ -18961,8 +19013,8 @@ namespace Illuminate\Support\Facades { /** * Get the Presence Verifier implementation. * - * @return \Illuminate\Validation\PresenceVerifierInterface - * @static + * @return \Illuminate\Validation\PresenceVerifierInterface + * @static */ public static function getPresenceVerifier() { @@ -18974,8 +19026,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) { @@ -18986,8 +19038,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() { @@ -18999,8 +19051,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) { @@ -19010,8 +19062,6 @@ namespace Illuminate\Support\Facades { } /** - * - * * @see \Illuminate\View\Factory */ class View { @@ -19021,8 +19071,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 = []) { @@ -19036,8 +19086,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 = []) { @@ -19051,9 +19101,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 = []) { @@ -19068,8 +19118,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 = []) { @@ -19084,8 +19134,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 = []) { @@ -19100,8 +19150,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|') { @@ -19113,8 +19163,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) { @@ -19126,9 +19176,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) { @@ -19141,8 +19191,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) { @@ -19153,8 +19203,8 @@ namespace Illuminate\Support\Facades { /** * Increment the rendering counter. * - * @return void - * @static + * @return void + * @static */ public static function incrementRender() { @@ -19165,8 +19215,8 @@ namespace Illuminate\Support\Facades { /** * Decrement the rendering counter. * - * @return void - * @static + * @return void + * @static */ public static function decrementRender() { @@ -19177,8 +19227,8 @@ namespace Illuminate\Support\Facades { /** * Check if there are no active render operations. * - * @return bool - * @static + * @return bool + * @static */ public static function doneRendering() { @@ -19190,8 +19240,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) { @@ -19203,8 +19253,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) { @@ -19216,8 +19266,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) { @@ -19229,8 +19279,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) { @@ -19243,8 +19293,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) { @@ -19257,8 +19307,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) { @@ -19271,8 +19321,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) { @@ -19286,8 +19336,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) { @@ -19298,8 +19348,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() { @@ -19310,8 +19360,8 @@ namespace Illuminate\Support\Facades { /** * Flush all of the section contents if done rendering. * - * @return void - * @static + * @return void + * @static */ public static function flushStateIfDoneRendering() { @@ -19322,8 +19372,8 @@ namespace Illuminate\Support\Facades { /** * Get the extension to engine bindings. * - * @return array - * @static + * @return array + * @static */ public static function getExtensions() { @@ -19334,8 +19384,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() { @@ -19346,8 +19396,8 @@ namespace Illuminate\Support\Facades { /** * Get the view finder instance. * - * @return \Illuminate\View\ViewFinderInterface - * @static + * @return \Illuminate\View\ViewFinderInterface + * @static */ public static function getFinder() { @@ -19359,8 +19409,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) { @@ -19371,8 +19421,8 @@ namespace Illuminate\Support\Facades { /** * Flush the cache of views located by the finder. * - * @return void - * @static + * @return void + * @static */ public static function flushFinderCache() { @@ -19383,8 +19433,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() { @@ -19396,8 +19446,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) { @@ -19408,8 +19458,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() { @@ -19421,8 +19471,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) { @@ -19435,8 +19485,8 @@ namespace Illuminate\Support\Facades { * * @param string $key * @param mixed $default - * @return mixed - * @static + * @return mixed + * @static */ public static function shared($key, $default = null) { @@ -19447,8 +19497,8 @@ namespace Illuminate\Support\Facades { /** * Get all of the shared data for the environment. * - * @return array - * @static + * @return array + * @static */ public static function getShared() { @@ -19462,8 +19512,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) { @@ -19475,9 +19525,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) { @@ -19488,8 +19538,8 @@ namespace Illuminate\Support\Facades { * Checks if macro is registered. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasMacro($name) { @@ -19499,8 +19549,8 @@ namespace Illuminate\Support\Facades { /** * Flush the existing macros. * - * @return void - * @static + * @return void + * @static */ public static function flushMacros() { @@ -19512,8 +19562,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 = []) { @@ -19526,8 +19576,8 @@ namespace Illuminate\Support\Facades { * * @param array $names * @param array $data - * @return void - * @static + * @return void + * @static */ public static function startComponentFirst($names, $data = []) { @@ -19538,8 +19588,8 @@ namespace Illuminate\Support\Facades { /** * Render the current component. * - * @return string - * @static + * @return string + * @static */ public static function renderComponent() { @@ -19552,8 +19602,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) { @@ -19567,8 +19617,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 = []) { @@ -19579,8 +19629,8 @@ namespace Illuminate\Support\Facades { /** * Save the slot content for rendering. * - * @return void - * @static + * @return void + * @static */ public static function endSlot() { @@ -19593,8 +19643,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) { @@ -19606,8 +19656,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) { @@ -19620,8 +19670,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) { @@ -19633,8 +19683,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) { @@ -19646,8 +19696,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) { @@ -19659,8 +19709,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) { @@ -19671,9 +19721,9 @@ namespace Illuminate\Support\Facades { /** * Stop injecting content into a fragment. * - * @return string + * @return string * @throws \InvalidArgumentException - * @static + * @static */ public static function stopFragment() { @@ -19686,8 +19736,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) { @@ -19698,8 +19748,8 @@ namespace Illuminate\Support\Facades { /** * Get the entire array of rendered fragments. * - * @return array - * @static + * @return array + * @static */ public static function getFragments() { @@ -19710,8 +19760,8 @@ namespace Illuminate\Support\Facades { /** * Flush all of the fragments. * - * @return void - * @static + * @return void + * @static */ public static function flushFragments() { @@ -19724,8 +19774,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) { @@ -19738,8 +19788,8 @@ namespace Illuminate\Support\Facades { * * @param string $section * @param string $content - * @return void - * @static + * @return void + * @static */ public static function inject($section, $content) { @@ -19750,8 +19800,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() { @@ -19763,9 +19813,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) { @@ -19776,9 +19826,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() { @@ -19791,8 +19841,8 @@ namespace Illuminate\Support\Facades { * * @param string $section * @param string $default - * @return string - * @static + * @return string + * @static */ public static function yieldContent($section, $default = '') { @@ -19804,8 +19854,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 = '') { @@ -19816,8 +19866,8 @@ namespace Illuminate\Support\Facades { * Check if section exists. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasSection($name) { @@ -19829,8 +19879,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) { @@ -19843,8 +19893,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) { @@ -19855,8 +19905,8 @@ namespace Illuminate\Support\Facades { /** * Get the entire array of sections. * - * @return array - * @static + * @return array + * @static */ public static function getSections() { @@ -19867,8 +19917,8 @@ namespace Illuminate\Support\Facades { /** * Flush all of the sections. * - * @return void - * @static + * @return void + * @static */ public static function flushSections() { @@ -19880,8 +19930,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) { @@ -19892,8 +19942,8 @@ namespace Illuminate\Support\Facades { /** * Increment the top loop's indices. * - * @return void - * @static + * @return void + * @static */ public static function incrementLoopIndices() { @@ -19904,8 +19954,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() { @@ -19916,8 +19966,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() { @@ -19928,8 +19978,8 @@ namespace Illuminate\Support\Facades { /** * Get the entire loop stack. * - * @return array - * @static + * @return array + * @static */ public static function getLoopStack() { @@ -19942,8 +19992,8 @@ namespace Illuminate\Support\Facades { * * @param string $section * @param string $content - * @return void - * @static + * @return void + * @static */ public static function startPush($section, $content = '') { @@ -19954,9 +20004,9 @@ namespace Illuminate\Support\Facades { /** * Stop injecting content into a push section. * - * @return string + * @return string * @throws \InvalidArgumentException - * @static + * @static */ public static function stopPush() { @@ -19969,8 +20019,8 @@ namespace Illuminate\Support\Facades { * * @param string $section * @param string $content - * @return void - * @static + * @return void + * @static */ public static function startPrepend($section, $content = '') { @@ -19981,9 +20031,9 @@ namespace Illuminate\Support\Facades { /** * Stop prepending content into a push section. * - * @return string + * @return string * @throws \InvalidArgumentException - * @static + * @static */ public static function stopPrepend() { @@ -19996,8 +20046,8 @@ namespace Illuminate\Support\Facades { * * @param string $section * @param string $default - * @return string - * @static + * @return string + * @static */ public static function yieldPushContent($section, $default = '') { @@ -20008,8 +20058,8 @@ namespace Illuminate\Support\Facades { /** * Flush all of the stacks. * - * @return void - * @static + * @return void + * @static */ public static function flushStacks() { @@ -20021,8 +20071,8 @@ namespace Illuminate\Support\Facades { * Start a translation block. * * @param array $replacements - * @return void - * @static + * @return void + * @static */ public static function startTranslation($replacements = []) { @@ -20033,8 +20083,8 @@ namespace Illuminate\Support\Facades { /** * Render the current translation. * - * @return string - * @static + * @return string + * @static */ public static function renderTranslation() { @@ -20047,21 +20097,17 @@ namespace Illuminate\Support\Facades { 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 = []) { @@ -20070,18 +20116,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) { @@ -20090,15 +20134,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 = []) { @@ -20107,12 +20149,10 @@ namespace Maatwebsite\Excel\Facades { } /** - * - * * @param object $export * @param string $writerType - * @return string - * @static + * @return string + * @static */ public static function raw($export, $writerType) { @@ -20121,14 +20161,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) { @@ -20137,14 +20175,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) { @@ -20153,14 +20189,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) { @@ -20169,14 +20203,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) { @@ -20190,8 +20222,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) { @@ -20203,9 +20235,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) { @@ -20216,8 +20248,8 @@ namespace Maatwebsite\Excel\Facades { * Checks if macro is registered. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasMacro($name) { @@ -20227,8 +20259,8 @@ namespace Maatwebsite\Excel\Facades { /** * Flush the existing macros. * - * @return void - * @static + * @return void + * @static */ public static function flushMacros() { @@ -20236,12 +20268,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') { @@ -20252,8 +20282,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() { @@ -20265,8 +20295,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() { @@ -20275,11 +20305,9 @@ namespace Maatwebsite\Excel\Facades { } /** - * - * * @param string $fileName * @param callable|null $callback - * @static + * @static */ public static function assertDownloaded($fileName, $callback = null) { @@ -20288,12 +20316,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) { @@ -20302,12 +20328,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) { @@ -20316,9 +20340,7 @@ namespace Maatwebsite\Excel\Facades { } /** - * - * - * @static + * @static */ public static function assertQueuedWithChain($chain) { @@ -20327,11 +20349,9 @@ namespace Maatwebsite\Excel\Facades { } /** - * - * * @param string $classname * @param callable|null $callback - * @static + * @static */ public static function assertExportedInRaw($classname, $callback = null) { @@ -20340,12 +20360,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) { @@ -20358,8 +20376,6 @@ namespace Maatwebsite\Excel\Facades { namespace Yajra\DataTables\Facades { /** - * - * * @mixin \Yajra\DataTables\DataTables * @see \Yajra\DataTables\DataTables */ @@ -20370,9 +20386,9 @@ namespace Yajra\DataTables\Facades { * 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) { @@ -20383,9 +20399,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) { @@ -20395,7 +20411,7 @@ namespace Yajra\DataTables\Facades { /** * Get request object. * - * @static + * @static */ public static function getRequest() { @@ -20406,7 +20422,7 @@ namespace Yajra\DataTables\Facades { /** * Get config instance. * - * @static + * @static */ public static function getConfig() { @@ -20418,7 +20434,7 @@ namespace Yajra\DataTables\Facades { * DataTables using query builder. * * @throws \Yajra\DataTables\Exceptions\Exception - * @static + * @static */ public static function query($builder) { @@ -20430,7 +20446,7 @@ namespace Yajra\DataTables\Facades { * DataTables using Eloquent Builder. * * @throws \Yajra\DataTables\Exceptions\Exception - * @static + * @static */ public static function eloquent($builder) { @@ -20443,7 +20459,7 @@ namespace Yajra\DataTables\Facades { * * @param \Illuminate\Support\Collection|array $collection * @throws \Yajra\DataTables\Exceptions\Exception - * @static + * @static */ public static function collection($collection) { @@ -20455,8 +20471,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) { @@ -20465,10 +20481,8 @@ namespace Yajra\DataTables\Facades { } /** - * - * * @throws \Yajra\DataTables\Exceptions\Exception - * @static + * @static */ public static function validateDataTable($engine, $parent) { @@ -20482,8 +20496,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) { @@ -20495,9 +20509,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) { @@ -20508,8 +20522,8 @@ namespace Yajra\DataTables\Facades { * Checks if macro is registered. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasMacro($name) { @@ -20519,8 +20533,8 @@ namespace Yajra\DataTables\Facades { /** * Flush the existing macros. * - * @return void - * @static + * @return void + * @static */ public static function flushMacros() { @@ -20532,14 +20546,10 @@ namespace Yajra\DataTables\Facades { namespace App\Services\Facade { /** - * - * */ - class Yard { + class Yard extends \Gloudemans\Shoppingcart\Cart { /** - * - * - * @static + * @static */ public static function instance($instance = null) { @@ -20548,9 +20558,7 @@ namespace App\Services\Facade { } /** - * - * - * @static + * @static */ public static function getTaxRate() { @@ -20559,9 +20567,7 @@ namespace App\Services\Facade { } /** - * - * - * @static + * @static */ public static function putYardExtra($key, $value) { @@ -20570,9 +20576,7 @@ namespace App\Services\Facade { } /** - * - * - * @static + * @static */ public static function getYardExtra($key) { @@ -20581,9 +20585,7 @@ namespace App\Services\Facade { } /** - * - * - * @static + * @static */ public static function getYContent() { @@ -20592,9 +20594,7 @@ namespace App\Services\Facade { } /** - * - * - * @static + * @static */ public static function getShippingCountryName() { @@ -20603,9 +20603,7 @@ namespace App\Services\Facade { } /** - * - * - * @static + * @static */ public static function getShippingCountryCountryId() { @@ -20614,9 +20612,7 @@ namespace App\Services\Facade { } /** - * - * - * @static + * @static */ public static function getShippingCountryId() { @@ -20625,9 +20621,7 @@ namespace App\Services\Facade { } /** - * - * - * @static + * @static */ public static function getShippingPrice() { @@ -20636,9 +20630,7 @@ namespace App\Services\Facade { } /** - * - * - * @static + * @static */ public static function reCalculateShippingPrice() { @@ -20647,9 +20639,7 @@ namespace App\Services\Facade { } /** - * - * - * @static + * @static */ public static function setShippingCountryWithPrice($shipping_country_id, $shipping_is_for = 'ot-member') { @@ -20658,9 +20648,7 @@ namespace App\Services\Facade { } /** - * - * - * @static + * @static */ public static function setUserPriceInfos($user_price_infos = []) { @@ -20669,9 +20657,7 @@ namespace App\Services\Facade { } /** - * - * - * @static + * @static */ public static function getUserPriceInfos() { @@ -20680,9 +20666,7 @@ namespace App\Services\Facade { } /** - * - * - * @static + * @static */ public static function getUserCountryId() { @@ -20691,9 +20675,7 @@ namespace App\Services\Facade { } /** - * - * - * @static + * @static */ public static function getUserCountry() { @@ -20702,9 +20684,7 @@ namespace App\Services\Facade { } /** - * - * - * @static + * @static */ public static function getUserTaxFree() { @@ -20713,9 +20693,7 @@ namespace App\Services\Facade { } /** - * - * - * @static + * @static */ public static function getShippingFree() { @@ -20724,9 +20702,7 @@ namespace App\Services\Facade { } /** - * - * - * @static + * @static */ public static function getShippingFreeMissingValue() { @@ -20735,13 +20711,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) { @@ -20750,9 +20724,7 @@ namespace App\Services\Facade { } /** - * - * - * @static + * @static */ public static function shippingNet($decimals = null, $decimalPoint = null, $thousandSeperator = null) { @@ -20761,9 +20733,7 @@ namespace App\Services\Facade { } /** - * - * - * @static + * @static */ public static function subtotalWithShipping($decimals = null, $decimalPoint = null, $thousandSeperator = null) { @@ -20772,9 +20742,7 @@ namespace App\Services\Facade { } /** - * - * - * @static + * @static */ public static function taxWithShipping($decimals = null, $decimalPoint = null, $thousandSeperator = null) { @@ -20783,9 +20751,7 @@ namespace App\Services\Facade { } /** - * - * - * @static + * @static */ public static function totalWithShipping($decimals = null, $decimalPoint = null, $thousandSeperator = null) { @@ -20799,8 +20765,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) { @@ -20809,9 +20775,7 @@ namespace App\Services\Facade { } /** - * - * - * @static + * @static */ public static function weightByFreeShipping($decimals = null, $decimalPoint = null, $thousandSeperator = null) { @@ -20820,9 +20784,7 @@ namespace App\Services\Facade { } /** - * - * - * @static + * @static */ public static function points() { @@ -20831,9 +20793,7 @@ namespace App\Services\Facade { } /** - * - * - * @static + * @static */ public static function compCount() { @@ -20847,8 +20807,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 = true) { @@ -20862,8 +20822,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 = true) { @@ -20877,8 +20837,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) { @@ -20887,9 +20847,7 @@ namespace App\Services\Facade { } /** - * - * - * @static + * @static */ public static function getCartItemByProduct($product_id, $set_price = 'with') { @@ -20898,9 +20856,7 @@ namespace App\Services\Facade { } /** - * - * - * @static + * @static */ public static function getCartItem($id, $name = null, $qty = null, $price = null, $options = []) { @@ -20909,9 +20865,7 @@ namespace App\Services\Facade { } /** - * - * - * @static + * @static */ public static function destroy() { @@ -20920,9 +20874,7 @@ namespace App\Services\Facade { } /** - * - * - * @static + * @static */ public static function rowPriceNet($row, $decimals = null, $decimalPoint = null, $thousandSeperator = null) { @@ -20931,9 +20883,7 @@ namespace App\Services\Facade { } /** - * - * - * @static + * @static */ public static function rowSubtotalNet($row, $decimals = null, $decimalPoint = null, $thousandSeperator = null) { @@ -20942,9 +20892,7 @@ namespace App\Services\Facade { } /** - * - * - * @static + * @static */ public static function isPriceCurrency() { @@ -20953,9 +20901,7 @@ namespace App\Services\Facade { } /** - * - * - * @static + * @static */ public static function getPriceCurrencyUnit() { @@ -20964,9 +20910,7 @@ namespace App\Services\Facade { } /** - * - * - * @static + * @static */ public static function convertCurrency($value = 0, $decimals = null, $decimalPoint = null, $thousandSeperator = null) { @@ -20975,9 +20919,7 @@ namespace App\Services\Facade { } /** - * - * - * @static + * @static */ public static function getCurrencyByKey($key = false, $row = null, $decimals = null, $decimalPoint = null, $thousandSeperator = null) { @@ -20986,9 +20928,7 @@ namespace App\Services\Facade { } /** - * - * - * @static + * @static */ public static function getNumComp() { @@ -20997,9 +20937,7 @@ namespace App\Services\Facade { } /** - * - * - * @static + * @static */ public static function getCompProductBy($comp, $product_id = false) { @@ -21008,9 +20946,7 @@ namespace App\Services\Facade { } /** - * - * - * @static + * @static */ public static function getContentByOrder() { @@ -21019,9 +20955,7 @@ namespace App\Services\Facade { } /** - * - * - * @static + * @static */ public static function myStore($identifier, $eventOptions = []) { @@ -21032,8 +20966,8 @@ namespace App\Services\Facade { /** * Get the current cart instance. * - * @return string - * @static + * @return string + * @static */ public static function currentInstance() { @@ -21053,8 +20987,8 @@ namespace App\Services\Facade { * @param $taxIncluded * @param array $options * @param array $eventOptions - * @return array|array[]|\Gloudemans\Shoppingcart\CartItem|\Gloudemans\Shoppingcart\CartItem[] - * @static + * @return array|array[]|\Gloudemans\Shoppingcart\CartItem|\Gloudemans\Shoppingcart\CartItem[] + * @static */ public static function add($id, $name = null, $qty = null, $price = null, $taxRate = null, $taxIncluded = false, $options = [], $eventOptions = []) { @@ -21069,8 +21003,8 @@ namespace App\Services\Facade { * @param $rowId * @param $qty * @param array $eventOptions - * @return \Gloudemans\Shoppingcart\CartItem|void - * @static + * @return \Gloudemans\Shoppingcart\CartItem|void + * @static */ public static function update($rowId, $qty, $eventOptions = []) { @@ -21084,8 +21018,8 @@ namespace App\Services\Facade { * * @param $rowId * @param array $eventOptions - * @return void - * @static + * @return void + * @static */ public static function remove($rowId, $eventOptions = []) { @@ -21098,8 +21032,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) { @@ -21111,8 +21045,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() { @@ -21124,8 +21058,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() { @@ -21140,8 +21074,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) { @@ -21156,8 +21090,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) { @@ -21170,8 +21104,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) { @@ -21185,8 +21119,8 @@ namespace App\Services\Facade { * * @param string $rowId * @param mixed $model - * @return void - * @static + * @return void + * @static */ public static function associate($rowId, $model) { @@ -21200,8 +21134,8 @@ namespace App\Services\Facade { * * @param string $rowId * @param int|float $taxRate - * @return void - * @static + * @return void + * @static */ public static function setTax($rowId, $taxRate) { @@ -21215,8 +21149,8 @@ namespace App\Services\Facade { * * @param $identifier * @param array $eventOptions - * @return void - * @static + * @return void + * @static */ public static function store($identifier, $eventOptions = []) { @@ -21230,8 +21164,8 @@ namespace App\Services\Facade { * * @param $identifier * @param array $eventOptions - * @return void - * @static + * @return void + * @static */ public static function restore($identifier, $eventOptions = [], $delteStoredCart = true, $instance = 'shopping') { @@ -21244,8 +21178,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) { @@ -21264,7 +21198,7 @@ namespace App\Services\Facade { * @param $amount * @param $taxRate * @param array $options - * @static + * @static */ public static function addFee($name, $amount, $taxRate = null, $options = []) { @@ -21278,7 +21212,7 @@ namespace App\Services\Facade { * * @todo test to see if i need to restore this * @param $name - * @static + * @static */ public static function removeFee($name) { @@ -21290,7 +21224,7 @@ namespace App\Services\Facade { /** * Removes all the fees set in the cart. * - * @static + * @static */ public static function removeFees() { @@ -21304,8 +21238,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) { @@ -21317,8 +21251,8 @@ namespace App\Services\Facade { /** * Gets all the fees on the cart object. * - * @return mixed - * @static + * @return mixed + * @static */ public static function getFees() { @@ -21328,10 +21262,8 @@ namespace App\Services\Facade { } /** - * - * - * @return array - * @static + * @return array + * @static */ public static function toArray() { @@ -21341,11 +21273,9 @@ namespace App\Services\Facade { } /** - * - * * @param $array - * @return \App\Services\Yard - * @static + * @return \App\Services\Yard + * @static */ public static function fromArray($array) { @@ -21358,7 +21288,7 @@ namespace App\Services\Facade { * Deletes the stored cart with given identifier * * @param mixed $identifier - * @static + * @static */ public static function deleteStoredCart($identifier) { @@ -21370,8 +21300,8 @@ namespace App\Services\Facade { /** * Get the carts content, if there is no cart content set yet, return a new empty Collection * - * @return \Illuminate\Support\Collection - * @static + * @return \Illuminate\Support\Collection + * @static */ public static function getContent() { @@ -21381,9 +21311,7 @@ namespace App\Services\Facade { } /** - * - * - * @static + * @static */ public static function getShippingExtras() { @@ -21393,9 +21321,7 @@ namespace App\Services\Facade { } /** - * - * - * @static + * @static */ public static function putShippingExtras($content) { @@ -21409,16 +21335,12 @@ namespace App\Services\Facade { namespace Acme\Dhl\Facades { /** - * - * */ class DHL { /** - * - * * @param array $orderData - * @return array - * @static + * @return array + * @static */ public static function createLabel($orderData) { @@ -21427,11 +21349,9 @@ namespace Acme\Dhl\Facades { } /** - * - * * @param string $shipmentNumber - * @return bool - * @static + * @return bool + * @static */ public static function cancelLabel($shipmentNumber) { @@ -21440,11 +21360,9 @@ namespace Acme\Dhl\Facades { } /** - * - * * @param string $trackingNumber - * @return array - * @static + * @return array + * @static */ public static function track($trackingNumber) { @@ -21453,11 +21371,9 @@ namespace Acme\Dhl\Facades { } /** - * - * * @param array $returnData - * @return array - * @static + * @return array + * @static */ public static function createReturn($returnData) { @@ -21468,10 +21384,819 @@ namespace Acme\Dhl\Facades { } } +namespace Alban\LaravelCollectiveSpatieHtmlParser { + /** + * @see \Collective\Html\HtmlBuilder + */ + class FormFacade { + /** + * @static + */ + public static function checkbox($name, $value = 1, $checked = null, $options = []) + { + /** @var \Alban\LaravelCollectiveSpatieHtmlParser\FormAdapter $instance */ + return $instance->checkbox($name, $value, $checked, $options); + } + + /** + * @static + */ + public static function open($options = []) + { + /** @var \Alban\LaravelCollectiveSpatieHtmlParser\FormAdapter $instance */ + return $instance->open($options); + } + + /** + * @static + */ + public static function label($name, $value = null, $options = [], $escape_html = true) + { + /** @var \Alban\LaravelCollectiveSpatieHtmlParser\FormAdapter $instance */ + return $instance->label($name, $value, $options, $escape_html); + } + + /** + * @static + */ + public static function text($name, $value = null, $options = []) + { + /** @var \Alban\LaravelCollectiveSpatieHtmlParser\FormAdapter $instance */ + return $instance->text($name, $value, $options); + } + + /** + * @static + */ + public static function password($name, $options = []) + { + /** @var \Alban\LaravelCollectiveSpatieHtmlParser\FormAdapter $instance */ + return $instance->password($name, $options); + } + + /** + * @static + */ + public static function select($name, $list = [], $selected = null, $selectAttributes = [], $optionsAttributes = [], $optgroupsAttributes = []) + { + /** @var \Alban\LaravelCollectiveSpatieHtmlParser\FormAdapter $instance */ + return $instance->select($name, $list, $selected, $selectAttributes, $optionsAttributes, $optgroupsAttributes); + } + + /** + * @static + */ + public static function radio($name, $value = null, $checked = null, $options = []) + { + /** @var \Alban\LaravelCollectiveSpatieHtmlParser\FormAdapter $instance */ + return $instance->radio($name, $value, $checked, $options); + } + + /** + * @static + */ + public static function submit($value = null, $options = []) + { + /** @var \Alban\LaravelCollectiveSpatieHtmlParser\FormAdapter $instance */ + return $instance->submit($value, $options); + } + + /** + * @static + */ + public static function close() + { + /** @var \Alban\LaravelCollectiveSpatieHtmlParser\FormAdapter $instance */ + return $instance->close(); + } + + /** + * @static + */ + public static function input($type, $name, $value = null, $options = []) + { + /** @var \Alban\LaravelCollectiveSpatieHtmlParser\FormAdapter $instance */ + return $instance->input($type, $name, $value, $options); + } + + /** + * @static + */ + public static function search($name, $value = null, $options = []) + { + /** @var \Alban\LaravelCollectiveSpatieHtmlParser\FormAdapter $instance */ + return $instance->search($name, $value, $options); + } + + /** + * @static + */ + public static function model($model, $options = []) + { + /** @var \Alban\LaravelCollectiveSpatieHtmlParser\FormAdapter $instance */ + return $instance->model($model, $options); + } + + /** + * @static + */ + public static function hidden($name, $value = null, $options = []) + { + /** @var \Alban\LaravelCollectiveSpatieHtmlParser\FormAdapter $instance */ + return $instance->hidden($name, $value, $options); + } + + /** + * @static + */ + public static function email($name, $value = null, $options = []) + { + /** @var \Alban\LaravelCollectiveSpatieHtmlParser\FormAdapter $instance */ + return $instance->email($name, $value, $options); + } + + /** + * @static + */ + public static function tel($name, $value = null, $options = []) + { + /** @var \Alban\LaravelCollectiveSpatieHtmlParser\FormAdapter $instance */ + return $instance->tel($name, $value, $options); + } + + /** + * @static + */ + public static function number($name, $value = null, $options = []) + { + /** @var \Alban\LaravelCollectiveSpatieHtmlParser\FormAdapter $instance */ + return $instance->number($name, $value, $options); + } + + /** + * @static + */ + public static function date($name, $value = null, $options = []) + { + /** @var \Alban\LaravelCollectiveSpatieHtmlParser\FormAdapter $instance */ + return $instance->date($name, $value, $options); + } + + /** + * @static + */ + public static function datetime($name, $value = null, $options = []) + { + /** @var \Alban\LaravelCollectiveSpatieHtmlParser\FormAdapter $instance */ + return $instance->datetime($name, $value, $options); + } + + /** + * @static + */ + public static function datetimeLocal($name, $value = null, $options = []) + { + /** @var \Alban\LaravelCollectiveSpatieHtmlParser\FormAdapter $instance */ + return $instance->datetimeLocal($name, $value, $options); + } + + /** + * @static + */ + public static function time($name, $value = null, $options = []) + { + /** @var \Alban\LaravelCollectiveSpatieHtmlParser\FormAdapter $instance */ + return $instance->time($name, $value, $options); + } + + /** + * @static + */ + public static function url($name, $value = null, $options = []) + { + /** @var \Alban\LaravelCollectiveSpatieHtmlParser\FormAdapter $instance */ + return $instance->url($name, $value, $options); + } + + /** + * @static + */ + public static function file($name, $options = []) + { + /** @var \Alban\LaravelCollectiveSpatieHtmlParser\FormAdapter $instance */ + return $instance->file($name, $options); + } + + /** + * @static + */ + public static function textarea($name, $value = null, $options = []) + { + /** @var \Alban\LaravelCollectiveSpatieHtmlParser\FormAdapter $instance */ + return $instance->textarea($name, $value, $options); + } + + /** + * @static + */ + public static function reset($value, $attributes = []) + { + /** @var \Alban\LaravelCollectiveSpatieHtmlParser\FormAdapter $instance */ + return $instance->reset($value, $attributes); + } + + /** + * @static + */ + public static function image($url, $name = null, $attributes = []) + { + /** @var \Alban\LaravelCollectiveSpatieHtmlParser\FormAdapter $instance */ + return $instance->image($url, $name, $attributes); + } + + /** + * @static + */ + public static function color($name, $value = null, $options = []) + { + /** @var \Alban\LaravelCollectiveSpatieHtmlParser\FormAdapter $instance */ + return $instance->color($name, $value, $options); + } + + /** + * @static + */ + public static function button($value = null, $options = []) + { + /** @var \Alban\LaravelCollectiveSpatieHtmlParser\FormAdapter $instance */ + return $instance->button($value, $options); + } + + /** + * @static + */ + public static function mergeOptions($element, $options = []) + { + /** @var \Alban\LaravelCollectiveSpatieHtmlParser\FormAdapter $instance */ + return $instance->mergeOptions($element, $options); + } + + } + } + +namespace Spatie\Html\Facades { + /** + */ + class Html { + /** + * @param string|null $href + * @param string|null $text + * @return \Spatie\Html\Elements\A + * @static + */ + public static function a($href = null, $contents = null) + { + /** @var \Spatie\Html\Html $instance */ + return $instance->a($href, $contents); + } + + /** + * @param string|null $href + * @param string|null $text + * @return \Spatie\Html\Elements\I + * @static + */ + public static function i($contents = null) + { + /** @var \Spatie\Html\Html $instance */ + return $instance->i($contents); + } + + /** + * @param \Spatie\Html\HtmlElement|string|null $contents + * @return \Spatie\Html\Elements\P + * @static + */ + public static function p($contents = null) + { + /** @var \Spatie\Html\Html $instance */ + return $instance->p($contents); + } + + /** + * @param string|null $type + * @param string|null $text + * @return \Spatie\Html\Elements\Button + * @static + */ + public static function button($contents = null, $type = null, $name = null) + { + /** @var \Spatie\Html\Html $instance */ + return $instance->button($contents, $type, $name); + } + + /** + * @param \Illuminate\Support\Collection|iterable|string $classes + * @return \Illuminate\Contracts\Support\Htmlable + * @static + */ + public static function class($classes) + { + /** @var \Spatie\Html\Html $instance */ + return $instance->class($classes); + } + + /** + * @param string|null $name + * @param bool $checked + * @param string|null $value + * @return \Spatie\Html\Elements\Input + * @static + */ + public static function checkbox($name = null, $checked = null, $value = '1') + { + /** @var \Spatie\Html\Html $instance */ + return $instance->checkbox($name, $checked, $value); + } + + /** + * @param \Spatie\Html\HtmlElement|string|iterable|int|float|null $contents + * @return \Spatie\Html\Elements\Div + * @static + */ + public static function div($contents = null) + { + /** @var \Spatie\Html\Html $instance */ + return $instance->div($contents); + } + + /** + * @param string|null $name + * @param string|null $value + * @return \Spatie\Html\Elements\Input + * @static + */ + public static function email($name = null, $value = null) + { + /** @var \Spatie\Html\Html $instance */ + return $instance->email($name, $value); + } + + /** + * @param string|null $name + * @param string|null $value + * @return \Spatie\Html\Elements\Input + * @static + */ + public static function search($name = null, $value = null) + { + /** @var \Spatie\Html\Html $instance */ + return $instance->search($name, $value); + } + + /** + * @param string|null $name + * @param string|null $value + * @param bool $format + * @return \Spatie\Html\Elements\Input + * @static + */ + public static function date($name = '', $value = null, $format = true) + { + /** @var \Spatie\Html\Html $instance */ + return $instance->date($name, $value, $format); + } + + /** + * @param string|null $name + * @param string|null $value + * @param bool $format + * @return \Spatie\Html\Elements\Input + * @static + */ + public static function datetime($name = '', $value = null, $format = true) + { + /** @var \Spatie\Html\Html $instance */ + return $instance->datetime($name, $value, $format); + } + + /** + * @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 + */ + public static function range($name = '', $value = null, $min = null, $max = null, $step = null) + { + /** @var \Spatie\Html\Html $instance */ + return $instance->range($name, $value, $min, $max, $step); + } + + /** + * @param string|null $name + * @param string|null $value + * @param bool $format + * @return \Spatie\Html\Elements\Input + * @static + */ + public static function time($name = '', $value = null, $format = true) + { + /** @var \Spatie\Html\Html $instance */ + return $instance->time($name, $value, $format); + } + + /** + * @param string $tag + * @return \Spatie\Html\Elements\Element + * @static + */ + public static function element($tag) + { + /** @var \Spatie\Html\Html $instance */ + return $instance->element($tag); + } + + /** + * @param string|null $type + * @param string|null $name + * @param string|null $value + * @return \Spatie\Html\Elements\Input + * @static + */ + public static function input($type = null, $name = null, $value = null) + { + /** @var \Spatie\Html\Html $instance */ + return $instance->input($type, $name, $value); + } + + /** + * @param \Spatie\Html\HtmlElement|string|null $legend + * @return \Spatie\Html\Elements\Fieldset + * @static + */ + public static function fieldset($legend = null) + { + /** @var \Spatie\Html\Html $instance */ + return $instance->fieldset($legend); + } + + /** + * @param string $method + * @param string|null $action + * @return \Spatie\Html\Elements\Form + * @static + */ + public static function form($method = 'POST', $action = null) + { + /** @var \Spatie\Html\Html $instance */ + return $instance->form($method, $action); + } + + /** + * @param string|null $name + * @param string|null $value + * @return \Spatie\Html\Elements\Input + * @static + */ + public static function hidden($name = null, $value = null) + { + /** @var \Spatie\Html\Html $instance */ + return $instance->hidden($name, $value); + } + + /** + * @param string|null $src + * @param string|null $alt + * @return \Spatie\Html\Elements\Img + * @static + */ + public static function img($src = null, $alt = null) + { + /** @var \Spatie\Html\Html $instance */ + return $instance->img($src, $alt); + } + + /** + * @param \Spatie\Html\HtmlElement|iterable|string|null $contents + * @param string|null $for + * @return \Spatie\Html\Elements\Label + * @static + */ + public static function label($contents = null, $for = null) + { + /** @var \Spatie\Html\Html $instance */ + return $instance->label($contents, $for); + } + + /** + * @param \Spatie\Html\HtmlElement|string|null $contents + * @return \Spatie\Html\Elements\Legend + * @static + */ + public static function legend($contents = null) + { + /** @var \Spatie\Html\Html $instance */ + return $instance->legend($contents); + } + + /** + * @param string $email + * @param string|null $text + * @return \Spatie\Html\Elements\A + * @static + */ + public static function mailto($email, $text = null) + { + /** @var \Spatie\Html\Html $instance */ + return $instance->mailto($email, $text); + } + + /** + * @param string|null $name + * @param iterable $options + * @param string|iterable|null $value + * @return \Spatie\Html\Elements\Select + * @static + */ + public static function multiselect($name = null, $options = [], $value = null) + { + /** @var \Spatie\Html\Html $instance */ + return $instance->multiselect($name, $options, $value); + } + + /** + * @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 + */ + public static function number($name = null, $value = null, $min = null, $max = null, $step = null) + { + /** @var \Spatie\Html\Html $instance */ + return $instance->number($name, $value, $min, $max, $step); + } + + /** + * @param string|null $text + * @param string|null $value + * @param bool $selected + * @return \Spatie\Html\Elements\Option + * @static + */ + public static function option($text = null, $value = null, $selected = false) + { + /** @var \Spatie\Html\Html $instance */ + return $instance->option($text, $value, $selected); + } + + /** + * @param string|null $value + * @return \Spatie\Html\Elements\Input + * @static + */ + public static function password($name = null) + { + /** @var \Spatie\Html\Html $instance */ + return $instance->password($name); + } + + /** + * @param string|null $name + * @param bool $checked + * @param string|null $value + * @return \Spatie\Html\Elements\Input + * @static + */ + public static function radio($name = null, $checked = null, $value = null) + { + /** @var \Spatie\Html\Html $instance */ + return $instance->radio($name, $checked, $value); + } + + /** + * @param string|null $name + * @param iterable $options + * @param string|iterable|null $value + * @return \Spatie\Html\Elements\Select + * @static + */ + public static function select($name = null, $options = [], $value = null) + { + /** @var \Spatie\Html\Html $instance */ + return $instance->select($name, $options, $value); + } + + /** + * @param \Spatie\Html\HtmlElement|string|null $contents + * @return \Spatie\Html\Elements\Span + * @static + */ + public static function span($contents = null) + { + /** @var \Spatie\Html\Html $instance */ + return $instance->span($contents); + } + + /** + * @param string|null $text + * @return \Spatie\Html\Elements\Button + * @static + */ + public static function submit($text = null) + { + /** @var \Spatie\Html\Html $instance */ + return $instance->submit($text); + } + + /** + * @param string|null $text + * @return \Spatie\Html\Elements\Button + * @static + */ + public static function reset($text = null) + { + /** @var \Spatie\Html\Html $instance */ + return $instance->reset($text); + } + + /** + * @param string $number + * @param string|null $text + * @return \Spatie\Html\Elements\A + * @static + */ + public static function tel($number, $text = null) + { + /** @var \Spatie\Html\Html $instance */ + return $instance->tel($number, $text); + } + + /** + * @param string|null $name + * @param string|null $value + * @return \Spatie\Html\Elements\Input + * @static + */ + public static function text($name = null, $value = null) + { + /** @var \Spatie\Html\Html $instance */ + return $instance->text($name, $value); + } + + /** + * @param string|null $name + * @return \Spatie\Html\Elements\File + * @static + */ + public static function file($name = null) + { + /** @var \Spatie\Html\Html $instance */ + return $instance->file($name); + } + + /** + * @param string|null $name + * @param string|null $value + * @return \Spatie\Html\Elements\Textarea + * @static + */ + public static function textarea($name = null, $value = null) + { + /** @var \Spatie\Html\Html $instance */ + return $instance->textarea($name, $value); + } + + /** + * @return \Spatie\Html\Elements\Input + * @static + */ + public static function token() + { + /** @var \Spatie\Html\Html $instance */ + return $instance->token(); + } + + /** + * @param \ArrayAccess|array $model + * @return \Spatie\Html\Html + * @static + */ + public static function model($model) + { + /** @var \Spatie\Html\Html $instance */ + return $instance->model($model); + } + + /** + * @param \ArrayAccess|array $model + * @param string|null $method + * @param string|null $action + * @return \Spatie\Html\Elements\Form + * @static + */ + public static function modelForm($model, $method = 'POST', $action = null) + { + /** @var \Spatie\Html\Html $instance */ + return $instance->modelForm($model, $method, $action); + } + + /** + * @return \Spatie\Html\Html + * @static + */ + public static function endModel() + { + /** @var \Spatie\Html\Html $instance */ + return $instance->endModel(); + } + + /** + * @return \Illuminate\Contracts\Support\Htmlable + * @static + */ + public static function closeModelForm() + { + /** @var \Spatie\Html\Html $instance */ + return $instance->closeModelForm(); + } + + /** + * Retrieve the value from the current session or assigned model. This is + * a public alias for `old`. + * + * @param string $name + * @param mixed $value + * @return mixed + * @static + */ + public static function value($name, $default = null) + { + /** @var \Spatie\Html\Html $instance */ + return $instance->value($name, $default); + } + + /** + * Register a custom macro. + * + * @param string $name + * @param object|callable $macro + * @param-closure-this static $macro + * @return void + * @static + */ + public static function macro($name, $macro) + { + \Spatie\Html\Html::macro($name, $macro); + } + + /** + * Mix another object into the class. + * + * @param object $mixin + * @param bool $replace + * @return void + * @throws \ReflectionException + * @static + */ + public static function mixin($mixin, $replace = true) + { + \Spatie\Html\Html::mixin($mixin, $replace); + } + + /** + * Checks if macro is registered. + * + * @param string $name + * @return bool + * @static + */ + public static function hasMacro($name) + { + return \Spatie\Html\Html::hasMacro($name); + } + + /** + * Flush the existing macros. + * + * @return void + * @static + */ + public static function flushMacros() + { + \Spatie\Html\Html::flushMacros(); + } + + } + } + namespace Barryvdh\Debugbar\Facades { /** - * - * * @method static void alert(mixed $message) * @method static void critical(mixed $message) * @method static void debug(mixed $message) @@ -21483,14 +22208,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() { @@ -21501,7 +22226,7 @@ namespace Barryvdh\Debugbar\Facades { /** * Enable the Debugbar and boot, if not already booted. * - * @static + * @static */ public static function enable() { @@ -21512,7 +22237,7 @@ namespace Barryvdh\Debugbar\Facades { /** * Boot the debugbar (add collectors, renderer and listener) * - * @static + * @static */ public static function boot() { @@ -21521,9 +22246,7 @@ namespace Barryvdh\Debugbar\Facades { } /** - * - * - * @static + * @static */ public static function shouldCollect($name, $default = false) { @@ -21536,8 +22259,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) { @@ -21554,7 +22277,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 = []) { @@ -21568,19 +22291,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) { @@ -21593,7 +22317,7 @@ namespace Barryvdh\Debugbar\Facades { * * @param \Exception $e * @deprecated in favor of addThrowable - * @static + * @static */ public static function addException($e) { @@ -21605,7 +22329,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) { @@ -21618,8 +22342,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) { @@ -21632,8 +22356,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) { @@ -21644,8 +22368,8 @@ namespace Barryvdh\Debugbar\Facades { /** * Check if the Debugbar is enabled * - * @return boolean - * @static + * @return boolean + * @static */ public static function isEnabled() { @@ -21656,8 +22380,8 @@ namespace Barryvdh\Debugbar\Facades { /** * Collects the data from the collectors * - * @return array - * @static + * @return array + * @static */ public static function collect() { @@ -21670,7 +22394,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) { @@ -21681,8 +22405,8 @@ namespace Barryvdh\Debugbar\Facades { /** * Checks if there is stacked data in the session * - * @return boolean - * @static + * @return boolean + * @static */ public static function hasStackedData() { @@ -21694,8 +22418,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) { @@ -21706,7 +22430,7 @@ namespace Barryvdh\Debugbar\Facades { /** * Disable the Debugbar * - * @static + * @static */ public static function disable() { @@ -21722,12 +22446,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); } /** @@ -21736,20 +22461,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() { @@ -21764,7 +22490,7 @@ namespace Barryvdh\Debugbar\Facades { * * @param mixed $message * @param string $label - * @static + * @static */ public static function addMessage($message, $label = 'info') { @@ -21776,8 +22502,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) { @@ -21790,9 +22516,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) { @@ -21804,8 +22530,8 @@ namespace Barryvdh\Debugbar\Facades { /** * Returns an array of all data collectors * - * @return array[DataCollectorInterface] - * @static + * @return array[DataCollectorInterface] + * @static */ public static function getCollectors() { @@ -21818,8 +22544,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) { @@ -21829,10 +22555,8 @@ namespace Barryvdh\Debugbar\Facades { } /** - * - * - * @return \DebugBar\RequestIdGeneratorInterface - * @static + * @return \DebugBar\RequestIdGeneratorInterface + * @static */ public static function getRequestIdGenerator() { @@ -21844,8 +22568,8 @@ namespace Barryvdh\Debugbar\Facades { /** * Returns the id of the current request * - * @return string - * @static + * @return string + * @static */ public static function getCurrentRequestId() { @@ -21858,8 +22582,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) { @@ -21869,10 +22593,8 @@ namespace Barryvdh\Debugbar\Facades { } /** - * - * - * @return \DebugBar\StorageInterface - * @static + * @return \DebugBar\StorageInterface + * @static */ public static function getStorage() { @@ -21884,8 +22606,8 @@ namespace Barryvdh\Debugbar\Facades { /** * Checks if the data will be persisted * - * @return boolean - * @static + * @return boolean + * @static */ public static function isDataPersisted() { @@ -21898,8 +22620,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) { @@ -21913,8 +22635,8 @@ namespace Barryvdh\Debugbar\Facades { * * Will collect the data if none have been collected yet * - * @return array - * @static + * @return array + * @static */ public static function getData() { @@ -21928,8 +22650,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) { @@ -21944,8 +22666,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) { @@ -21957,7 +22679,7 @@ namespace Barryvdh\Debugbar\Facades { /** * Stacks the data in the session for later rendering * - * @static + * @static */ public static function stackData() { @@ -21970,8 +22692,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) { @@ -21983,8 +22705,8 @@ namespace Barryvdh\Debugbar\Facades { /** * Returns the key used in the $_SESSION array * - * @return string - * @static + * @return string + * @static */ public static function getStackDataSessionNamespace() { @@ -21998,8 +22720,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) { @@ -22012,8 +22734,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() { @@ -22023,9 +22745,7 @@ namespace Barryvdh\Debugbar\Facades { } /** - * - * - * @static + * @static */ public static function offsetSet($key, $value) { @@ -22035,9 +22755,7 @@ namespace Barryvdh\Debugbar\Facades { } /** - * - * - * @static + * @static */ public static function offsetGet($key) { @@ -22047,9 +22765,7 @@ namespace Barryvdh\Debugbar\Facades { } /** - * - * - * @static + * @static */ public static function offsetExists($key) { @@ -22059,9 +22775,7 @@ namespace Barryvdh\Debugbar\Facades { } /** - * - * - * @static + * @static */ public static function offsetUnset($key) { @@ -22075,8 +22789,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) @@ -22094,7 +22806,7 @@ namespace Barryvdh\DomPDF\Facade { /** * Get the DomPDF instance * - * @static + * @static */ public static function getDomPDF() { @@ -22105,7 +22817,7 @@ namespace Barryvdh\DomPDF\Facade { /** * Show or hide warnings * - * @static + * @static */ public static function setWarnings($warnings) { @@ -22117,7 +22829,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) { @@ -22128,7 +22840,7 @@ namespace Barryvdh\DomPDF\Facade { /** * Load a HTML file * - * @static + * @static */ public static function loadFile($file) { @@ -22140,7 +22852,7 @@ namespace Barryvdh\DomPDF\Facade { * Add metadata info * * @param array $info - * @static + * @static */ public static function addInfo($info) { @@ -22154,7 +22866,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) { @@ -22167,7 +22879,7 @@ namespace Barryvdh\DomPDF\Facade { * * @param array|string $attribute * @param null|mixed $value - * @static + * @static */ public static function setOption($attribute, $value = null) { @@ -22179,7 +22891,7 @@ namespace Barryvdh\DomPDF\Facade { * Replace all the Options from DomPDF * * @param array $options - * @static + * @static */ public static function setOptions($options, $mergeWithDefaults = false) { @@ -22197,7 +22909,7 @@ namespace Barryvdh\DomPDF\Facade { * * @param array $options * @return string The rendered PDF as string - * @static + * @static */ public static function output($options = []) { @@ -22208,7 +22920,7 @@ namespace Barryvdh\DomPDF\Facade { /** * Save the PDF to a file * - * @static + * @static */ public static function save($filename, $disk = null) { @@ -22219,7 +22931,7 @@ namespace Barryvdh\DomPDF\Facade { /** * Make the PDF downloadable by the user * - * @static + * @static */ public static function download($filename = 'document.pdf') { @@ -22230,7 +22942,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') { @@ -22241,7 +22953,7 @@ namespace Barryvdh\DomPDF\Facade { /** * Render the PDF * - * @static + * @static */ public static function render() { @@ -22250,10 +22962,8 @@ namespace Barryvdh\DomPDF\Facade { } /** - * - * * @param array $pc - * @static + * @static */ public static function setEncryption($password, $ownerpassword = '', $pc = []) { @@ -22263,8 +22973,6 @@ namespace Barryvdh\DomPDF\Facade { } /** - * - * * @method static BasePDF setBaseHost(string $baseHost) * @method static BasePDF setBasePath(string $basePath) * @method static BasePDF setCanvas(\Dompdf\Canvas $canvas) @@ -22282,7 +22990,7 @@ namespace Barryvdh\DomPDF\Facade { /** * Get the DomPDF instance * - * @static + * @static */ public static function getDomPDF() { @@ -22293,7 +23001,7 @@ namespace Barryvdh\DomPDF\Facade { /** * Show or hide warnings * - * @static + * @static */ public static function setWarnings($warnings) { @@ -22305,7 +23013,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) { @@ -22316,7 +23024,7 @@ namespace Barryvdh\DomPDF\Facade { /** * Load a HTML file * - * @static + * @static */ public static function loadFile($file) { @@ -22328,7 +23036,7 @@ namespace Barryvdh\DomPDF\Facade { * Add metadata info * * @param array $info - * @static + * @static */ public static function addInfo($info) { @@ -22342,7 +23050,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) { @@ -22355,7 +23063,7 @@ namespace Barryvdh\DomPDF\Facade { * * @param array|string $attribute * @param null|mixed $value - * @static + * @static */ public static function setOption($attribute, $value = null) { @@ -22367,7 +23075,7 @@ namespace Barryvdh\DomPDF\Facade { * Replace all the Options from DomPDF * * @param array $options - * @static + * @static */ public static function setOptions($options, $mergeWithDefaults = false) { @@ -22385,7 +23093,7 @@ namespace Barryvdh\DomPDF\Facade { * * @param array $options * @return string The rendered PDF as string - * @static + * @static */ public static function output($options = []) { @@ -22396,7 +23104,7 @@ namespace Barryvdh\DomPDF\Facade { /** * Save the PDF to a file * - * @static + * @static */ public static function save($filename, $disk = null) { @@ -22407,7 +23115,7 @@ namespace Barryvdh\DomPDF\Facade { /** * Make the PDF downloadable by the user * - * @static + * @static */ public static function download($filename = 'document.pdf') { @@ -22418,7 +23126,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') { @@ -22429,7 +23137,7 @@ namespace Barryvdh\DomPDF\Facade { /** * Render the PDF * - * @static + * @static */ public static function render() { @@ -22438,10 +23146,8 @@ namespace Barryvdh\DomPDF\Facade { } /** - * - * * @param array $pc - * @static + * @static */ public static function setEncryption($password, $ownerpassword = '', $pc = []) { @@ -22454,16 +23160,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) { @@ -22475,8 +23179,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) { @@ -22488,8 +23192,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) { @@ -22501,8 +23205,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) { @@ -22515,8 +23219,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) { @@ -22529,8 +23233,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') { @@ -22541,8 +23245,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() { @@ -22553,8 +23257,8 @@ namespace Laracasts\Flash { /** * Clear all registered messages. * - * @return \Laracasts\Flash\FlashNotifier - * @static + * @return \Laracasts\Flash\FlashNotifier + * @static */ public static function clear() { @@ -22568,8 +23272,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) { @@ -22581,9 +23285,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) { @@ -22594,8 +23298,8 @@ namespace Laracasts\Flash { * Checks if macro is registered. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasMacro($name) { @@ -22605,8 +23309,8 @@ namespace Laracasts\Flash { /** * Flush the existing macros. * - * @return void - * @static + * @return void + * @static */ public static function flushMacros() { @@ -22618,15 +23322,11 @@ namespace Laracasts\Flash { namespace Spatie\LaravelIgnition\Facades { /** - * - * * @see \Spatie\FlareClient\Flare */ class Flare { /** - * - * - * @static + * @static */ public static function make($apiKey = null, $contextDetector = null) { @@ -22634,9 +23334,7 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * - * @static + * @static */ public static function setApiToken($apiToken) { @@ -22645,9 +23343,7 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * - * @static + * @static */ public static function apiTokenSet() { @@ -22656,9 +23352,7 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * - * @static + * @static */ public static function setBaseUrl($baseUrl) { @@ -22667,9 +23361,7 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * - * @static + * @static */ public static function setStage($stage) { @@ -22678,9 +23370,7 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * - * @static + * @static */ public static function sendReportsImmediately() { @@ -22689,9 +23379,7 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * - * @static + * @static */ public static function determineVersionUsing($determineVersionCallable) { @@ -22700,9 +23388,7 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * - * @static + * @static */ public static function reportErrorLevels($reportErrorLevels) { @@ -22711,9 +23397,7 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * - * @static + * @static */ public static function filterExceptionsUsing($filterExceptionsCallable) { @@ -22722,9 +23406,7 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * - * @static + * @static */ public static function filterReportsUsing($filterReportsCallable) { @@ -22733,10 +23415,8 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * * @param array|ArgumentReducer>|\Spatie\Backtrace\Arguments\ArgumentReducers|null $argumentReducers - * @static + * @static */ public static function argumentReducers($argumentReducers) { @@ -22745,9 +23425,7 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * - * @static + * @static */ public static function withStackFrameArguments($withStackFrameArguments = true, $forcePHPIniSetting = false) { @@ -22756,10 +23434,8 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * * @param class-string $exceptionClass - * @static + * @static */ public static function overrideGrouping($exceptionClass, $type = 'exception_message_and_class') { @@ -22768,9 +23444,7 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * - * @static + * @static */ public static function version() { @@ -22779,10 +23453,8 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * - * @return array> - * @static + * @return array> + * @static */ public static function getMiddleware() { @@ -22791,9 +23463,7 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * - * @static + * @static */ public static function setContextProviderDetector($contextDetector) { @@ -22802,9 +23472,7 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * - * @static + * @static */ public static function setContainer($container) { @@ -22813,9 +23481,7 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * - * @static + * @static */ public static function registerFlareHandlers() { @@ -22824,9 +23490,7 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * - * @static + * @static */ public static function registerExceptionHandler() { @@ -22835,9 +23499,7 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * - * @static + * @static */ public static function registerErrorHandler($errorLevels = null) { @@ -22846,11 +23508,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) { @@ -22859,10 +23519,8 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * - * @return array> - * @static + * @return array> + * @static */ public static function getMiddlewares() { @@ -22871,13 +23529,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 = []) { @@ -22886,9 +23542,7 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * - * @static + * @static */ public static function handleException($throwable) { @@ -22897,10 +23551,8 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * - * @return mixed - * @static + * @return mixed + * @static */ public static function handleError($code, $message, $file = '', $line = 0) { @@ -22909,9 +23561,7 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * - * @static + * @static */ public static function applicationPath($applicationPath) { @@ -22920,9 +23570,7 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * - * @static + * @static */ public static function report($throwable, $callback = null, $report = null, $handled = null) { @@ -22931,9 +23579,7 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * - * @static + * @static */ public static function reportHandled($throwable) { @@ -22942,9 +23588,7 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * - * @static + * @static */ public static function reportMessage($message, $logLevel, $callback = null) { @@ -22953,9 +23597,7 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * - * @static + * @static */ public static function sendTestReport($throwable) { @@ -22964,9 +23606,7 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * - * @static + * @static */ public static function reset() { @@ -22975,9 +23615,7 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * - * @static + * @static */ public static function anonymizeIp() { @@ -22986,11 +23624,9 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * * @param array $fieldNames - * @return \Spatie\FlareClient\Flare - * @static + * @return \Spatie\FlareClient\Flare + * @static */ public static function censorRequestBodyFields($fieldNames) { @@ -22999,9 +23635,7 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * - * @static + * @static */ public static function createReport($throwable) { @@ -23010,9 +23644,7 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * - * @static + * @static */ public static function createReportFromMessage($message, $logLevel) { @@ -23021,9 +23653,7 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * - * @static + * @static */ public static function stage($stage) { @@ -23032,9 +23662,7 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * - * @static + * @static */ public static function messageLevel($messageLevel) { @@ -23043,12 +23671,10 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * * @param string $groupName * @param mixed $default - * @return array - * @static + * @return array + * @static */ public static function getGroup($groupName = 'context', $default = []) { @@ -23057,9 +23683,7 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * - * @static + * @static */ public static function context($key, $value) { @@ -23068,12 +23692,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) { @@ -23086,8 +23708,6 @@ namespace Spatie\LaravelIgnition\Facades { namespace Illuminate\Support { /** - * - * * @template TKey of array-key * @template-covariant TValue * @implements \ArrayAccess @@ -23095,10 +23715,8 @@ namespace Illuminate\Support { */ class Collection { /** - * - * * @see \Barryvdh\Debugbar\ServiceProvider::register() - * @static + * @static */ public static function debug() { @@ -23106,14 +23724,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 = []) { @@ -23121,14 +23737,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) { @@ -23140,17 +23754,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) { @@ -23158,13 +23768,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) { @@ -23172,11 +23780,9 @@ namespace Illuminate\Http { } /** - * - * * @see \Illuminate\Foundation\Providers\FoundationServiceProvider::registerRequestSignatureValidation() * @param mixed $absolute - * @static + * @static */ public static function hasValidSignature($absolute = true) { @@ -23184,10 +23790,8 @@ namespace Illuminate\Http { } /** - * - * * @see \Illuminate\Foundation\Providers\FoundationServiceProvider::registerRequestSignatureValidation() - * @static + * @static */ public static function hasValidRelativeSignature() { @@ -23195,12 +23799,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) { @@ -23208,11 +23810,9 @@ namespace Illuminate\Http { } /** - * - * * @see \Illuminate\Foundation\Providers\FoundationServiceProvider::registerRequestSignatureValidation() * @param mixed $ignoreQuery - * @static + * @static */ public static function hasValidRelativeSignatureWhileIgnoring($ignoreQuery = []) { @@ -23224,17 +23824,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 = []) { @@ -23242,10 +23838,8 @@ namespace Illuminate\Routing { } /** - * - * * @see \Laravel\Ui\AuthRouteMethods::resetPassword() - * @static + * @static */ public static function resetPassword() { @@ -23253,10 +23847,8 @@ namespace Illuminate\Routing { } /** - * - * * @see \Laravel\Ui\AuthRouteMethods::confirmPassword() - * @static + * @static */ public static function confirmPassword() { @@ -23264,10 +23856,8 @@ namespace Illuminate\Routing { } /** - * - * * @see \Laravel\Ui\AuthRouteMethods::emailVerification() - * @static + * @static */ public static function emailVerification() { @@ -23292,8 +23882,6 @@ namespace { class DB extends \Illuminate\Support\Facades\DB {} /** - * - * * @template TCollection of static * @template TModel of static * @template TValue of static @@ -23303,8 +23891,8 @@ namespace { * Create and return an un-saved model instance. * * @param array $attributes - * @return TModel - * @static + * @return TModel + * @static */ public static function make($attributes = []) { @@ -23317,8 +23905,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) { @@ -23330,8 +23918,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) { @@ -23343,8 +23931,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) { @@ -23355,8 +23943,8 @@ namespace { /** * Get an array of global scopes that were removed from the query. * - * @return array - * @static + * @return array + * @static */ public static function removedScopes() { @@ -23368,8 +23956,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) { @@ -23381,8 +23969,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) { @@ -23397,8 +23985,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') { @@ -23413,8 +24001,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') { @@ -23428,8 +24016,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) { @@ -23444,8 +24032,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') { @@ -23459,8 +24047,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) { @@ -23472,8 +24060,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) { @@ -23485,8 +24073,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) { @@ -23498,8 +24086,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) { @@ -23512,8 +24100,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 = []) { @@ -23527,7 +24115,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 = []) { @@ -23540,10 +24128,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 = []) { @@ -23556,8 +24144,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 = []) { @@ -23572,7 +24160,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 = []) { @@ -23586,7 +24174,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 = []) { @@ -23605,7 +24193,7 @@ namespace { * ? \Illuminate\Database\Eloquent\Collection * : TModel|TValue * ) - * @static + * @static */ public static function findOr($id, $columns = [], $callback = null) { @@ -23618,8 +24206,8 @@ namespace { * * @param array $attributes * @param array $values - * @return TModel - * @static + * @return TModel + * @static */ public static function firstOrNew($attributes = [], $values = []) { @@ -23632,8 +24220,8 @@ namespace { * * @param array $attributes * @param array $values - * @return TModel - * @static + * @return TModel + * @static */ public static function firstOrCreate($attributes = [], $values = []) { @@ -23646,8 +24234,8 @@ namespace { * * @param array $attributes * @param array $values - * @return TModel - * @static + * @return TModel + * @static */ public static function createOrFirst($attributes = [], $values = []) { @@ -23660,8 +24248,8 @@ namespace { * * @param array $attributes * @param array $values - * @return TModel - * @static + * @return TModel + * @static */ public static function updateOrCreate($attributes, $values = []) { @@ -23677,8 +24265,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 = []) { @@ -23690,9 +24278,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 = []) { @@ -23706,8 +24294,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) { @@ -23719,10 +24307,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 = []) { @@ -23734,8 +24322,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) { @@ -23747,10 +24335,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) { @@ -23762,9 +24350,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) { @@ -23776,8 +24364,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 = []) { @@ -23789,8 +24377,8 @@ namespace { * Get the hydrated models without eager loading. * * @param array|string $columns - * @return array - * @static + * @return array + * @static */ public static function getModels($columns = []) { @@ -23802,8 +24390,8 @@ namespace { * Eager load the relationships for the models. * * @param array $models - * @return array - * @static + * @return array + * @static */ public static function eagerLoadRelations($models) { @@ -23815,8 +24403,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) { @@ -23828,8 +24416,8 @@ namespace { * Invoke the "after query" modification callbacks. * * @param mixed $result - * @return mixed - * @static + * @return mixed + * @static */ public static function applyAfterQueryCallbacks($result) { @@ -23840,8 +24428,8 @@ namespace { /** * Get a lazy collection for the given query. * - * @return \Illuminate\Support\LazyCollection - * @static + * @return \Illuminate\Support\LazyCollection + * @static */ public static function cursor() { @@ -23854,8 +24442,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) { @@ -23871,9 +24459,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) { @@ -23888,8 +24476,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) { @@ -23904,8 +24492,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) { @@ -23917,8 +24505,8 @@ namespace { * Save a new model and return the instance. * * @param array $attributes - * @return TModel - * @static + * @return TModel + * @static */ public static function create($attributes = []) { @@ -23930,8 +24518,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 = []) { @@ -23943,8 +24531,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) { @@ -23956,8 +24544,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 = []) { @@ -23971,8 +24559,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) { @@ -23984,8 +24572,8 @@ namespace { * Register a replacement for the default delete function. * * @param \Closure $callback - * @return void - * @static + * @return void + * @static */ public static function onDelete($callback) { @@ -23997,8 +24585,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) { @@ -24009,8 +24597,8 @@ namespace { /** * Apply the scopes to the Eloquent builder instance and return it. * - * @return static - * @static + * @return static + * @static */ public static function applyScopes() { @@ -24022,8 +24610,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) { @@ -24035,8 +24623,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) { @@ -24048,8 +24636,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 = []) { @@ -24064,8 +24652,8 @@ namespace { * * @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) { @@ -24077,8 +24665,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) { @@ -24091,8 +24679,8 @@ namespace { * * @template TModelValue * @param \Closure(): TModelValue $scope - * @return TModelValue - * @static + * @return TModelValue + * @static */ public static function withSavepointIfNeeded($scope) { @@ -24103,8 +24691,8 @@ namespace { /** * Get the underlying query builder instance. * - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function getQuery() { @@ -24116,8 +24704,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) { @@ -24128,8 +24716,8 @@ namespace { /** * Get a base query builder instance. * - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function toBase() { @@ -24140,8 +24728,8 @@ namespace { /** * Get the relationships being eagerly loaded. * - * @return array - * @static + * @return array + * @static */ public static function getEagerLoads() { @@ -24153,8 +24741,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) { @@ -24166,8 +24754,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) { @@ -24178,8 +24766,8 @@ namespace { /** * Flush the relationships being eagerly loaded. * - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function withoutEagerLoads() { @@ -24190,8 +24778,8 @@ namespace { /** * Get the model instance being queried. * - * @return TModel - * @static + * @return TModel + * @static */ public static function getModel() { @@ -24204,8 +24792,8 @@ namespace { * * @template TModelNew of \Illuminate\Database\Eloquent\Model * @param TModelNew $model - * @return static - * @static + * @return static + * @static */ public static function setModel($model) { @@ -24217,8 +24805,8 @@ namespace { * Get the given macro by name. * * @param string $name - * @return \Closure - * @static + * @return \Closure + * @static */ public static function getMacro($name) { @@ -24230,8 +24818,8 @@ namespace { * Checks if a macro is registered. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasMacro($name) { @@ -24243,8 +24831,8 @@ namespace { * Get the given global macro by name. * * @param string $name - * @return \Closure - * @static + * @return \Closure + * @static */ public static function getGlobalMacro($name) { @@ -24255,8 +24843,8 @@ namespace { * Checks if a global macro is registered. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasGlobalMacro($name) { @@ -24266,8 +24854,8 @@ namespace { /** * Clone the Eloquent query builder. * - * @return static - * @static + * @return static + * @static */ public static function clone() { @@ -24279,8 +24867,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) { @@ -24293,8 +24881,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) { @@ -24308,8 +24896,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) { @@ -24322,9 +24910,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) { @@ -24339,8 +24927,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) { @@ -24355,8 +24943,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) { @@ -24372,9 +24960,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) { @@ -24389,8 +24977,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) { @@ -24402,9 +24990,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) { @@ -24418,9 +25006,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) { @@ -24434,9 +25022,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) { @@ -24448,8 +25036,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 = []) { @@ -24461,10 +25049,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 = []) { @@ -24476,8 +25064,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) { @@ -24493,8 +25081,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) { @@ -24510,8 +25098,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) { @@ -24528,9 +25116,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) { @@ -24544,8 +25132,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) { @@ -24560,8 +25148,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) { @@ -24573,8 +25161,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) { @@ -24590,8 +25178,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) { @@ -24608,8 +25196,8 @@ namespace { * @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) { @@ -24625,8 +25213,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) { @@ -24640,8 +25228,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) { @@ -24655,8 +25243,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) { @@ -24674,8 +25262,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) { @@ -24690,8 +25278,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) { @@ -24707,8 +25295,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) { @@ -24721,8 +25309,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) { @@ -24739,8 +25327,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) { @@ -24757,8 +25345,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) { @@ -24773,8 +25361,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) { @@ -24789,8 +25377,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) { @@ -24806,8 +25394,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) { @@ -24822,8 +25410,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) { @@ -24839,8 +25427,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) { @@ -24856,8 +25444,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) { @@ -24873,8 +25461,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) { @@ -24891,8 +25479,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) { @@ -24909,8 +25497,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) { @@ -24927,8 +25515,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) { @@ -24945,8 +25533,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) { @@ -24959,8 +25547,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') { @@ -24973,8 +25561,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') { @@ -24987,8 +25575,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) { @@ -25001,8 +25589,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) { @@ -25016,9 +25604,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') { @@ -25031,9 +25619,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) { @@ -25047,8 +25635,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) { @@ -25060,8 +25648,8 @@ namespace { * Add subselect queries to count the relations. * * @param mixed $relations - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function withCount($relations) { @@ -25074,8 +25662,8 @@ namespace { * * @param string|array $relation * @param \Illuminate\Contracts\Database\Query\Expression|string $column - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function withMax($relation, $column) { @@ -25088,8 +25676,8 @@ namespace { * * @param string|array $relation * @param \Illuminate\Contracts\Database\Query\Expression|string $column - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function withMin($relation, $column) { @@ -25102,8 +25690,8 @@ namespace { * * @param string|array $relation * @param \Illuminate\Contracts\Database\Query\Expression|string $column - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function withSum($relation, $column) { @@ -25116,8 +25704,8 @@ namespace { * * @param string|array $relation * @param \Illuminate\Contracts\Database\Query\Expression|string $column - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function withAvg($relation, $column) { @@ -25129,8 +25717,8 @@ namespace { * Add subselect queries to include the existence of related models. * * @param string|array $relation - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function withExists($relation) { @@ -25142,8 +25730,8 @@ namespace { * Merge the where constraints from another query to the current query. * * @param \Illuminate\Database\Eloquent\Builder<*> $from - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function mergeConstraintsFrom($from) { @@ -25152,13 +25740,11 @@ namespace { } /** - * - * * @see \Maatwebsite\Excel\Mixins\DownloadQueryMacro::__invoke() * @param string $fileName * @param string|null $writerType * @param mixed $withHeadings - * @static + * @static */ public static function downloadExcel($fileName, $writerType = null, $withHeadings = false) { @@ -25166,14 +25752,12 @@ namespace { } /** - * - * * @see \Maatwebsite\Excel\Mixins\StoreQueryMacro::__invoke() * @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) { @@ -25181,13 +25765,11 @@ namespace { } /** - * - * * @see \Maatwebsite\Excel\Mixins\ImportMacro::__invoke() * @param string $filename * @param string|null $disk * @param string|null $readerType - * @static + * @static */ public static function import($filename, $disk = null, $readerType = null) { @@ -25195,14 +25777,12 @@ namespace { } /** - * - * * @see \Maatwebsite\Excel\Mixins\ImportAsMacro::__invoke() * @param string $filename * @param callable $mapping * @param string|null $disk * @param string|null $readerType - * @static + * @static */ public static function importAs($filename, $mapping, $disk = null, $readerType = null) { @@ -25213,8 +25793,8 @@ namespace { * Set the columns to be selected. * * @param array|mixed $columns - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function select($columns = []) { @@ -25227,9 +25807,9 @@ namespace { * * @param \Closure|\Illuminate\Database\Query\Builder|\Illuminate\Database\Eloquent\Builder<*>|string $query * @param string $as - * @return \Illuminate\Database\Eloquent\Builder + * @return \Illuminate\Database\Eloquent\Builder * @throws \InvalidArgumentException - * @static + * @static */ public static function selectSub($query, $as) { @@ -25241,8 +25821,8 @@ namespace { * Add a new "raw" select expression to the query. * * @param string $expression - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function selectRaw($expression, $bindings = []) { @@ -25255,9 +25835,9 @@ namespace { * * @param \Closure|\Illuminate\Database\Query\Builder|\Illuminate\Database\Eloquent\Builder<*>|string $query * @param string $as - * @return \Illuminate\Database\Eloquent\Builder + * @return \Illuminate\Database\Eloquent\Builder * @throws \InvalidArgumentException - * @static + * @static */ public static function fromSub($query, $as) { @@ -25270,8 +25850,8 @@ namespace { * * @param string $expression * @param mixed $bindings - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function fromRaw($expression, $bindings = []) { @@ -25283,8 +25863,8 @@ namespace { * Add a new select column to the query. * * @param array|mixed $column - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function addSelect($column) { @@ -25295,8 +25875,8 @@ namespace { /** * Force the query to only return distinct results. * - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function distinct() { @@ -25309,8 +25889,8 @@ namespace { * * @param \Closure|\Illuminate\Database\Query\Builder|\Illuminate\Database\Eloquent\Builder<*>|\Illuminate\Contracts\Database\Query\Expression|string $table * @param string|null $as - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function from($table, $as = null) { @@ -25322,8 +25902,8 @@ namespace { * Add an index hint to suggest a query index. * * @param string $index - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function useIndex($index) { @@ -25335,8 +25915,8 @@ namespace { * Add an index hint to force a query index. * * @param string $index - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function forceIndex($index) { @@ -25348,8 +25928,8 @@ namespace { * Add an index hint to ignore a query index. * * @param string $index - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function ignoreIndex($index) { @@ -25366,8 +25946,8 @@ namespace { * @param \Illuminate\Contracts\Database\Query\Expression|string|null $second * @param string $type * @param bool $where - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function join($table, $first, $operator = null, $second = null, $type = 'inner', $where = false) { @@ -25383,8 +25963,8 @@ namespace { * @param string $operator * @param \Illuminate\Contracts\Database\Query\Expression|string $second * @param string $type - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function joinWhere($table, $first, $operator, $second, $type = 'inner') { @@ -25402,9 +25982,9 @@ namespace { * @param \Illuminate\Contracts\Database\Query\Expression|string|null $second * @param string $type * @param bool $where - * @return \Illuminate\Database\Eloquent\Builder + * @return \Illuminate\Database\Eloquent\Builder * @throws \InvalidArgumentException - * @static + * @static */ public static function joinSub($query, $as, $first, $operator = null, $second = null, $type = 'inner', $where = false) { @@ -25416,8 +25996,8 @@ namespace { * Add a lateral join clause to the query. * * @param \Closure|\Illuminate\Database\Query\Builder|\Illuminate\Database\Eloquent\Builder<*>|string $query - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function joinLateral($query, $as, $type = 'inner') { @@ -25429,8 +26009,8 @@ namespace { * Add a lateral left join to the query. * * @param \Closure|\Illuminate\Database\Query\Builder|\Illuminate\Database\Eloquent\Builder<*>|string $query - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function leftJoinLateral($query, $as) { @@ -25445,8 +26025,8 @@ namespace { * @param \Closure|\Illuminate\Contracts\Database\Query\Expression|string $first * @param string|null $operator * @param \Illuminate\Contracts\Database\Query\Expression|string|null $second - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function leftJoin($table, $first, $operator = null, $second = null) { @@ -25461,8 +26041,8 @@ namespace { * @param \Closure|\Illuminate\Contracts\Database\Query\Expression|string $first * @param string $operator * @param \Illuminate\Contracts\Database\Query\Expression|string|null $second - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function leftJoinWhere($table, $first, $operator, $second) { @@ -25478,8 +26058,8 @@ namespace { * @param \Closure|\Illuminate\Contracts\Database\Query\Expression|string $first * @param string|null $operator * @param \Illuminate\Contracts\Database\Query\Expression|string|null $second - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function leftJoinSub($query, $as, $first, $operator = null, $second = null) { @@ -25494,8 +26074,8 @@ namespace { * @param \Closure|string $first * @param string|null $operator * @param \Illuminate\Contracts\Database\Query\Expression|string|null $second - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function rightJoin($table, $first, $operator = null, $second = null) { @@ -25510,8 +26090,8 @@ namespace { * @param \Closure|\Illuminate\Contracts\Database\Query\Expression|string $first * @param string $operator * @param \Illuminate\Contracts\Database\Query\Expression|string $second - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function rightJoinWhere($table, $first, $operator, $second) { @@ -25527,8 +26107,8 @@ namespace { * @param \Closure|\Illuminate\Contracts\Database\Query\Expression|string $first * @param string|null $operator * @param \Illuminate\Contracts\Database\Query\Expression|string|null $second - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function rightJoinSub($query, $as, $first, $operator = null, $second = null) { @@ -25543,8 +26123,8 @@ namespace { * @param \Closure|\Illuminate\Contracts\Database\Query\Expression|string|null $first * @param string|null $operator * @param \Illuminate\Contracts\Database\Query\Expression|string|null $second - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function crossJoin($table, $first = null, $operator = null, $second = null) { @@ -25557,8 +26137,8 @@ namespace { * * @param \Closure|\Illuminate\Database\Query\Builder|\Illuminate\Database\Eloquent\Builder<*>|string $query * @param string $as - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function crossJoinSub($query, $as) { @@ -25571,8 +26151,8 @@ namespace { * * @param array $wheres * @param array $bindings - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function mergeWheres($wheres, $bindings) { @@ -25586,9 +26166,9 @@ namespace { * @param string $value * @param string $operator * @param bool $useDefault - * @return array + * @return array * @throws \InvalidArgumentException - * @static + * @static */ public static function prepareValueAndOperator($value, $operator, $useDefault = false) { @@ -25603,8 +26183,8 @@ namespace { * @param string|null $operator * @param string|null $second * @param string|null $boolean - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereColumn($first, $operator = null, $second = null, $boolean = 'and') { @@ -25618,8 +26198,8 @@ namespace { * @param \Illuminate\Contracts\Database\Query\Expression|string|array $first * @param string|null $operator * @param string|null $second - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereColumn($first, $operator = null, $second = null) { @@ -25633,8 +26213,8 @@ namespace { * @param string $sql * @param mixed $bindings * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereRaw($sql, $bindings = [], $boolean = 'and') { @@ -25647,8 +26227,8 @@ namespace { * * @param string $sql * @param mixed $bindings - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereRaw($sql, $bindings = []) { @@ -25664,8 +26244,8 @@ namespace { * @param bool $caseSensitive * @param string $boolean * @param bool $not - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereLike($column, $value, $caseSensitive = false, $boolean = 'and', $not = false) { @@ -25679,8 +26259,8 @@ namespace { * @param \Illuminate\Contracts\Database\Query\Expression|string $column * @param string $value * @param bool $caseSensitive - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereLike($column, $value, $caseSensitive = false) { @@ -25695,8 +26275,8 @@ namespace { * @param string $value * @param bool $caseSensitive * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereNotLike($column, $value, $caseSensitive = false, $boolean = 'and') { @@ -25710,8 +26290,8 @@ namespace { * @param \Illuminate\Contracts\Database\Query\Expression|string $column * @param string $value * @param bool $caseSensitive - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereNotLike($column, $value, $caseSensitive = false) { @@ -25726,8 +26306,8 @@ namespace { * @param mixed $values * @param string $boolean * @param bool $not - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereIn($column, $values, $boolean = 'and', $not = false) { @@ -25740,8 +26320,8 @@ namespace { * * @param \Illuminate\Contracts\Database\Query\Expression|string $column * @param mixed $values - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereIn($column, $values) { @@ -25755,8 +26335,8 @@ namespace { * @param \Illuminate\Contracts\Database\Query\Expression|string $column * @param mixed $values * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereNotIn($column, $values, $boolean = 'and') { @@ -25769,8 +26349,8 @@ namespace { * * @param \Illuminate\Contracts\Database\Query\Expression|string $column * @param mixed $values - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereNotIn($column, $values) { @@ -25785,8 +26365,8 @@ namespace { * @param \Illuminate\Contracts\Support\Arrayable|array $values * @param string $boolean * @param bool $not - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereIntegerInRaw($column, $values, $boolean = 'and', $not = false) { @@ -25799,8 +26379,8 @@ namespace { * * @param string $column * @param \Illuminate\Contracts\Support\Arrayable|array $values - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereIntegerInRaw($column, $values) { @@ -25814,8 +26394,8 @@ namespace { * @param string $column * @param \Illuminate\Contracts\Support\Arrayable|array $values * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereIntegerNotInRaw($column, $values, $boolean = 'and') { @@ -25828,8 +26408,8 @@ namespace { * * @param string $column * @param \Illuminate\Contracts\Support\Arrayable|array $values - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereIntegerNotInRaw($column, $values) { @@ -25843,8 +26423,8 @@ namespace { * @param string|array|\Illuminate\Contracts\Database\Query\Expression $columns * @param string $boolean * @param bool $not - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereNull($columns, $boolean = 'and', $not = false) { @@ -25856,8 +26436,8 @@ namespace { * Add an "or where null" clause to the query. * * @param string|array|\Illuminate\Contracts\Database\Query\Expression $column - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereNull($column) { @@ -25870,8 +26450,8 @@ namespace { * * @param string|array|\Illuminate\Contracts\Database\Query\Expression $columns * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereNotNull($columns, $boolean = 'and') { @@ -25885,8 +26465,8 @@ namespace { * @param \Illuminate\Contracts\Database\Query\Expression|string $column * @param string $boolean * @param bool $not - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereBetween($column, $values, $boolean = 'and', $not = false) { @@ -25900,8 +26480,8 @@ namespace { * @param \Illuminate\Contracts\Database\Query\Expression|string $column * @param string $boolean * @param bool $not - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereBetweenColumns($column, $values, $boolean = 'and', $not = false) { @@ -25913,8 +26493,8 @@ namespace { * Add an or where between statement to the query. * * @param \Illuminate\Contracts\Database\Query\Expression|string $column - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereBetween($column, $values) { @@ -25926,8 +26506,8 @@ namespace { * Add an or where between statement using columns to the query. * * @param \Illuminate\Contracts\Database\Query\Expression|string $column - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereBetweenColumns($column, $values) { @@ -25940,8 +26520,8 @@ namespace { * * @param \Illuminate\Contracts\Database\Query\Expression|string $column * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereNotBetween($column, $values, $boolean = 'and') { @@ -25954,8 +26534,8 @@ namespace { * * @param \Illuminate\Contracts\Database\Query\Expression|string $column * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereNotBetweenColumns($column, $values, $boolean = 'and') { @@ -25967,8 +26547,8 @@ namespace { * Add an or where not between statement to the query. * * @param \Illuminate\Contracts\Database\Query\Expression|string $column - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereNotBetween($column, $values) { @@ -25980,8 +26560,8 @@ namespace { * Add an or where not between statement using columns to the query. * * @param \Illuminate\Contracts\Database\Query\Expression|string $column - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereNotBetweenColumns($column, $values) { @@ -25993,8 +26573,8 @@ namespace { * Add an "or where not null" clause to the query. * * @param \Illuminate\Contracts\Database\Query\Expression|string $column - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereNotNull($column) { @@ -26009,8 +26589,8 @@ namespace { * @param \DateTimeInterface|string|null $operator * @param \DateTimeInterface|string|null $value * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereDate($column, $operator, $value = null, $boolean = 'and') { @@ -26024,8 +26604,8 @@ namespace { * @param \Illuminate\Contracts\Database\Query\Expression|string $column * @param \DateTimeInterface|string|null $operator * @param \DateTimeInterface|string|null $value - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereDate($column, $operator, $value = null) { @@ -26040,8 +26620,8 @@ namespace { * @param \DateTimeInterface|string|null $operator * @param \DateTimeInterface|string|null $value * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereTime($column, $operator, $value = null, $boolean = 'and') { @@ -26055,8 +26635,8 @@ namespace { * @param \Illuminate\Contracts\Database\Query\Expression|string $column * @param \DateTimeInterface|string|null $operator * @param \DateTimeInterface|string|null $value - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereTime($column, $operator, $value = null) { @@ -26071,8 +26651,8 @@ namespace { * @param \DateTimeInterface|string|int|null $operator * @param \DateTimeInterface|string|int|null $value * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereDay($column, $operator, $value = null, $boolean = 'and') { @@ -26086,8 +26666,8 @@ namespace { * @param \Illuminate\Contracts\Database\Query\Expression|string $column * @param \DateTimeInterface|string|int|null $operator * @param \DateTimeInterface|string|int|null $value - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereDay($column, $operator, $value = null) { @@ -26102,8 +26682,8 @@ namespace { * @param \DateTimeInterface|string|int|null $operator * @param \DateTimeInterface|string|int|null $value * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereMonth($column, $operator, $value = null, $boolean = 'and') { @@ -26117,8 +26697,8 @@ namespace { * @param \Illuminate\Contracts\Database\Query\Expression|string $column * @param \DateTimeInterface|string|int|null $operator * @param \DateTimeInterface|string|int|null $value - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereMonth($column, $operator, $value = null) { @@ -26133,8 +26713,8 @@ namespace { * @param \DateTimeInterface|string|int|null $operator * @param \DateTimeInterface|string|int|null $value * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereYear($column, $operator, $value = null, $boolean = 'and') { @@ -26148,8 +26728,8 @@ namespace { * @param \Illuminate\Contracts\Database\Query\Expression|string $column * @param \DateTimeInterface|string|int|null $operator * @param \DateTimeInterface|string|int|null $value - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereYear($column, $operator, $value = null) { @@ -26161,8 +26741,8 @@ namespace { * Add a nested where statement to the query. * * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereNested($callback, $boolean = 'and') { @@ -26173,8 +26753,8 @@ namespace { /** * Create a new query instance for nested where condition. * - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function forNestedWhere() { @@ -26187,8 +26767,8 @@ namespace { * * @param \Illuminate\Database\Query\Builder $query * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function addNestedWhereQuery($query, $boolean = 'and') { @@ -26202,8 +26782,8 @@ namespace { * @param \Closure|\Illuminate\Database\Query\Builder|\Illuminate\Database\Eloquent\Builder<*> $callback * @param string $boolean * @param bool $not - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereExists($callback, $boolean = 'and', $not = false) { @@ -26216,8 +26796,8 @@ namespace { * * @param \Closure|\Illuminate\Database\Query\Builder|\Illuminate\Database\Eloquent\Builder<*> $callback * @param bool $not - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereExists($callback, $not = false) { @@ -26230,8 +26810,8 @@ namespace { * * @param \Closure|\Illuminate\Database\Query\Builder|\Illuminate\Database\Eloquent\Builder<*> $callback * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereNotExists($callback, $boolean = 'and') { @@ -26243,8 +26823,8 @@ namespace { * Add a where not exists clause to the query. * * @param \Closure|\Illuminate\Database\Query\Builder|\Illuminate\Database\Eloquent\Builder<*> $callback - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereNotExists($callback) { @@ -26257,8 +26837,8 @@ namespace { * * @param string $boolean * @param bool $not - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function addWhereExistsQuery($query, $boolean = 'and', $not = false) { @@ -26273,9 +26853,9 @@ namespace { * @param string $operator * @param array $values * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder + * @return \Illuminate\Database\Eloquent\Builder * @throws \InvalidArgumentException - * @static + * @static */ public static function whereRowValues($columns, $operator, $values, $boolean = 'and') { @@ -26289,8 +26869,8 @@ namespace { * @param array $columns * @param string $operator * @param array $values - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereRowValues($columns, $operator, $values) { @@ -26305,8 +26885,8 @@ namespace { * @param mixed $value * @param string $boolean * @param bool $not - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereJsonContains($column, $value, $boolean = 'and', $not = false) { @@ -26319,8 +26899,8 @@ namespace { * * @param string $column * @param mixed $value - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereJsonContains($column, $value) { @@ -26334,8 +26914,8 @@ namespace { * @param string $column * @param mixed $value * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereJsonDoesntContain($column, $value, $boolean = 'and') { @@ -26348,8 +26928,8 @@ namespace { * * @param string $column * @param mixed $value - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereJsonDoesntContain($column, $value) { @@ -26364,8 +26944,8 @@ namespace { * @param mixed $value * @param string $boolean * @param bool $not - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereJsonOverlaps($column, $value, $boolean = 'and', $not = false) { @@ -26378,8 +26958,8 @@ namespace { * * @param string $column * @param mixed $value - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereJsonOverlaps($column, $value) { @@ -26393,8 +26973,8 @@ namespace { * @param string $column * @param mixed $value * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereJsonDoesntOverlap($column, $value, $boolean = 'and') { @@ -26407,8 +26987,8 @@ namespace { * * @param string $column * @param mixed $value - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereJsonDoesntOverlap($column, $value) { @@ -26422,8 +27002,8 @@ namespace { * @param string $column * @param string $boolean * @param bool $not - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereJsonContainsKey($column, $boolean = 'and', $not = false) { @@ -26435,8 +27015,8 @@ namespace { * Add an "or" clause that determines if a JSON path exists to the query. * * @param string $column - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereJsonContainsKey($column) { @@ -26449,8 +27029,8 @@ namespace { * * @param string $column * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereJsonDoesntContainKey($column, $boolean = 'and') { @@ -26462,8 +27042,8 @@ namespace { * Add an "or" clause that determines if a JSON path does not exist to the query. * * @param string $column - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereJsonDoesntContainKey($column) { @@ -26478,8 +27058,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 whereJsonLength($column, $operator, $value = null, $boolean = 'and') { @@ -26493,8 +27073,8 @@ namespace { * @param string $column * @param mixed $operator * @param mixed $value - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereJsonLength($column, $operator, $value = null) { @@ -26507,8 +27087,8 @@ namespace { * * @param string $method * @param array $parameters - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function dynamicWhere($method, $parameters) { @@ -26522,8 +27102,8 @@ namespace { * @param string|string[] $columns * @param string $value * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereFullText($columns, $value, $options = [], $boolean = 'and') { @@ -26536,8 +27116,8 @@ namespace { * * @param string|string[] $columns * @param string $value - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereFullText($columns, $value, $options = []) { @@ -26552,8 +27132,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 whereAll($columns, $operator = null, $value = null, $boolean = 'and') { @@ -26567,8 +27147,8 @@ namespace { * @param \Illuminate\Contracts\Database\Query\Expression[]|\Closure[]|string[] $columns * @param mixed $operator * @param mixed $value - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereAll($columns, $operator = null, $value = null) { @@ -26583,8 +27163,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 whereAny($columns, $operator = null, $value = null, $boolean = 'and') { @@ -26598,8 +27178,8 @@ namespace { * @param \Illuminate\Contracts\Database\Query\Expression[]|\Closure[]|string[] $columns * @param mixed $operator * @param mixed $value - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereAny($columns, $operator = null, $value = null) { @@ -26614,8 +27194,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 whereNone($columns, $operator = null, $value = null, $boolean = 'and') { @@ -26629,8 +27209,8 @@ namespace { * @param \Illuminate\Contracts\Database\Query\Expression[]|\Closure[]|string[] $columns * @param mixed $operator * @param mixed $value - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereNone($columns, $operator = null, $value = null) { @@ -26642,8 +27222,8 @@ namespace { * Add a "group by" clause to the query. * * @param array|\Illuminate\Contracts\Database\Query\Expression|string $groups - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function groupBy(...$groups) { @@ -26655,8 +27235,8 @@ namespace { * Add a raw groupBy clause to the query. * * @param string $sql - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function groupByRaw($sql, $bindings = []) { @@ -26671,8 +27251,8 @@ namespace { * @param string|int|float|null $operator * @param string|int|float|null $value * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function having($column, $operator = null, $value = null, $boolean = 'and') { @@ -26686,8 +27266,8 @@ namespace { * @param \Illuminate\Contracts\Database\Query\Expression|\Closure|string $column * @param string|int|float|null $operator * @param string|int|float|null $value - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orHaving($column, $operator = null, $value = null) { @@ -26699,8 +27279,8 @@ namespace { * Add a nested having statement to the query. * * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function havingNested($callback, $boolean = 'and') { @@ -26713,8 +27293,8 @@ namespace { * * @param \Illuminate\Database\Query\Builder $query * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function addNestedHavingQuery($query, $boolean = 'and') { @@ -26728,8 +27308,8 @@ namespace { * @param array|string $columns * @param string $boolean * @param bool $not - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function havingNull($columns, $boolean = 'and', $not = false) { @@ -26741,8 +27321,8 @@ namespace { * Add an "or having null" clause to the query. * * @param string $column - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orHavingNull($column) { @@ -26755,8 +27335,8 @@ namespace { * * @param array|string $columns * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function havingNotNull($columns, $boolean = 'and') { @@ -26768,8 +27348,8 @@ namespace { * Add an "or having not null" clause to the query. * * @param string $column - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orHavingNotNull($column) { @@ -26783,8 +27363,8 @@ namespace { * @param string $column * @param string $boolean * @param bool $not - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function havingBetween($column, $values, $boolean = 'and', $not = false) { @@ -26797,8 +27377,8 @@ namespace { * * @param string $sql * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function havingRaw($sql, $bindings = [], $boolean = 'and') { @@ -26810,8 +27390,8 @@ namespace { * Add a raw or having clause to the query. * * @param string $sql - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orHavingRaw($sql, $bindings = []) { @@ -26824,9 +27404,9 @@ namespace { * * @param \Closure|\Illuminate\Database\Query\Builder|\Illuminate\Database\Eloquent\Builder<*>|\Illuminate\Contracts\Database\Query\Expression|string $column * @param string $direction - * @return \Illuminate\Database\Eloquent\Builder + * @return \Illuminate\Database\Eloquent\Builder * @throws \InvalidArgumentException - * @static + * @static */ public static function orderBy($column, $direction = 'asc') { @@ -26838,8 +27418,8 @@ namespace { * Add a descending "order by" clause to the query. * * @param \Closure|\Illuminate\Database\Query\Builder|\Illuminate\Database\Eloquent\Builder<*>|\Illuminate\Contracts\Database\Query\Expression|string $column - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orderByDesc($column) { @@ -26851,8 +27431,8 @@ namespace { * Put the query's results in random order. * * @param string|int $seed - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function inRandomOrder($seed = '') { @@ -26865,8 +27445,8 @@ namespace { * * @param string $sql * @param array $bindings - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orderByRaw($sql, $bindings = []) { @@ -26878,8 +27458,8 @@ namespace { * Alias to set the "offset" value of the query. * * @param int $value - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function skip($value) { @@ -26891,8 +27471,8 @@ namespace { * Set the "offset" value of the query. * * @param int $value - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function offset($value) { @@ -26904,8 +27484,8 @@ namespace { * Alias to set the "limit" value of the query. * * @param int $value - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function take($value) { @@ -26917,8 +27497,8 @@ namespace { * Set the "limit" value of the query. * * @param int $value - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function limit($value) { @@ -26931,8 +27511,8 @@ namespace { * * @param int $value * @param string $column - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function groupLimit($value, $column) { @@ -26945,8 +27525,8 @@ namespace { * * @param int $page * @param int $perPage - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function forPage($page, $perPage = 15) { @@ -26960,8 +27540,8 @@ namespace { * @param int $perPage * @param int|null $lastId * @param string $column - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function forPageBeforeId($perPage = 15, $lastId = 0, $column = 'id') { @@ -26975,8 +27555,8 @@ namespace { * @param int $perPage * @param int|null $lastId * @param string $column - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function forPageAfterId($perPage = 15, $lastId = 0, $column = 'id') { @@ -26989,8 +27569,8 @@ namespace { * * @param \Closure|\Illuminate\Database\Query\Builder|\Illuminate\Contracts\Database\Query\Expression|string|null $column * @param string $direction - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function reorder($column = null, $direction = 'asc') { @@ -27003,8 +27583,8 @@ namespace { * * @param \Closure|\Illuminate\Database\Query\Builder|\Illuminate\Database\Eloquent\Builder<*> $query * @param bool $all - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function union($query, $all = false) { @@ -27016,8 +27596,8 @@ namespace { * Add a union all statement to the query. * * @param \Closure|\Illuminate\Database\Query\Builder|\Illuminate\Database\Eloquent\Builder<*> $query - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function unionAll($query) { @@ -27029,8 +27609,8 @@ namespace { * Lock the selected rows in the table. * * @param string|bool $value - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function lock($value = true) { @@ -27041,8 +27621,8 @@ namespace { /** * Lock the selected rows in the table for updating. * - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function lockForUpdate() { @@ -27053,8 +27633,8 @@ namespace { /** * Share lock the selected rows in the table. * - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function sharedLock() { @@ -27065,8 +27645,8 @@ namespace { /** * Register a closure to be invoked before the query is executed. * - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function beforeQuery($callback) { @@ -27077,8 +27657,8 @@ namespace { /** * Invoke the "before query" modification callbacks. * - * @return void - * @static + * @return void + * @static */ public static function applyBeforeQueryCallbacks() { @@ -27089,8 +27669,8 @@ namespace { /** * Get the SQL representation of the query. * - * @return string - * @static + * @return string + * @static */ public static function toSql() { @@ -27101,8 +27681,8 @@ namespace { /** * Get the raw SQL representation of the query with embedded bindings. * - * @return string - * @static + * @return string + * @static */ public static function toRawSql() { @@ -27113,8 +27693,8 @@ namespace { /** * Get a single expression value from the first result of a query. * - * @return mixed - * @static + * @return mixed + * @static */ public static function rawValue($expression, $bindings = []) { @@ -27126,8 +27706,8 @@ namespace { * Get the count of the total records for the paginator. * * @param array $columns - * @return int - * @static + * @return int + * @static */ public static function getCountForPagination($columns = []) { @@ -27140,8 +27720,8 @@ namespace { * * @param string $column * @param string $glue - * @return string - * @static + * @return string + * @static */ public static function implode($column, $glue = '') { @@ -27152,8 +27732,8 @@ namespace { /** * Determine if any rows exist for the current query. * - * @return bool - * @static + * @return bool + * @static */ public static function exists() { @@ -27164,8 +27744,8 @@ namespace { /** * Determine if no rows exist for the current query. * - * @return bool - * @static + * @return bool + * @static */ public static function doesntExist() { @@ -27176,8 +27756,8 @@ namespace { /** * Execute the given callback if no rows exist for the current query. * - * @return mixed - * @static + * @return mixed + * @static */ public static function existsOr($callback) { @@ -27188,8 +27768,8 @@ namespace { /** * Execute the given callback if rows exist for the current query. * - * @return mixed - * @static + * @return mixed + * @static */ public static function doesntExistOr($callback) { @@ -27201,8 +27781,8 @@ namespace { * Retrieve the "count" result of the query. * * @param \Illuminate\Contracts\Database\Query\Expression|string $columns - * @return int - * @static + * @return int + * @static */ public static function count($columns = '*') { @@ -27214,8 +27794,8 @@ namespace { * Retrieve the minimum value of a given column. * * @param \Illuminate\Contracts\Database\Query\Expression|string $column - * @return mixed - * @static + * @return mixed + * @static */ public static function min($column) { @@ -27227,8 +27807,8 @@ namespace { * Retrieve the maximum value of a given column. * * @param \Illuminate\Contracts\Database\Query\Expression|string $column - * @return mixed - * @static + * @return mixed + * @static */ public static function max($column) { @@ -27240,8 +27820,8 @@ namespace { * Retrieve the sum of the values of a given column. * * @param \Illuminate\Contracts\Database\Query\Expression|string $column - * @return mixed - * @static + * @return mixed + * @static */ public static function sum($column) { @@ -27253,8 +27833,8 @@ namespace { * Retrieve the average of the values of a given column. * * @param \Illuminate\Contracts\Database\Query\Expression|string $column - * @return mixed - * @static + * @return mixed + * @static */ public static function avg($column) { @@ -27266,8 +27846,8 @@ namespace { * Alias for the "avg" method. * * @param \Illuminate\Contracts\Database\Query\Expression|string $column - * @return mixed - * @static + * @return mixed + * @static */ public static function average($column) { @@ -27280,8 +27860,8 @@ namespace { * * @param string $function * @param array $columns - * @return mixed - * @static + * @return mixed + * @static */ public static function aggregate($function, $columns = []) { @@ -27294,8 +27874,8 @@ namespace { * * @param string $function * @param array $columns - * @return float|int - * @static + * @return float|int + * @static */ public static function numericAggregate($function, $columns = []) { @@ -27306,8 +27886,8 @@ namespace { /** * Insert new records into the database. * - * @return bool - * @static + * @return bool + * @static */ public static function insert($values) { @@ -27318,8 +27898,8 @@ namespace { /** * Insert new records into the database while ignoring errors. * - * @return int - * @static + * @return int + * @static */ public static function insertOrIgnore($values) { @@ -27331,8 +27911,8 @@ namespace { * Insert a new record and get the value of the primary key. * * @param string|null $sequence - * @return int - * @static + * @return int + * @static */ public static function insertGetId($values, $sequence = null) { @@ -27344,8 +27924,8 @@ namespace { * Insert new records into the table using a subquery. * * @param \Closure|\Illuminate\Database\Query\Builder|\Illuminate\Database\Eloquent\Builder<*>|string $query - * @return int - * @static + * @return int + * @static */ public static function insertUsing($columns, $query) { @@ -27357,8 +27937,8 @@ namespace { * Insert new records into the table using a subquery while ignoring errors. * * @param \Closure|\Illuminate\Database\Query\Builder|\Illuminate\Database\Eloquent\Builder<*>|string $query - * @return int - * @static + * @return int + * @static */ public static function insertOrIgnoreUsing($columns, $query) { @@ -27369,8 +27949,8 @@ namespace { /** * Update records in a PostgreSQL database using the update from syntax. * - * @return int - * @static + * @return int + * @static */ public static function updateFrom($values) { @@ -27381,8 +27961,8 @@ namespace { /** * Insert or update a record matching the attributes, and fill it with values. * - * @return bool - * @static + * @return bool + * @static */ public static function updateOrInsert($attributes, $values = []) { @@ -27395,9 +27975,9 @@ namespace { * * @param array $columns * @param array $extra - * @return int + * @return int * @throws \InvalidArgumentException - * @static + * @static */ public static function incrementEach($columns, $extra = []) { @@ -27410,9 +27990,9 @@ namespace { * * @param array $columns * @param array $extra - * @return int + * @return int * @throws \InvalidArgumentException - * @static + * @static */ public static function decrementEach($columns, $extra = []) { @@ -27423,8 +28003,8 @@ namespace { /** * Run a truncate statement on the table. * - * @return void - * @static + * @return void + * @static */ public static function truncate() { @@ -27435,8 +28015,8 @@ namespace { /** * Get all of the query builder's columns in a text-only array with all expressions evaluated. * - * @return array - * @static + * @return array + * @static */ public static function getColumns() { @@ -27448,8 +28028,8 @@ namespace { * Create a raw database expression. * * @param mixed $value - * @return \Illuminate\Contracts\Database\Query\Expression - * @static + * @return \Illuminate\Contracts\Database\Query\Expression + * @static */ public static function raw($value) { @@ -27460,8 +28040,8 @@ namespace { /** * Get the current query value bindings in a flattened array. * - * @return array - * @static + * @return array + * @static */ public static function getBindings() { @@ -27472,8 +28052,8 @@ namespace { /** * Get the raw array of bindings. * - * @return array - * @static + * @return array + * @static */ public static function getRawBindings() { @@ -27485,9 +28065,9 @@ namespace { * Set the bindings on the query builder. * * @param string $type - * @return \Illuminate\Database\Eloquent\Builder + * @return \Illuminate\Database\Eloquent\Builder * @throws \InvalidArgumentException - * @static + * @static */ public static function setBindings($bindings, $type = 'where') { @@ -27500,9 +28080,9 @@ namespace { * * @param mixed $value * @param string $type - * @return \Illuminate\Database\Eloquent\Builder + * @return \Illuminate\Database\Eloquent\Builder * @throws \InvalidArgumentException - * @static + * @static */ public static function addBinding($value, $type = 'where') { @@ -27514,8 +28094,8 @@ namespace { * Cast the given binding value. * * @param mixed $value - * @return mixed - * @static + * @return mixed + * @static */ public static function castBinding($value) { @@ -27526,8 +28106,8 @@ namespace { /** * Merge an array of bindings into our bindings. * - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function mergeBindings($query) { @@ -27538,8 +28118,8 @@ namespace { /** * Remove all of the expressions from a list of bindings. * - * @return array - * @static + * @return array + * @static */ public static function cleanBindings($bindings) { @@ -27550,8 +28130,8 @@ namespace { /** * Get the database query processor instance. * - * @return \Illuminate\Database\Query\Processors\Processor - * @static + * @return \Illuminate\Database\Query\Processors\Processor + * @static */ public static function getProcessor() { @@ -27562,8 +28142,8 @@ namespace { /** * Get the query grammar instance. * - * @return \Illuminate\Database\Query\Grammars\Grammar - * @static + * @return \Illuminate\Database\Query\Grammars\Grammar + * @static */ public static function getGrammar() { @@ -27574,8 +28154,8 @@ namespace { /** * Use the "write" PDO connection when executing the query. * - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function useWritePdo() { @@ -27586,8 +28166,8 @@ namespace { /** * Clone the query without the given properties. * - * @return static - * @static + * @return static + * @static */ public static function cloneWithout($properties) { @@ -27598,8 +28178,8 @@ namespace { /** * Clone the query without the given bindings. * - * @return static - * @static + * @return static + * @static */ public static function cloneWithoutBindings($except) { @@ -27611,8 +28191,8 @@ namespace { * Dump the current SQL and bindings. * * @param mixed $args - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function dump(...$args) { @@ -27623,8 +28203,8 @@ namespace { /** * Dump the raw current SQL with embedded bindings. * - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function dumpRawSql() { @@ -27635,8 +28215,8 @@ namespace { /** * Die and dump the current SQL and bindings. * - * @return never - * @static + * @return never + * @static */ public static function dd() { @@ -27647,8 +28227,8 @@ namespace { /** * Die and dump the current SQL with embedded bindings. * - * @return never - * @static + * @return never + * @static */ public static function ddRawSql() { @@ -27660,8 +28240,8 @@ namespace { * Add a where clause to determine if a "date" column is in the past to the query. * * @param array|string $columns - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function wherePast($columns) { @@ -27673,8 +28253,8 @@ namespace { * Add a where clause to determine if a "date" column is in the past or now to the query. * * @param array|string $columns - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereNowOrPast($columns) { @@ -27686,8 +28266,8 @@ namespace { * Add an "or where" clause to determine if a "date" column is in the past to the query. * * @param array|string $columns - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWherePast($columns) { @@ -27699,8 +28279,8 @@ namespace { * Add a where clause to determine if a "date" column is in the past or now to the query. * * @param array|string $columns - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereNowOrPast($columns) { @@ -27712,8 +28292,8 @@ namespace { * Add a where clause to determine if a "date" column is in the future to the query. * * @param array|string $columns - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereFuture($columns) { @@ -27725,8 +28305,8 @@ namespace { * Add a where clause to determine if a "date" column is in the future or now to the query. * * @param array|string $columns - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereNowOrFuture($columns) { @@ -27738,8 +28318,8 @@ namespace { * Add an "or where" clause to determine if a "date" column is in the future to the query. * * @param array|string $columns - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereFuture($columns) { @@ -27751,8 +28331,8 @@ namespace { * Add an "or where" clause to determine if a "date" column is in the future or now to the query. * * @param array|string $columns - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereNowOrFuture($columns) { @@ -27765,8 +28345,8 @@ namespace { * * @param array|string $columns * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereToday($columns, $boolean = 'and') { @@ -27778,8 +28358,8 @@ namespace { * Add a "where date" clause to determine if a "date" column is before today. * * @param array|string $columns - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereBeforeToday($columns) { @@ -27791,8 +28371,8 @@ namespace { * Add a "where date" clause to determine if a "date" column is today or before to the query. * * @param array|string $columns - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereTodayOrBefore($columns) { @@ -27804,8 +28384,8 @@ namespace { * Add a "where date" clause to determine if a "date" column is after today. * * @param array|string $columns - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereAfterToday($columns) { @@ -27817,8 +28397,8 @@ namespace { * Add a "where date" clause to determine if a "date" column is today or after to the query. * * @param array|string $columns - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereTodayOrAfter($columns) { @@ -27830,8 +28410,8 @@ namespace { * Add an "or where date" clause to determine if a "date" column is today to the query. * * @param array|string $columns - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereToday($columns) { @@ -27843,8 +28423,8 @@ namespace { * Add an "or where date" clause to determine if a "date" column is before today. * * @param array|string $columns - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereBeforeToday($columns) { @@ -27857,8 +28437,8 @@ namespace { * * @param array|string $columns * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereTodayOrBefore($columns) { @@ -27871,8 +28451,8 @@ namespace { * * @param array|string $columns * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereAfterToday($columns) { @@ -27885,8 +28465,8 @@ namespace { * * @param array|string $columns * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereTodayOrAfter($columns) { @@ -27897,8 +28477,8 @@ namespace { /** * Explains the query. * - * @return \Illuminate\Support\Collection - * @static + * @return \Illuminate\Support\Collection + * @static */ public static function explain() { @@ -27912,8 +28492,8 @@ namespace { * @param string $name * @param object|callable $macro * @param-closure-this static $macro - * @return void - * @static + * @return void + * @static */ public static function macro($name, $macro) { @@ -27925,9 +28505,9 @@ namespace { * * @param object $mixin * @param bool $replace - * @return void + * @return void * @throws \ReflectionException - * @static + * @static */ public static function mixin($mixin, $replace = true) { @@ -27937,8 +28517,8 @@ namespace { /** * Flush the existing macros. * - * @return void - * @static + * @return void + * @static */ public static function flushMacros() { @@ -27950,9 +28530,9 @@ namespace { * * @param string $method * @param array $parameters - * @return mixed + * @return mixed * @throws \BadMethodCallException - * @static + * @static */ public static function macroCall($method, $parameters) { @@ -27989,10 +28569,13 @@ namespace { class DataTables extends \Yajra\DataTables\Facades\DataTables {} class Yard extends \App\Services\Facade\Yard {} class DHL extends \Acme\Dhl\Facades\DHL {} + class Form extends \Alban\LaravelCollectiveSpatieHtmlParser\FormFacade {} + class Html extends \Spatie\Html\Facades\Html {} class Debugbar extends \Barryvdh\Debugbar\Facades\Debugbar {} class PDF extends \Barryvdh\DomPDF\Facade\Pdf {} class Pdf extends \Barryvdh\DomPDF\Facade\Pdf {} class Flash extends \Laracasts\Flash\Flash {} + class Horizon extends \Laravel\Horizon\Horizon {} class Flare extends \Spatie\LaravelIgnition\Facades\Flare {} } diff --git a/_ide_helper_models.php b/_ide_helper_models.php index 8974ccd..d8470b8 100644 --- a/_ide_helper_models.php +++ b/_ide_helper_models.php @@ -187,6 +187,44 @@ namespace App\Models{ class CountryPrice extends \Eloquent {} } +namespace App\Models{ +/** + * + * + * @property int $id + * @property string|null $name + * @property string $email + * @property int|null $shopping_user_id + * @property int|null $member_id + * @property int|null $number + * @property string|null $language + * @property string|null $mode + * @property string|null $remember_token + * @property \Illuminate\Support\Carbon|null $created_at + * @property \Illuminate\Support\Carbon|null $updated_at + * @property-read User|null $member + * @property-read \Illuminate\Notifications\DatabaseNotificationCollection $notifications + * @property-read int|null $notifications_count + * @property-read \App\Models\ShoppingUser|null $shoppingUser + * @method static \Illuminate\Database\Eloquent\Builder|Customer newModelQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Customer newQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Customer query() + * @method static \Illuminate\Database\Eloquent\Builder|Customer whereCreatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Customer whereEmail($value) + * @method static \Illuminate\Database\Eloquent\Builder|Customer whereId($value) + * @method static \Illuminate\Database\Eloquent\Builder|Customer whereLanguage($value) + * @method static \Illuminate\Database\Eloquent\Builder|Customer whereMemberId($value) + * @method static \Illuminate\Database\Eloquent\Builder|Customer whereMode($value) + * @method static \Illuminate\Database\Eloquent\Builder|Customer whereName($value) + * @method static \Illuminate\Database\Eloquent\Builder|Customer whereNumber($value) + * @method static \Illuminate\Database\Eloquent\Builder|Customer whereRememberToken($value) + * @method static \Illuminate\Database\Eloquent\Builder|Customer whereShoppingUserId($value) + * @method static \Illuminate\Database\Eloquent\Builder|Customer whereUpdatedAt($value) + * @mixin \Eloquent + */ + class Customer extends \Eloquent {} +} + namespace App\Models{ /** * Class DbipLookup @@ -374,6 +412,111 @@ namespace App\Models{ class DcTag extends \Eloquent {} } +namespace App\Models{ +/** + * DHL Shipment Model + * + * Represents a DHL shipment for a shopping order, including both outbound and return shipments. + * + * @property int $id + * @property int $shopping_order_id + * @property string|null $shipment_number DHL shipment number + * @property string|null $tracking_number DHL tracking number + * @property string $type Type: 'outbound' or 'return' + * @property int|null $related_shipment_id For returns: reference to original shipment + * @property float $weight Package weight in kg + * @property int|null $length Package length in cm + * @property int|null $width Package width in cm + * @property int|null $height Package height in cm + * @property string $product_code DHL product code (e.g., V01PAK) + * @property array|null $services Additional DHL services + * @property string|null $label_path Path to generated label file + * @property string $label_format Label format (PDF or ZPL) + * @property bool $label_printed Whether label has been printed + * @property string $status Shipment status + * @property string|null $tracking_status Current tracking status from DHL + * @property string|null $tracking_details Detailed tracking information (JSON) + * @property Carbon|null $last_tracked_at Last tracking update + * @property string $recipient_name Recipient name + * @property string|null $recipient_company Recipient company + * @property string $recipient_street Recipient street + * @property string $recipient_street_number Recipient street number + * @property string $recipient_postal_code Recipient postal code + * @property string $recipient_city Recipient city + * @property string|null $recipient_state Recipient state + * @property string $recipient_country Recipient country code + * @property string|null $recipient_email Recipient email + * @property string|null $recipient_phone Recipient phone + * @property array|null $api_request_data API request data for debugging + * @property array|null $api_response_data API response data for debugging + * @property string|null $api_errors API error messages + * @property float|null $shipping_cost Shipping cost + * @property string $currency Currency code + * @property string|null $notes Internal notes + * @property array|null $metadata Additional metadata + * @property Carbon|null $shipped_at When the package was shipped + * @property Carbon|null $delivered_at When the package was delivered + * @property Carbon|null $created_at + * @property Carbon|null $updated_at + * @property-read ShoppingOrder $shoppingOrder + * @property-read DhlShipment|null $relatedShipment + * @property-read DhlShipment|null $returnShipment + * @property-read string|null $dimensions + * @property-read string|null $label_url + * @property-read string $recipient_address + * @property-read string $status_label + * @property-read string $type_label + * @method static \Illuminate\Database\Eloquent\Builder|DhlShipment active() + * @method static \Illuminate\Database\Eloquent\Builder|DhlShipment newModelQuery() + * @method static \Illuminate\Database\Eloquent\Builder|DhlShipment newQuery() + * @method static \Illuminate\Database\Eloquent\Builder|DhlShipment outbound() + * @method static \Illuminate\Database\Eloquent\Builder|DhlShipment query() + * @method static \Illuminate\Database\Eloquent\Builder|DhlShipment returns() + * @method static \Illuminate\Database\Eloquent\Builder|DhlShipment trackable() + * @method static \Illuminate\Database\Eloquent\Builder|DhlShipment whereApiErrors($value) + * @method static \Illuminate\Database\Eloquent\Builder|DhlShipment whereApiRequestData($value) + * @method static \Illuminate\Database\Eloquent\Builder|DhlShipment whereApiResponseData($value) + * @method static \Illuminate\Database\Eloquent\Builder|DhlShipment whereCreatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|DhlShipment whereCurrency($value) + * @method static \Illuminate\Database\Eloquent\Builder|DhlShipment whereDeliveredAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|DhlShipment whereHeight($value) + * @method static \Illuminate\Database\Eloquent\Builder|DhlShipment whereId($value) + * @method static \Illuminate\Database\Eloquent\Builder|DhlShipment whereLabelFormat($value) + * @method static \Illuminate\Database\Eloquent\Builder|DhlShipment whereLabelPath($value) + * @method static \Illuminate\Database\Eloquent\Builder|DhlShipment whereLabelPrinted($value) + * @method static \Illuminate\Database\Eloquent\Builder|DhlShipment whereLastTrackedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|DhlShipment whereLength($value) + * @method static \Illuminate\Database\Eloquent\Builder|DhlShipment whereMetadata($value) + * @method static \Illuminate\Database\Eloquent\Builder|DhlShipment whereNotes($value) + * @method static \Illuminate\Database\Eloquent\Builder|DhlShipment whereProductCode($value) + * @method static \Illuminate\Database\Eloquent\Builder|DhlShipment whereRecipientCity($value) + * @method static \Illuminate\Database\Eloquent\Builder|DhlShipment whereRecipientCompany($value) + * @method static \Illuminate\Database\Eloquent\Builder|DhlShipment whereRecipientCountry($value) + * @method static \Illuminate\Database\Eloquent\Builder|DhlShipment whereRecipientEmail($value) + * @method static \Illuminate\Database\Eloquent\Builder|DhlShipment whereRecipientName($value) + * @method static \Illuminate\Database\Eloquent\Builder|DhlShipment whereRecipientPhone($value) + * @method static \Illuminate\Database\Eloquent\Builder|DhlShipment whereRecipientPostalCode($value) + * @method static \Illuminate\Database\Eloquent\Builder|DhlShipment whereRecipientState($value) + * @method static \Illuminate\Database\Eloquent\Builder|DhlShipment whereRecipientStreet($value) + * @method static \Illuminate\Database\Eloquent\Builder|DhlShipment whereRecipientStreetNumber($value) + * @method static \Illuminate\Database\Eloquent\Builder|DhlShipment whereRelatedShipmentId($value) + * @method static \Illuminate\Database\Eloquent\Builder|DhlShipment whereServices($value) + * @method static \Illuminate\Database\Eloquent\Builder|DhlShipment whereShipmentNumber($value) + * @method static \Illuminate\Database\Eloquent\Builder|DhlShipment whereShippedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|DhlShipment whereShippingCost($value) + * @method static \Illuminate\Database\Eloquent\Builder|DhlShipment whereShoppingOrderId($value) + * @method static \Illuminate\Database\Eloquent\Builder|DhlShipment whereStatus($value) + * @method static \Illuminate\Database\Eloquent\Builder|DhlShipment whereTrackingDetails($value) + * @method static \Illuminate\Database\Eloquent\Builder|DhlShipment whereTrackingNumber($value) + * @method static \Illuminate\Database\Eloquent\Builder|DhlShipment whereTrackingStatus($value) + * @method static \Illuminate\Database\Eloquent\Builder|DhlShipment whereType($value) + * @method static \Illuminate\Database\Eloquent\Builder|DhlShipment whereUpdatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|DhlShipment whereWeight($value) + * @method static \Illuminate\Database\Eloquent\Builder|DhlShipment whereWidth($value) + */ + class DhlShipment extends \Eloquent {} +} + namespace App\Models{ /** * Class File @@ -1472,6 +1615,12 @@ namespace App\Models{ * @method static \Illuminate\Database\Eloquent\Builder|ShoppingOrder whereAboInterval($value) * @method static \Illuminate\Database\Eloquent\Builder|ShoppingOrder whereIsAbo($value) * @mixin \Eloquent + * @property-read \Illuminate\Database\Eloquent\Collection $dhlOutboundShipments + * @property-read int|null $dhl_outbound_shipments_count + * @property-read \Illuminate\Database\Eloquent\Collection $dhlReturnShipments + * @property-read int|null $dhl_return_shipments_count + * @property-read \Illuminate\Database\Eloquent\Collection $dhlShipments + * @property-read int|null $dhl_shipments_count */ class ShoppingOrder extends \Eloquent {} } @@ -1576,6 +1725,8 @@ namespace App\Models{ * @method static \Illuminate\Database\Eloquent\Builder|ShoppingPayment whereAboInterval($value) * @method static \Illuminate\Database\Eloquent\Builder|ShoppingPayment whereCarddata($value) * @method static \Illuminate\Database\Eloquent\Builder|ShoppingPayment whereIsAbo($value) + * @property string|null $identifier + * @method static \Illuminate\Database\Eloquent\Builder|ShoppingPayment whereIdentifier($value) * @mixin \Eloquent */ class ShoppingPayment extends \Eloquent {} @@ -2947,7 +3098,11 @@ namespace App{ * @property int|null $pre_sponsor * @property-read User|null $user_pre_sponsor * @method static \Illuminate\Database\Eloquent\Builder|User wherePreSponsor($value) + * @property \Illuminate\Support\Carbon|null $pre_deleted_at + * @method static \Illuminate\Database\Eloquent\Builder|User wherePreDeletedAt($value) * @mixin \Eloquent + * @property-read \Illuminate\Database\Eloquent\Collection $userBusiness + * @property-read int|null $user_business_count */ class User extends \Eloquent {} } diff --git a/app/Console/Commands/CheckPaymentsAccount.php b/app/Console/Commands/CheckPaymentsAccount.php index 64ed689..ebe3867 100644 --- a/app/Console/Commands/CheckPaymentsAccount.php +++ b/app/Console/Commands/CheckPaymentsAccount.php @@ -38,23 +38,23 @@ class CheckPaymentsAccount extends Command $this->info('COMMAND [payments:check-accounts] started.'); // Die Logik wurde 1:1 aus der checkPaymentsAccounts-Methode übernommen - $renewalDate = Carbon::now()->modify('+'.(config('mivita.remind_first_days')+1).' days'); + $renewalDate = Carbon::now()->modify('+' . (config('mivita.remind_first_days') + 1) . ' days'); Log::channel('cron')->info('Erneuerungsdatum für Zahlungen: ' . $renewalDate->format('Y-m-d H:i:s')); - + $users = User::where('payment_account', '!=', NULL) - ->where('active', '=', 1) - ->where('blocked', '!=', 1) - ->where('payment_account', '<', $renewalDate) - ->get(); + ->where('active', '=', 1) + ->where('blocked', '!=', 1) + ->where('payment_account', '<', $renewalDate) + ->get(); Log::channel('cron')->info('Found ' . $users->count() . ' users for payment reminders.'); $this->info('Found ' . $users->count() . ' users for payment reminders.'); - foreach ($users as $user){ - Log::channel('cron')->info('Prüfe Zahlungserinnerungen für Benutzer: ' . $user->email); - $this->checkReminderPayments($user); + foreach ($users as $user) { + Log::channel('cron')->info('Prüfe Zahlungserinnerungen für Benutzer: ' . $user->email); + $this->checkReminderPayments($user); } - + Log::channel('cron')->info('COMMAND [payments:check-accounts] finished.'); $this->info('COMMAND [payments:check-accounts] finished.'); return 0; // Success @@ -79,28 +79,28 @@ class CheckPaymentsAccount extends Command private function checkReminderPayments(User $user) { //35 reminder_deaktiv, 36 reminder_deaktiv_sepa - if(!$user->isActiveAccount()){ + if (!$user->isActiveAccount()) { Log::channel('cron')->info('Inaktives Konto für Benutzer: ' . $user->email); $this->checkIsReminderSend($user, 35); return; } //34 reminder_last - if($user->daysActiveAccount() <= config('mivita.remind_last_days')){ + if ($user->daysActiveAccount() <= config('mivita.remind_last_days')) { Log::channel('cron')->info('Letzte Erinnerung für Benutzer: ' . $user->email . ' (Tage aktiv: ' . $user->daysActiveAccount() . ')'); $this->checkIsReminderSend($user, 34); return; } //33 reminder_sec - if($user->daysActiveAccount() <= config('mivita.remind_sec_days')){ + if ($user->daysActiveAccount() <= config('mivita.remind_sec_days')) { Log::channel('cron')->info('Zweite Erinnerung für Benutzer: ' . $user->email . ' (Tage aktiv: ' . $user->daysActiveAccount() . ')'); $this->checkIsReminderSend($user, 33); return; } //31 reminder_first - if($user->daysActiveAccount() > config('mivita.remind_sec_days')){ + if ($user->daysActiveAccount() > config('mivita.remind_sec_days')) { Log::channel('cron')->info('Erste Erinnerung für Benutzer: ' . $user->email . ' (Tage aktiv: ' . $user->daysActiveAccount() . ')'); $this->checkIsReminderSend($user, 31); return; @@ -117,28 +117,28 @@ class CheckPaymentsAccount extends Command private function checkIsReminderSend(User $user, $status) { $isSend = UserHistory::whereUserId($user->id) - ->whereAction('reminder_payments') - ->whereIdentifier($user->payment_account) - ->whereStatus($status) - ->latest() - ->first(); + ->whereAction('reminder_payments') + ->whereIdentifier($user->payment_account) + ->whereStatus($status) + ->latest() + ->first(); - if($isSend){ + if ($isSend) { Log::channel('cron')->info('Erinnerung bereits gesendet für Benutzer: ' . $user->email . ' (Status: ' . $status . ')'); return true; } - + Log::channel('cron')->info('Sende neue Erinnerung für Benutzer: ' . $user->email . ' (Status: ' . $status . ')'); $referenz = $this->sendReminderMail($user, $status); - + UserHistory::create([ - 'user_id' => $user->id, - 'action' => 'reminder_payments', - 'referenz' => $referenz, - 'identifier' => $user->payment_account, + 'user_id' => $user->id, + 'action' => 'reminder_payments', + 'referenz' => $referenz, + 'identifier' => $user->payment_account, 'status' => $status ]); - + return false; } @@ -155,8 +155,8 @@ class CheckPaymentsAccount extends Command $pay_date = Carbon::parse($user->payment_account)->modify('- ' . config('mivita.abo_booking_days') . ' days')->format('d.m.Y'); $datetime = $user->getPaymentAccountDateFormat(); $price = ""; - - if($user->payment_order_id && isset($user->payment_order_product->price)){ + + if ($user->payment_order_id && isset($user->payment_order_product->price)) { $price = 'von ' . $user->payment_order_product->getFormattedPrice() . ' EUR'; } @@ -171,16 +171,16 @@ class CheckPaymentsAccount extends Command 'subject' => __('reminder.subject') . " | ID: " . $status, 'message' => $message, 'message_last' => $message_last, - 'url' => route('user_membership'), + 'url' => config('app.url') . '/user/membership', 'button' => $button, ]; - + $sender = User::find(1); $customer_mail = UserMessage::create(['user_id' => $user->id, 'send_user_id' => $sender->id, 'email' => $user->email, 'subject' => $data['subject'], 'message' => $data['message'] . " " . $data['message_last']]); - + try { - if(!Util::isTestSystem()){ - if($status >= 34){ + if (!Util::isTestSystem()) { + if ($status >= 34) { Log::channel('cron')->info('Sende kritische Erinnerung mit BCC an: ' . $user->email); Mail::to($user->email) ->locale($user->getLocale()) @@ -195,19 +195,19 @@ class CheckPaymentsAccount extends Command } else { Log::channel('cron')->info('Testsystem: E-Mail-Versand simuliert für: ' . $user->email); } - } catch(\Exception $e) { + } catch (\Exception $e) { Log::channel('cron')->error('Mail-Fehler für Benutzer ' . $user->email . ': ' . $e->getMessage()); $customer_mail->fail = true; $customer_mail->error = $e->getMessage(); $customer_mail->save(); return 0; } - + $customer_mail->send = true; $customer_mail->sent_at = now(); $customer_mail->save(); - + Log::channel('cron')->info('Erinnerungsmail erfolgreich gesendet an: ' . $user->email); return 1; } -} \ No newline at end of file +} diff --git a/app/Http/Controllers/Web/CheckoutController.php b/app/Http/Controllers/Web/CheckoutController.php index 92df33e..10343b2 100755 --- a/app/Http/Controllers/Web/CheckoutController.php +++ b/app/Http/Controllers/Web/CheckoutController.php @@ -25,7 +25,7 @@ class CheckoutController extends Controller { private $checkoutRepo; private $instance = 'checkout'; - + /** * Create a new controller instance. * @@ -50,7 +50,7 @@ class CheckoutController extends Controller {{ __('website.to_customer_portal') }} @endif @if(Auth::guard('user')->check()) - */ + */ $shopping_data = Yard::instance($this->instance)->getYardExtra('shopping_data'); $is_from = $shopping_data['is_from'] ?? 'shopping'; $is_for = $shopping_data['is_for'] ?? false; @@ -70,14 +70,17 @@ class CheckoutController extends Controller } } if (Session::has('new_session')) { - $this->checkoutRepo->sessionDestroy(); + $this->checkoutRepo->sessionDestroy(); Session::forget('new_session'); - } + } $shopping_user = $this->initializeShoppingUserSession($is_from, $is_for, $shopping_data, $homeparty_id); - + $this->prepareShoppingUserData($shopping_user); $payment_methods = $this->checkoutRepo->getPaymentsMethods($is_from, $is_abo); - + + if ($shopping_user === null) { + abort(403, 'ShoppingUser not found'); + } $data = [ 'is_from' => $is_from, 'is_for' => $is_for, @@ -97,8 +100,8 @@ class CheckoutController extends Controller return view('web.templates.checkout', $data); } - - + + /** * Bereitet die ShoppingUser-Daten vor * @@ -142,7 +145,7 @@ class CheckoutController extends Controller if (isset($data['payment_method'])) { $this->checkoutRepo->isPaymentsMethodsActive($data['payment_method'], $data['is_from'], $data['is_abo']); } - + Util::setInstanceStatus(2, true); // link_check // Länderwechsel verarbeiten @@ -155,16 +158,16 @@ class CheckoutController extends Controller if ($validator->fails()) { return back()->withErrors($validator)->withInput(Request::all()); } - + // Benutzer und Bestellung erstellen $shopping_user = $this->checkoutRepo->makeShoppingUser($data); $shopping_order = $this->checkoutRepo->makeShoppingOrder($shopping_user, $data); - + // CustomerPriority prüfen if ($shopping_user->is_from === 'shopping') { CustomerPriority::checkOne(ShoppingUser::find($shopping_user->id), true); } - + Util::setUserHistoryValue(['status' => 2, 'shopping_order_id' => $shopping_order->id]); // Zahlungsmethode verarbeiten @@ -188,7 +191,7 @@ class CheckoutController extends Controller } else { Yard::instance($this->instance)->setShippingCountryWithPrice($data['shipping_state'], $data['is_for']); } - + return back()->withInput(Request::all()); } @@ -220,7 +223,7 @@ class CheckoutController extends Controller 'shipping_salutation' => 'required' ]); } - + return Validator::make(Request::all(), $rules); } @@ -236,7 +239,7 @@ class CheckoutController extends Controller { $result = []; $payment_method = Request::get('payment_method'); - + // Kreditkarte prüfen if ($payment_method === 'cc') { $result = $this->checkCreditCard($data, $shopping_user, $shopping_order); @@ -260,7 +263,7 @@ class CheckoutController extends Controller $reference = $pay->setPrePayment($payment_method, $amount, 'EUR', $result); $this->checkoutRepo->putSessionPayments('payment_reference', $reference); $pay->setPersonalData(); - + return $pay->ResponseData(); } @@ -277,7 +280,7 @@ class CheckoutController extends Controller $pay = new PayoneController(); $pay->init($shopping_user, $shopping_order); $ret['cc'] = $pay->checkCreditCard($data); - + if ($ret['cc']['status'] === 'ERROR' || $ret['cc']['status'] === 'INVALID') { Session::flash('cc-error', 1); Session::flash('errormessage', $ret['cc']['errormessage']); @@ -303,14 +306,14 @@ class CheckoutController extends Controller $pay->init($shopping_user, $shopping_order); $amount = Yard::instance($this->instance)->totalWithShipping(2, '.', '') * 100; $ret['elv'] = $pay->checkBankAccount($data, $amount, 'EUR', $shopping_user); - + if ($ret['elv']['status'] === 'ERROR' || $ret['elv']['status'] === 'INVALID') { Session::flash('elv-error', 1); Session::flash('errormessage', $ret['elv']['errormessage']); Session::flash('customermessage', $ret['elv']['customermessage']); return redirect(route('checkout.checkout_card'))->withInput(Request::all()); } - + if ($ret['elv']['status'] === 'APPROVED' && $ret['elv']['mandate_status'] !== "active") { Session::flash('elv-managemandate', 1); Session::flash('elv-mandate_identification', $ret['elv']['mandate_identification']); @@ -318,7 +321,7 @@ class CheckoutController extends Controller Session::flash('elv-creditor_identifier', $ret['elv']['creditor_identifier']); return redirect(route('checkout.checkout_card'))->withInput(Request::all()); } - + $ret['elv']['bankaccountholder'] = $data['elv_bankaccountholder']; } else { $ret['elv'] = [ @@ -328,7 +331,7 @@ class CheckoutController extends Controller 'bic' => $data['elv_bic'], 'bankaccountholder' => $data['elv_bankaccountholder'] ]; - + $this->storeUserPaymentsData($shopping_user, $ret); } $ret['returnstatus'] = 'VALID'; @@ -347,7 +350,7 @@ class CheckoutController extends Controller 'is_checkout' => true, 'yard_instance' => $this->instance, ]; - + return view('web.templates.checkout-is-final', $data); } @@ -364,13 +367,13 @@ class CheckoutController extends Controller $ShoppingPayment = ShoppingPayment::where('shopping_order_id', $shopping_order_id) ->where('reference', $reference) ->first(); - + if (!$ShoppingPayment) { Util::setUserHistoryValue(['status' => 21]); Session::flash('checkout-error', 'Der Zahlungsvorgang konnte nicht abgeschlossen werden, die Zahlung wurde nicht gefunden: ' . $reference); return redirect(route('checkout.checkout_card')); } - + $ShoppingPayment->status = $status; $ShoppingPayment->save(); @@ -384,7 +387,7 @@ class CheckoutController extends Controller Session::flash('checkout-error', 'Der Zahlungsvorgang wurde abgebrochen, die Bestellung konnte nicht ausgeführt werden.'); return redirect(route('checkout.checkout_card')); } - + if ($status === "error") { Util::setUserHistoryValue(['status' => 23]); Util::setInstanceStatus(6); // link_failed @@ -419,7 +422,7 @@ class CheckoutController extends Controller 'is_checkout' => true, 'yard_instance' => $this->instance, ]; - + return view('web.templates.checkout-final', $data); } @@ -457,7 +460,7 @@ class CheckoutController extends Controller 'is_checkout' => true, 'yard_instance' => $this->instance, ]; - + return view('web.templates.checkout-final', $data); } @@ -493,20 +496,20 @@ class CheckoutController extends Controller $shopping_order = ShoppingOrder::find($payt->transmitted_data['param']); $shopping_order->txaction = 'invoice_open'; $shopping_order->save(); - + $shopping_payment = ShoppingPayment::where('reference', $payt->transmitted_data['reference'])->first(); if ($shopping_payment) { $shopping_payment->txaction = 'invoice_open'; $shopping_payment->save(); } - + $send_link = Payment::paymentStatusPaidAction($shopping_order, false, $shopping_payment); $data = [ 'mode' => $payt->transmitted_data['mode'], 'txaction' => $payt->txaction, 'send_link' => $send_link, ]; - + Payment::paymentStatusSendMail($shopping_order, $shopping_payment, $data); } } @@ -539,7 +542,7 @@ class CheckoutController extends Controller //Bestelllink if ($is_for === 'ot-customer' || $is_for === 'abo-ot-customer') { //customer shop mit den Daten aus dem Salescenter shopping_data - return $this->checkoutRepo->makeCustomerShoppingUser($shopping_data, $is_for, $is_from); + return $this->checkoutRepo->makeCustomerShoppingUser($shopping_data, $is_for, $is_from); } //Webshop return $this->checkoutRepo->initShoppingUser($is_for, $is_from, $homeparty_id); @@ -548,7 +551,7 @@ class CheckoutController extends Controller return $this->getExistingShoppingUser(); } - /** + /** * Holt den existierenden ShoppingUser und bereitet ihn vor * * @return ShoppingUser @@ -559,8 +562,7 @@ class CheckoutController extends Controller $shopping_user->billing_state = Shop::getCountryShippingCountryId($shopping_user->billing_country_id); $shopping_user->shipping_state = Shop::getCountryShippingCountryId($shopping_user->shipping_country_id); $shopping_user->same_as_billing = $shopping_user->same_as_billing ? false : true; // reinvert - + return $shopping_user; } - -} \ No newline at end of file +} diff --git a/app/Mail/MailAutoReleaseAccount.php b/app/Mail/MailAutoReleaseAccount.php index 03ae254..472de5d 100644 --- a/app/Mail/MailAutoReleaseAccount.php +++ b/app/Mail/MailAutoReleaseAccount.php @@ -1,4 +1,5 @@ user->account->salutation))." "; - $content .= $this->user->account->first_name." ".$this->user->account->last_name."\n"; - $content .= $this->user->account->address."\n"; - $content .= $this->user->account->zipcode." ".$this->user->account->city."\n"; - $content .= $this->user->account->country_id ? $this->user->account->country->de."\n\n" : "\n\n"; - if($this->user->account->phone){ + $content = __(strtoupper($this->user->account->salutation)) . " "; + $content .= $this->user->account->first_name . " " . $this->user->account->last_name . "\n"; + $content .= $this->user->account->address . "\n"; + $content .= $this->user->account->zipcode . " " . $this->user->account->city . "\n"; + $content .= $this->user->account->country_id ? $this->user->account->country->de . "\n\n" : "\n\n"; + if ($this->user->account->phone) { $content .= "Telefon: "; - $content .= $this->user->account->pre_phone_id ? $this->user->account->pre_phone->phone." " : " "; + $content .= $this->user->account->pre_phone_id ? $this->user->account->pre_phone->phone . " " : " "; $content .= $this->user->account->phone; } - if($this->user->account->mobil){ + if ($this->user->account->mobil) { $content .= "Mobil: "; - $content .= $this->user->account->pre_mobil_id ? $this->user->account->pre_mobil->phone." " : " "; + $content .= $this->user->account->pre_mobil_id ? $this->user->account->pre_mobil->phone . " " : " "; $content .= $this->user->account->mobil; } - $content .= "E-Mail: ".$this->user->email; + $content .= "E-Mail: " . $this->user->email; - $copy1line = "Ein neuer Berater hat sich registriert und wurde automatisch freigeschaltet. Seine Daten müssen nachträglich Überprüfung werden:"."\n"; - $copy1line .= "+ Überprüfung der Ausweisdaten"."\n"; - $copy1line .= "+ Überprüfung des Gewerbenachweises"."\n"; - $copy1line .= "+ Eintrag Account ID"."\n"; - $copy1line .= "+ Überprüfung / Kenntnisnahme Sponsor"."\n"; - $copy1line .= "+ Überprüfung der Rechnungsdaten"."\n"; - $copy1line .= 'Sollte Daten nicht vollständig sein, bitte Kontakt zum Berater aufnehmen.'."\n"; + $copy1line = "Ein neuer Berater hat sich registriert und wurde automatisch freigeschaltet. Seine Daten müssen nachträglich Überprüfung werden:" . "\n"; + $copy1line .= "+ Überprüfung der Ausweisdaten" . "\n"; + $copy1line .= "+ Überprüfung des Gewerbenachweises" . "\n"; + $copy1line .= "+ Eintrag Account ID" . "\n"; + $copy1line .= "+ Überprüfung / Kenntnisnahme Sponsor" . "\n"; + $copy1line .= "+ Überprüfung der Rechnungsdaten" . "\n"; + $copy1line .= 'Sollte Daten nicht vollständig sein, bitte Kontakt zum Berater aufnehmen.' . "\n"; return $this->view('emails.info')->with([ - 'url' => config('app.url_crm') . '/admin/lead/edit/' . $this->user->id . '?show=check_lead', + 'url' => \App\Services\Util::getMyMivitaUrl() . '/admin/lead/edit/' . $this->user->id . '?show=check_lead', 'title' => 'Berater Registrierung prüfen', 'button' => 'zur Berater Prüfung', 'copy1line' => $copy1line, @@ -59,4 +60,4 @@ class MailAutoReleaseAccount extends Mailable 'content' => $content, ]); } -} \ No newline at end of file +} diff --git a/app/Mail/MailInfo.php b/app/Mail/MailInfo.php index 3a24f0a..681ce59 100644 --- a/app/Mail/MailInfo.php +++ b/app/Mail/MailInfo.php @@ -1,4 +1,5 @@ action = $action; $this->data = $data; - if($this->action === "delete_membership"){ + if ($this->action === "delete_membership") { $this->subject = 'Mitgliedschaft beenden - beantragt'; } - if($this->action === "check_is_like_customer"){ + if ($this->action === "check_is_like_customer") { $this->subject = 'Kunden überprüfen - Kundenhoheit'; } - if($this->action === "change_is_like_customer"){ + if ($this->action === "change_is_like_customer") { $this->subject = 'Kunden erneut überprüfen - Kundenhoheit'; } } @@ -40,68 +41,68 @@ class MailInfo extends Mailable { $content = ""; - if($this->action === "delete_membership"){ - $content .= __(strtoupper($this->user->account->salutation))." "; - $content .= $this->user->account->first_name." ".$this->user->account->last_name."\n"; - $content .= $this->user->account->address."\n"; - $content .= $this->user->account->zipcode." ".$this->user->account->city."\n"; - $content .= $this->user->account->country_id ? $this->user->account->country->de."\n\n" : "\n\n"; - if($this->user->account->phone){ + if ($this->action === "delete_membership") { + $content .= __(strtoupper($this->user->account->salutation)) . " "; + $content .= $this->user->account->first_name . " " . $this->user->account->last_name . "\n"; + $content .= $this->user->account->address . "\n"; + $content .= $this->user->account->zipcode . " " . $this->user->account->city . "\n"; + $content .= $this->user->account->country_id ? $this->user->account->country->de . "\n\n" : "\n\n"; + if ($this->user->account->phone) { $content .= "Telefon: "; - $content .= $this->user->account->pre_phone_id ? $this->user->account->pre_phone->phone." " : " "; + $content .= $this->user->account->pre_phone_id ? $this->user->account->pre_phone->phone . " " : " "; $content .= $this->user->account->phone; } - if($this->user->account->mobil){ + if ($this->user->account->mobil) { $content .= "Mobil: "; - $content .= $this->user->account->pre_mobil_id ? $this->user->account->pre_mobil->phone." " : " "; + $content .= $this->user->account->pre_mobil_id ? $this->user->account->pre_mobil->phone . " " : " "; $content .= $this->user->account->mobil; } - $content .= "E-Mail: ".$this->user->email; + $content .= "E-Mail: " . $this->user->email; - $copy1line = "Infos zum Berater:"."\n"; + $copy1line = "Infos zum Berater:" . "\n"; $button = "zum Berater"; $title = "Ein Berater möchte seine Mitgliedschaft beenden."; - $url = config('app.url_crm') . '/admin/lead/edit/' . $this->user->id . '?show=check_lead'; + $url = \App\Services\Util::getMyMivitaUrl() . '/admin/lead/edit/' . $this->user->id . '?show=check_lead'; } - if($this->action === "check_is_like_customer") { - $copy1line = "Hier geht es zum Kunden:"."\n"; + if ($this->action === "check_is_like_customer") { + $copy1line = "Hier geht es zum Kunden:" . "\n"; $button = "zum Kunden"; $title = "Ein Kunden muss überprüft werden und einem Berater zugeordnet werden, da die Adresse nicht eindeutig ist."; - $url = config('app.url_crm') . '/admin/customer/detail/' . $this->user->id; - $content .= $this->user ? 'Firma: '.$this->user->billing_company."\n" : ''; - $content .= \App\Services\HTMLHelper::getSalutationLang($this->user->billing_salutation)." "; - $content .= $this->user->billing_firstname." "; - $content .= $this->user->billing_lastname."\n"; + $url = \App\Services\Util::getMyMivitaUrl() . '/admin/customer/detail/' . $this->user->id; + $content .= $this->user ? 'Firma: ' . $this->user->billing_company . "\n" : ''; + $content .= \App\Services\HTMLHelper::getSalutationLang($this->user->billing_salutation) . " "; + $content .= $this->user->billing_firstname . " "; + $content .= $this->user->billing_lastname . "\n"; $content .= $this->user->billing_address; - $content .= $this->user->billing_address_2 ? '/ '.$this->user->billing_address_2."\n" : "\n"; - $content .= $this->user->billing_zipcode." "; - $content .= $this->user->billing_city."\n"; - $content .= $this->user->billing_email."\n"; - $content .= $this->user->billing_phone."\n"; + $content .= $this->user->billing_address_2 ? '/ ' . $this->user->billing_address_2 . "\n" : "\n"; + $content .= $this->user->billing_zipcode . " "; + $content .= $this->user->billing_city . "\n"; + $content .= $this->user->billing_email . "\n"; + $content .= $this->user->billing_phone . "\n"; $content .= $this->user->billing_country->getLocated(); } - if($this->action === "change_is_like_customer"){ - $copy1line = "Hier geht es zum Kunden:"."\n"; + if ($this->action === "change_is_like_customer") { + $copy1line = "Hier geht es zum Kunden:" . "\n"; $button = "zum Kunden"; $title = "Ein Kunden muss erneut überprüft werden, da bei einer Änderung eine bestehende Kundenhoheit gefunden wurde."; - $url = config('app.url_crm') . '/admin/customer/detail/' . $this->user->id; - $content .= "Folgende Daten für die Kundenhoheit wurden geändert:"."\n"; - foreach ($this->data as $key=>$value){ - $content .= $this->user->{$key}." => ".$value."\n"; + $url = \App\Services\Util::getMyMivitaUrl() . '/admin/customer/detail/' . $this->user->id; + $content .= "Folgende Daten für die Kundenhoheit wurden geändert:" . "\n"; + foreach ($this->data as $key => $value) { + $content .= $this->user->{$key} . " => " . $value . "\n"; } - $content .= "\n"."\n"."Rechnungsadresse des Kunden vor der Änderung:"."\n"; - $content .= $this->user ? 'Firma: '.$this->user->billing_company."\n" : ''; - $content .= \App\Services\HTMLHelper::getSalutationLang($this->user->billing_salutation)." "; - $content .= $this->user->billing_firstname." "; - $content .= $this->user->billing_lastname."\n"; + $content .= "\n" . "\n" . "Rechnungsadresse des Kunden vor der Änderung:" . "\n"; + $content .= $this->user ? 'Firma: ' . $this->user->billing_company . "\n" : ''; + $content .= \App\Services\HTMLHelper::getSalutationLang($this->user->billing_salutation) . " "; + $content .= $this->user->billing_firstname . " "; + $content .= $this->user->billing_lastname . "\n"; $content .= $this->user->billing_address; - $content .= $this->user->billing_address_2 ? '/ '.$this->user->billing_address_2."\n" : "\n"; - $content .= $this->user->billing_zipcode." "; - $content .= $this->user->billing_city."\n"; - $content .= $this->user->billing_email."\n"; - $content .= $this->user->billing_phone."\n"; + $content .= $this->user->billing_address_2 ? '/ ' . $this->user->billing_address_2 . "\n" : "\n"; + $content .= $this->user->billing_zipcode . " "; + $content .= $this->user->billing_city . "\n"; + $content .= $this->user->billing_email . "\n"; + $content .= $this->user->billing_phone . "\n"; $content .= $this->user->billing_country->getLocated(); } return $this->view('emails.info')->with([ @@ -113,4 +114,4 @@ class MailInfo extends Mailable 'content' => $content, ]); } -} \ No newline at end of file +} diff --git a/app/Mail/MailReleaseAccount.php b/app/Mail/MailReleaseAccount.php index 8328440..3c74d0f 100644 --- a/app/Mail/MailReleaseAccount.php +++ b/app/Mail/MailReleaseAccount.php @@ -1,4 +1,5 @@ user->account->salutation))." "; - $content .= $this->user->account->first_name." ".$this->user->account->last_name."\n"; - $content .= $this->user->account->address."\n"; - $content .= $this->user->account->zipcode." ".$this->user->account->city."\n"; - $content .= $this->user->account->country_id ? $this->user->account->country->de."\n\n" : "\n\n"; - if($this->user->account->phone){ + $content = __(strtoupper($this->user->account->salutation)) . " "; + $content .= $this->user->account->first_name . " " . $this->user->account->last_name . "\n"; + $content .= $this->user->account->address . "\n"; + $content .= $this->user->account->zipcode . " " . $this->user->account->city . "\n"; + $content .= $this->user->account->country_id ? $this->user->account->country->de . "\n\n" : "\n\n"; + if ($this->user->account->phone) { $content .= "Telefon: "; - $content .= $this->user->account->pre_phone_id ? $this->user->account->pre_phone->phone." " : " "; + $content .= $this->user->account->pre_phone_id ? $this->user->account->pre_phone->phone . " " : " "; $content .= $this->user->account->phone; } - if($this->user->account->mobil){ + if ($this->user->account->mobil) { $content .= "Mobil: "; - $content .= $this->user->account->pre_mobil_id ? $this->user->account->pre_mobil->phone." " : " "; + $content .= $this->user->account->pre_mobil_id ? $this->user->account->pre_mobil->phone . " " : " "; $content .= $this->user->account->mobil; } - $content .= "E-Mail: ".$this->user->email; + $content .= "E-Mail: " . $this->user->email; - $copy1line = "Ein neuer Berater hat sich registriert und wartet auf die Überprüfung und Freigabe seiner Daten:"."\n"; - $copy1line .= "+ Überprüfung der Ausweisdaten"."\n"; - $copy1line .= "+ Überprüfung des Gewerbenachweises"."\n"; - $copy1line .= "+ Eintrag Account ID"."\n"; - $copy1line .= "+ Überprüfung / Kenntnisnahme Sponsor"."\n"; - $copy1line .= "+ Überprüfung der Rechnungsdaten"."\n"; - $copy1line .= 'Nach erfolgreicher Überprüfung mit dem Button „Daten vollständig => Berater freischalten“ den Berater freischalten.'."\n"; - $copy1line .= 'Der Berater erhält eine Mail, dass sein Account freigeschaltet wurde. Der Vertrag wird automatisch mit den Daten des Vertriebspartners erstellt.'."\n"; + $copy1line = "Ein neuer Berater hat sich registriert und wartet auf die Überprüfung und Freigabe seiner Daten:" . "\n"; + $copy1line .= "+ Überprüfung der Ausweisdaten" . "\n"; + $copy1line .= "+ Überprüfung des Gewerbenachweises" . "\n"; + $copy1line .= "+ Eintrag Account ID" . "\n"; + $copy1line .= "+ Überprüfung / Kenntnisnahme Sponsor" . "\n"; + $copy1line .= "+ Überprüfung der Rechnungsdaten" . "\n"; + $copy1line .= 'Nach erfolgreicher Überprüfung mit dem Button „Daten vollständig => Berater freischalten“ den Berater freischalten.' . "\n"; + $copy1line .= 'Der Berater erhält eine Mail, dass sein Account freigeschaltet wurde. Der Vertrag wird automatisch mit den Daten des Vertriebspartners erstellt.' . "\n"; return $this->view('emails.info')->with([ - 'url' => config('app.url_crm') . '/admin/lead/edit/' . $this->user->id . '?show=check_lead', + 'url' => \App\Services\Util::getMyMivitaUrl() . '/admin/lead/edit/' . $this->user->id . '?show=check_lead', 'title' => 'Berater Registrierung prüfen', 'button' => 'zur Berater Prüfung', 'copy1line' => $copy1line, @@ -60,4 +61,4 @@ class MailReleaseAccount extends Mailable 'content' => $content, ]); } -} \ No newline at end of file +} diff --git a/app/Mail/MailReleaseDocument.php b/app/Mail/MailReleaseDocument.php index 764ff1c..cf38690 100644 --- a/app/Mail/MailReleaseDocument.php +++ b/app/Mail/MailReleaseDocument.php @@ -1,4 +1,5 @@ user->account->salutation))." "; - $content .= $this->user->account->first_name." ".$this->user->account->last_name."\n"; - $content .= $this->user->account->address."\n"; - $content .= $this->user->account->zipcode." ".$this->user->account->city."\n"; - $content .= $this->user->account->country_id ? $this->user->account->country->de."\n\n" : "\n\n"; - $content .= "E-Mail: ".$this->user->email; + $content = __(strtoupper($this->user->account->salutation)) . " "; + $content .= $this->user->account->first_name . " " . $this->user->account->last_name . "\n"; + $content .= $this->user->account->address . "\n"; + $content .= $this->user->account->zipcode . " " . $this->user->account->city . "\n"; + $content .= $this->user->account->country_id ? $this->user->account->country->de . "\n\n" : "\n\n"; + $content .= "E-Mail: " . $this->user->email; - $copy1line = "Ein Berater hat Daten zum Gewerbenachweis geändert, bitte um Prüfung:"."\n\n"; + $copy1line = "Ein Berater hat Daten zum Gewerbenachweis geändert, bitte um Prüfung:" . "\n\n"; $business_license_choose = $this->user->account->getNotice('business_license'); - if($business_license_choose === 'now'){ - $copy1line .= "+ Gewerbeschein jetzt zur Freigabe"."\n\n"; + if ($business_license_choose === 'now') { + $copy1line .= "+ Gewerbeschein jetzt zur Freigabe" . "\n\n"; } - if($business_license_choose === 'later'){ - $copy1line .= "+ Ich reiche meinen Gewerbeschein innerhalb der nächsten 4 Wochen nach"."\n\n"; + if ($business_license_choose === 'later') { + $copy1line .= "+ Ich reiche meinen Gewerbeschein innerhalb der nächsten 4 Wochen nach" . "\n\n"; } - if($business_license_choose === 'non'){ - $copy1line .= "+ Ich benötige keinen Gewerbeschein"."\n"; - $copy1line .= "+ Begründung: ".$this->user->account->getNotice('business_license_reason')."\n\n"; + if ($business_license_choose === 'non') { + $copy1line .= "+ Ich benötige keinen Gewerbeschein" . "\n"; + $copy1line .= "+ Begründung: " . $this->user->account->getNotice('business_license_reason') . "\n\n"; } - - $copy1line .= 'Bei fehlerhafter Angabe nimm bitte kontakt mit dem Berater auf.'."\n"; + + $copy1line .= 'Bei fehlerhafter Angabe nimm bitte kontakt mit dem Berater auf.' . "\n"; return $this->view('emails.info')->with([ - 'url' => config('app.url_crm') . '/admin/lead/edit/' . $this->user->id . '?show=check_lead', + 'url' => \App\Services\Util::getMyMivitaUrl() . '/admin/lead/edit/' . $this->user->id . '?show=check_lead', 'title' => 'Berater Unterlagen prüfen', 'button' => 'zur Berater Prüfung', 'copy1line' => $copy1line, @@ -56,4 +57,4 @@ class MailReleaseDocument extends Mailable 'content' => $content, ]); } -} \ No newline at end of file +} diff --git a/app/Models/Customer.php b/app/Models/Customer.php index ec9dad7..bce50a8 100644 --- a/app/Models/Customer.php +++ b/app/Models/Customer.php @@ -8,8 +8,6 @@ use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Foundation\Auth\User as Authenticatable; // Wichtig! /** - * - * * @property int $id * @property string|null $name * @property string $email diff --git a/app/Providers/HorizonServiceProvider.php b/app/Providers/HorizonServiceProvider.php new file mode 100644 index 0000000..59599dc --- /dev/null +++ b/app/Providers/HorizonServiceProvider.php @@ -0,0 +1,36 @@ +email, [ + // + ]); + }); + } +} diff --git a/app/Providers/RouteServiceProvider.php b/app/Providers/RouteServiceProvider.php index 361a280..b71b50d 100644 --- a/app/Providers/RouteServiceProvider.php +++ b/app/Providers/RouteServiceProvider.php @@ -58,7 +58,7 @@ class RouteServiceProvider extends ServiceProvider /** @var DomainContext $context */ $context = app(DomainContext::class); $this->loadSharedRoutes(); - + \Log::info('loadDomainAwareRoutes', ['context' => $context]); match ($context->type) { 'main' => $this->loadDomainRoutes('main', 'main.php'), 'main-shop' => [ diff --git a/bootstrap/cache/events.php b/bootstrap/cache/events.php new file mode 100644 index 0000000..02e2fc9 --- /dev/null +++ b/bootstrap/cache/events.php @@ -0,0 +1,9 @@ + + array ( + 'App\\Events\\Event' => + array ( + 0 => 'App\\Listeners\\EventListener', + ), + ), +); \ No newline at end of file diff --git a/bootstrap/cache/packages.php b/bootstrap/cache/packages.php index bd81898..2604906 100755 --- a/bootstrap/cache/packages.php +++ b/bootstrap/cache/packages.php @@ -66,6 +66,17 @@ 0 => 'Laracasts\\Flash\\FlashServiceProvider', ), ), + 'laravel/horizon' => + array ( + 'aliases' => + array ( + 'Horizon' => 'Laravel\\Horizon\\Horizon', + ), + 'providers' => + array ( + 0 => 'Laravel\\Horizon\\HorizonServiceProvider', + ), + ), 'laravel/legacy-factories' => array ( 'providers' => diff --git a/bootstrap/cache/services.php b/bootstrap/cache/services.php index c49c1e7..8650f4e 100755 --- a/bootstrap/cache/services.php +++ b/bootstrap/cache/services.php @@ -31,31 +31,33 @@ 27 => 'JoeDixon\\Translation\\TranslationServiceProvider', 28 => 'JoeDixon\\Translation\\TranslationBindingsServiceProvider', 29 => 'Laracasts\\Flash\\FlashServiceProvider', - 30 => 'Illuminate\\Database\\Eloquent\\LegacyFactoryServiceProvider', - 31 => 'Laravel\\Passport\\PassportServiceProvider', - 32 => 'Laravel\\Sail\\SailServiceProvider', - 33 => 'Laravel\\Tinker\\TinkerServiceProvider', - 34 => 'Laravel\\Ui\\UiServiceProvider', - 35 => 'Maatwebsite\\Excel\\ExcelServiceProvider', - 36 => 'Carbon\\Laravel\\ServiceProvider', - 37 => 'NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider', - 38 => 'Termwind\\Laravel\\TermwindServiceProvider', - 39 => 'Pest\\Laravel\\PestServiceProvider', - 40 => 'Spatie\\Html\\HtmlServiceProvider', - 41 => 'Spatie\\LaravelIgnition\\IgnitionServiceProvider', - 42 => 'Yajra\\DataTables\\DataTablesServiceProvider', - 43 => 'Laravel\\Tinker\\TinkerServiceProvider', - 44 => 'Acme\\Dhl\\DhlServiceProvider', - 45 => 'App\\Providers\\AppServiceProvider', - 46 => 'App\\Providers\\AuthServiceProvider', - 47 => 'App\\Providers\\EventServiceProvider', - 48 => 'App\\Providers\\DomainServiceProvider', - 49 => 'App\\Providers\\RouteServiceProvider', - 50 => 'Jenssegers\\Date\\DateServiceProvider', - 51 => 'Maatwebsite\\Excel\\ExcelServiceProvider', - 52 => 'Yajra\\DataTables\\DataTablesServiceProvider', - 53 => 'App\\Providers\\YardServiceProvider', - 54 => 'Alban\\LaravelCollectiveSpatieHtmlParser\\ServiceProvider', + 30 => 'Laravel\\Horizon\\HorizonServiceProvider', + 31 => 'Illuminate\\Database\\Eloquent\\LegacyFactoryServiceProvider', + 32 => 'Laravel\\Passport\\PassportServiceProvider', + 33 => 'Laravel\\Sail\\SailServiceProvider', + 34 => 'Laravel\\Tinker\\TinkerServiceProvider', + 35 => 'Laravel\\Ui\\UiServiceProvider', + 36 => 'Maatwebsite\\Excel\\ExcelServiceProvider', + 37 => 'Carbon\\Laravel\\ServiceProvider', + 38 => 'NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider', + 39 => 'Termwind\\Laravel\\TermwindServiceProvider', + 40 => 'Pest\\Laravel\\PestServiceProvider', + 41 => 'Spatie\\Html\\HtmlServiceProvider', + 42 => 'Spatie\\LaravelIgnition\\IgnitionServiceProvider', + 43 => 'Yajra\\DataTables\\DataTablesServiceProvider', + 44 => 'Laravel\\Tinker\\TinkerServiceProvider', + 45 => 'Acme\\Dhl\\DhlServiceProvider', + 46 => 'App\\Providers\\AppServiceProvider', + 47 => 'App\\Providers\\AuthServiceProvider', + 48 => 'App\\Providers\\EventServiceProvider', + 49 => 'App\\Providers\\HorizonServiceProvider', + 50 => 'App\\Providers\\DomainServiceProvider', + 51 => 'App\\Providers\\RouteServiceProvider', + 52 => 'Jenssegers\\Date\\DateServiceProvider', + 53 => 'Maatwebsite\\Excel\\ExcelServiceProvider', + 54 => 'Yajra\\DataTables\\DataTablesServiceProvider', + 55 => 'App\\Providers\\YardServiceProvider', + 56 => 'Alban\\LaravelCollectiveSpatieHtmlParser\\ServiceProvider', ), 'eager' => array ( @@ -75,28 +77,30 @@ 13 => 'Jenssegers\\Date\\DateServiceProvider', 14 => 'JoeDixon\\Translation\\TranslationServiceProvider', 15 => 'Laracasts\\Flash\\FlashServiceProvider', - 16 => 'Illuminate\\Database\\Eloquent\\LegacyFactoryServiceProvider', - 17 => 'Laravel\\Passport\\PassportServiceProvider', - 18 => 'Laravel\\Ui\\UiServiceProvider', - 19 => 'Maatwebsite\\Excel\\ExcelServiceProvider', - 20 => 'Carbon\\Laravel\\ServiceProvider', - 21 => 'NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider', - 22 => 'Termwind\\Laravel\\TermwindServiceProvider', - 23 => 'Pest\\Laravel\\PestServiceProvider', - 24 => 'Spatie\\Html\\HtmlServiceProvider', - 25 => 'Spatie\\LaravelIgnition\\IgnitionServiceProvider', - 26 => 'Yajra\\DataTables\\DataTablesServiceProvider', - 27 => 'Acme\\Dhl\\DhlServiceProvider', - 28 => 'App\\Providers\\AppServiceProvider', - 29 => 'App\\Providers\\AuthServiceProvider', - 30 => 'App\\Providers\\EventServiceProvider', - 31 => 'App\\Providers\\DomainServiceProvider', - 32 => 'App\\Providers\\RouteServiceProvider', - 33 => 'Jenssegers\\Date\\DateServiceProvider', - 34 => 'Maatwebsite\\Excel\\ExcelServiceProvider', - 35 => 'Yajra\\DataTables\\DataTablesServiceProvider', - 36 => 'App\\Providers\\YardServiceProvider', - 37 => 'Alban\\LaravelCollectiveSpatieHtmlParser\\ServiceProvider', + 16 => 'Laravel\\Horizon\\HorizonServiceProvider', + 17 => 'Illuminate\\Database\\Eloquent\\LegacyFactoryServiceProvider', + 18 => 'Laravel\\Passport\\PassportServiceProvider', + 19 => 'Laravel\\Ui\\UiServiceProvider', + 20 => 'Maatwebsite\\Excel\\ExcelServiceProvider', + 21 => 'Carbon\\Laravel\\ServiceProvider', + 22 => 'NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider', + 23 => 'Termwind\\Laravel\\TermwindServiceProvider', + 24 => 'Pest\\Laravel\\PestServiceProvider', + 25 => 'Spatie\\Html\\HtmlServiceProvider', + 26 => 'Spatie\\LaravelIgnition\\IgnitionServiceProvider', + 27 => 'Yajra\\DataTables\\DataTablesServiceProvider', + 28 => 'Acme\\Dhl\\DhlServiceProvider', + 29 => 'App\\Providers\\AppServiceProvider', + 30 => 'App\\Providers\\AuthServiceProvider', + 31 => 'App\\Providers\\EventServiceProvider', + 32 => 'App\\Providers\\HorizonServiceProvider', + 33 => 'App\\Providers\\DomainServiceProvider', + 34 => 'App\\Providers\\RouteServiceProvider', + 35 => 'Jenssegers\\Date\\DateServiceProvider', + 36 => 'Maatwebsite\\Excel\\ExcelServiceProvider', + 37 => 'Yajra\\DataTables\\DataTablesServiceProvider', + 38 => 'App\\Providers\\YardServiceProvider', + 39 => 'Alban\\LaravelCollectiveSpatieHtmlParser\\ServiceProvider', ), 'deferred' => array ( diff --git a/composer.json b/composer.json index 1ccd3c2..e56cadb 100755 --- a/composer.json +++ b/composer.json @@ -17,6 +17,7 @@ "joedixon/laravel-translation": "2.x-dev", "laracasts/flash": "^3.2", "laravel/framework": "^11.0", + "laravel/horizon": "^5.33", "laravel/passport": "^12.0", "laravel/prompts": "^0.1.14", "laravel/tinker": "^2.9", @@ -29,16 +30,16 @@ "yajra/laravel-datatables-oracle": "^11.0" }, "require-dev": { - "spatie/laravel-ignition": "^2.0", - "nunomaduro/collision": "^8.1", - "fakerphp/faker": "^1.23", - "laravel/pint": "^1.0", - "laravel/sail": "^1.26", + "barryvdh/laravel-debugbar": "^3.13", + "barryvdh/laravel-ide-helper": "^3.6", + "fakerphp/faker": "^1.23", + "laravel/pint": "^1.0", + "laravel/sail": "^1.44", "mockery/mockery": "^1.6.2", - "pestphp/pest": "^2.0", - "pestphp/pest-plugin-laravel": "^2.0", - "barryvdh/laravel-debugbar": "^3.13", - "barryvdh/laravel-ide-helper": "^3.0" + "nunomaduro/collision": "^8.1", + "pestphp/pest": "^2.0", + "pestphp/pest-plugin-laravel": "^2.0", + "spatie/laravel-ignition": "^2.0" }, "config": { "optimize-autoloader": true, diff --git a/composer.lock b/composer.lock old mode 100644 new mode 100755 index 3f12675..9e51763 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "7fc21677cad34a62767eaccbc243e7d6", + "content-hash": "925483d8104ae55ae4bf5fd0ada18726", "packages": [ { "name": "barryvdh/laravel-dompdf", @@ -1432,22 +1432,22 @@ }, { "name": "guzzlehttp/guzzle", - "version": "7.9.3", + "version": "7.10.0", "source": { "type": "git", "url": "https://github.com/guzzle/guzzle.git", - "reference": "7b2f29fe81dc4da0ca0ea7d42107a0845946ea77" + "reference": "b51ac707cfa420b7bfd4e4d5e510ba8008e822b4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/guzzle/zipball/7b2f29fe81dc4da0ca0ea7d42107a0845946ea77", - "reference": "7b2f29fe81dc4da0ca0ea7d42107a0845946ea77", + "url": "https://api.github.com/repos/guzzle/guzzle/zipball/b51ac707cfa420b7bfd4e4d5e510ba8008e822b4", + "reference": "b51ac707cfa420b7bfd4e4d5e510ba8008e822b4", "shasum": "" }, "require": { "ext-json": "*", - "guzzlehttp/promises": "^1.5.3 || ^2.0.3", - "guzzlehttp/psr7": "^2.7.0", + "guzzlehttp/promises": "^2.3", + "guzzlehttp/psr7": "^2.8", "php": "^7.2.5 || ^8.0", "psr/http-client": "^1.0", "symfony/deprecation-contracts": "^2.2 || ^3.0" @@ -1538,7 +1538,7 @@ ], "support": { "issues": "https://github.com/guzzle/guzzle/issues", - "source": "https://github.com/guzzle/guzzle/tree/7.9.3" + "source": "https://github.com/guzzle/guzzle/tree/7.10.0" }, "funding": [ { @@ -1554,20 +1554,20 @@ "type": "tidelift" } ], - "time": "2025-03-27T13:37:11+00:00" + "time": "2025-08-23T22:36:01+00:00" }, { "name": "guzzlehttp/promises", - "version": "2.2.0", + "version": "2.3.0", "source": { "type": "git", "url": "https://github.com/guzzle/promises.git", - "reference": "7c69f28996b0a6920945dd20b3857e499d9ca96c" + "reference": "481557b130ef3790cf82b713667b43030dc9c957" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/promises/zipball/7c69f28996b0a6920945dd20b3857e499d9ca96c", - "reference": "7c69f28996b0a6920945dd20b3857e499d9ca96c", + "url": "https://api.github.com/repos/guzzle/promises/zipball/481557b130ef3790cf82b713667b43030dc9c957", + "reference": "481557b130ef3790cf82b713667b43030dc9c957", "shasum": "" }, "require": { @@ -1575,7 +1575,7 @@ }, "require-dev": { "bamarni/composer-bin-plugin": "^1.8.2", - "phpunit/phpunit": "^8.5.39 || ^9.6.20" + "phpunit/phpunit": "^8.5.44 || ^9.6.25" }, "type": "library", "extra": { @@ -1621,7 +1621,7 @@ ], "support": { "issues": "https://github.com/guzzle/promises/issues", - "source": "https://github.com/guzzle/promises/tree/2.2.0" + "source": "https://github.com/guzzle/promises/tree/2.3.0" }, "funding": [ { @@ -1637,20 +1637,20 @@ "type": "tidelift" } ], - "time": "2025-03-27T13:27:01+00:00" + "time": "2025-08-22T14:34:08+00:00" }, { "name": "guzzlehttp/psr7", - "version": "2.7.1", + "version": "2.8.0", "source": { "type": "git", "url": "https://github.com/guzzle/psr7.git", - "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16" + "reference": "21dc724a0583619cd1652f673303492272778051" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/psr7/zipball/c2270caaabe631b3b44c85f99e5a04bbb8060d16", - "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/21dc724a0583619cd1652f673303492272778051", + "reference": "21dc724a0583619cd1652f673303492272778051", "shasum": "" }, "require": { @@ -1666,7 +1666,7 @@ "require-dev": { "bamarni/composer-bin-plugin": "^1.8.2", "http-interop/http-factory-tests": "0.9.0", - "phpunit/phpunit": "^8.5.39 || ^9.6.20" + "phpunit/phpunit": "^8.5.44 || ^9.6.25" }, "suggest": { "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" @@ -1737,7 +1737,7 @@ ], "support": { "issues": "https://github.com/guzzle/psr7/issues", - "source": "https://github.com/guzzle/psr7/tree/2.7.1" + "source": "https://github.com/guzzle/psr7/tree/2.8.0" }, "funding": [ { @@ -1753,20 +1753,20 @@ "type": "tidelift" } ], - "time": "2025-03-27T12:30:47+00:00" + "time": "2025-08-23T21:21:41+00:00" }, { "name": "guzzlehttp/uri-template", - "version": "v1.0.4", + "version": "v1.0.5", "source": { "type": "git", "url": "https://github.com/guzzle/uri-template.git", - "reference": "30e286560c137526eccd4ce21b2de477ab0676d2" + "reference": "4f4bbd4e7172148801e76e3decc1e559bdee34e1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/uri-template/zipball/30e286560c137526eccd4ce21b2de477ab0676d2", - "reference": "30e286560c137526eccd4ce21b2de477ab0676d2", + "url": "https://api.github.com/repos/guzzle/uri-template/zipball/4f4bbd4e7172148801e76e3decc1e559bdee34e1", + "reference": "4f4bbd4e7172148801e76e3decc1e559bdee34e1", "shasum": "" }, "require": { @@ -1775,7 +1775,7 @@ }, "require-dev": { "bamarni/composer-bin-plugin": "^1.8.2", - "phpunit/phpunit": "^8.5.36 || ^9.6.15", + "phpunit/phpunit": "^8.5.44 || ^9.6.25", "uri-template/tests": "1.0.0" }, "type": "library", @@ -1823,7 +1823,7 @@ ], "support": { "issues": "https://github.com/guzzle/uri-template/issues", - "source": "https://github.com/guzzle/uri-template/tree/v1.0.4" + "source": "https://github.com/guzzle/uri-template/tree/v1.0.5" }, "funding": [ { @@ -1839,7 +1839,7 @@ "type": "tidelift" } ], - "time": "2025-02-03T10:55:03+00:00" + "time": "2025-08-22T14:27:06+00:00" }, { "name": "intervention/gif", @@ -2401,6 +2401,86 @@ }, "time": "2025-08-13T20:28:00+00:00" }, + { + "name": "laravel/horizon", + "version": "v5.33.4", + "source": { + "type": "git", + "url": "https://github.com/laravel/horizon.git", + "reference": "678362049ce5b9ce96673ac0282bbfda3279eca9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/horizon/zipball/678362049ce5b9ce96673ac0282bbfda3279eca9", + "reference": "678362049ce5b9ce96673ac0282bbfda3279eca9", + "shasum": "" + }, + "require": { + "ext-json": "*", + "ext-pcntl": "*", + "ext-posix": "*", + "illuminate/contracts": "^9.21|^10.0|^11.0|^12.0", + "illuminate/queue": "^9.21|^10.0|^11.0|^12.0", + "illuminate/support": "^9.21|^10.0|^11.0|^12.0", + "nesbot/carbon": "^2.17|^3.0", + "php": "^8.0", + "ramsey/uuid": "^4.0", + "symfony/console": "^6.0|^7.0", + "symfony/error-handler": "^6.0|^7.0", + "symfony/polyfill-php83": "^1.28", + "symfony/process": "^6.0|^7.0" + }, + "require-dev": { + "mockery/mockery": "^1.0", + "orchestra/testbench": "^7.0|^8.0|^9.0|^10.0", + "phpstan/phpstan": "^1.10|^2.0", + "phpunit/phpunit": "^9.0|^10.4|^11.5|^12.0", + "predis/predis": "^1.1|^2.0|^3.0" + }, + "suggest": { + "ext-redis": "Required to use the Redis PHP driver.", + "predis/predis": "Required when not using the Redis PHP driver (^1.1|^2.0|^3.0)." + }, + "type": "library", + "extra": { + "laravel": { + "aliases": { + "Horizon": "Laravel\\Horizon\\Horizon" + }, + "providers": [ + "Laravel\\Horizon\\HorizonServiceProvider" + ] + }, + "branch-alias": { + "dev-master": "6.x-dev" + } + }, + "autoload": { + "psr-4": { + "Laravel\\Horizon\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "Dashboard and code-driven configuration for Laravel queues.", + "keywords": [ + "laravel", + "queue" + ], + "support": { + "issues": "https://github.com/laravel/horizon/issues", + "source": "https://github.com/laravel/horizon/tree/v5.33.4" + }, + "time": "2025-08-25T13:31:24+00:00" + }, { "name": "laravel/legacy-factories", "version": "v1.4.1", @@ -3613,16 +3693,16 @@ }, { "name": "maatwebsite/excel", - "version": "3.1.66", + "version": "3.1.67", "source": { "type": "git", "url": "https://github.com/SpartnerNL/Laravel-Excel.git", - "reference": "3b29c2426a46674f444890c45f742452a396aae8" + "reference": "e508e34a502a3acc3329b464dad257378a7edb4d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/SpartnerNL/Laravel-Excel/zipball/3b29c2426a46674f444890c45f742452a396aae8", - "reference": "3b29c2426a46674f444890c45f742452a396aae8", + "url": "https://api.github.com/repos/SpartnerNL/Laravel-Excel/zipball/e508e34a502a3acc3329b464dad257378a7edb4d", + "reference": "e508e34a502a3acc3329b464dad257378a7edb4d", "shasum": "" }, "require": { @@ -3630,7 +3710,7 @@ "ext-json": "*", "illuminate/support": "5.8.*||^6.0||^7.0||^8.0||^9.0||^10.0||^11.0||^12.0", "php": "^7.0||^8.0", - "phpoffice/phpspreadsheet": "^1.29.12", + "phpoffice/phpspreadsheet": "^1.30.0", "psr/simple-cache": "^1.0||^2.0||^3.0" }, "require-dev": { @@ -3678,7 +3758,7 @@ ], "support": { "issues": "https://github.com/SpartnerNL/Laravel-Excel/issues", - "source": "https://github.com/SpartnerNL/Laravel-Excel/tree/3.1.66" + "source": "https://github.com/SpartnerNL/Laravel-Excel/tree/3.1.67" }, "funding": [ { @@ -3690,26 +3770,26 @@ "type": "github" } ], - "time": "2025-08-07T08:31:22+00:00" + "time": "2025-08-26T09:13:16+00:00" }, { "name": "maennchen/zipstream-php", - "version": "3.1.2", + "version": "3.2.0", "source": { "type": "git", "url": "https://github.com/maennchen/ZipStream-PHP.git", - "reference": "aeadcf5c412332eb426c0f9b4485f6accba2a99f" + "reference": "9712d8fa4cdf9240380b01eb4be55ad8dcf71416" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/aeadcf5c412332eb426c0f9b4485f6accba2a99f", - "reference": "aeadcf5c412332eb426c0f9b4485f6accba2a99f", + "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/9712d8fa4cdf9240380b01eb4be55ad8dcf71416", + "reference": "9712d8fa4cdf9240380b01eb4be55ad8dcf71416", "shasum": "" }, "require": { "ext-mbstring": "*", "ext-zlib": "*", - "php-64bit": "^8.2" + "php-64bit": "^8.3" }, "require-dev": { "brianium/paratest": "^7.7", @@ -3718,7 +3798,7 @@ "guzzlehttp/guzzle": "^7.5", "mikey179/vfsstream": "^1.6", "php-coveralls/php-coveralls": "^2.5", - "phpunit/phpunit": "^11.0", + "phpunit/phpunit": "^12.0", "vimeo/psalm": "^6.0" }, "suggest": { @@ -3760,7 +3840,7 @@ ], "support": { "issues": "https://github.com/maennchen/ZipStream-PHP/issues", - "source": "https://github.com/maennchen/ZipStream-PHP/tree/3.1.2" + "source": "https://github.com/maennchen/ZipStream-PHP/tree/3.2.0" }, "funding": [ { @@ -3768,7 +3848,7 @@ "type": "github" } ], - "time": "2025-01-27T12:07:53+00:00" + "time": "2025-07-17T11:15:13+00:00" }, { "name": "markbaker/complex", @@ -6406,16 +6486,16 @@ }, { "name": "symfony/event-dispatcher", - "version": "v7.3.0", + "version": "v7.3.3", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "497f73ac996a598c92409b44ac43b6690c4f666d" + "reference": "b7dc69e71de420ac04bc9ab830cf3ffebba48191" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/497f73ac996a598c92409b44ac43b6690c4f666d", - "reference": "497f73ac996a598c92409b44ac43b6690c4f666d", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/b7dc69e71de420ac04bc9ab830cf3ffebba48191", + "reference": "b7dc69e71de420ac04bc9ab830cf3ffebba48191", "shasum": "" }, "require": { @@ -6466,7 +6546,7 @@ "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/event-dispatcher/tree/v7.3.0" + "source": "https://github.com/symfony/event-dispatcher/tree/v7.3.3" }, "funding": [ { @@ -6477,12 +6557,16 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2025-04-22T09:11:45+00:00" + "time": "2025-08-13T11:49:31+00:00" }, { "name": "symfony/event-dispatcher-contracts", @@ -6630,16 +6714,16 @@ }, { "name": "symfony/http-foundation", - "version": "v7.3.2", + "version": "v7.3.3", "source": { "type": "git", "url": "https://github.com/symfony/http-foundation.git", - "reference": "6877c122b3a6cc3695849622720054f6e6fa5fa6" + "reference": "7475561ec27020196c49bb7c4f178d33d7d3dc00" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-foundation/zipball/6877c122b3a6cc3695849622720054f6e6fa5fa6", - "reference": "6877c122b3a6cc3695849622720054f6e6fa5fa6", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/7475561ec27020196c49bb7c4f178d33d7d3dc00", + "reference": "7475561ec27020196c49bb7c4f178d33d7d3dc00", "shasum": "" }, "require": { @@ -6689,7 +6773,7 @@ "description": "Defines an object-oriented layer for the HTTP specification", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/http-foundation/tree/v7.3.2" + "source": "https://github.com/symfony/http-foundation/tree/v7.3.3" }, "funding": [ { @@ -6709,20 +6793,20 @@ "type": "tidelift" } ], - "time": "2025-07-10T08:47:49+00:00" + "time": "2025-08-20T08:04:18+00:00" }, { "name": "symfony/http-kernel", - "version": "v7.3.2", + "version": "v7.3.3", "source": { "type": "git", "url": "https://github.com/symfony/http-kernel.git", - "reference": "6ecc895559ec0097e221ed2fd5eb44d5fede083c" + "reference": "72c304de37e1a1cec6d5d12b81187ebd4850a17b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-kernel/zipball/6ecc895559ec0097e221ed2fd5eb44d5fede083c", - "reference": "6ecc895559ec0097e221ed2fd5eb44d5fede083c", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/72c304de37e1a1cec6d5d12b81187ebd4850a17b", + "reference": "72c304de37e1a1cec6d5d12b81187ebd4850a17b", "shasum": "" }, "require": { @@ -6807,7 +6891,7 @@ "description": "Provides a structured process for converting a Request into a Response", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/http-kernel/tree/v7.3.2" + "source": "https://github.com/symfony/http-kernel/tree/v7.3.3" }, "funding": [ { @@ -6827,20 +6911,20 @@ "type": "tidelift" } ], - "time": "2025-07-31T10:45:04+00:00" + "time": "2025-08-29T08:23:45+00:00" }, { "name": "symfony/mailer", - "version": "v7.3.2", + "version": "v7.3.3", "source": { "type": "git", "url": "https://github.com/symfony/mailer.git", - "reference": "d43e84d9522345f96ad6283d5dfccc8c1cfc299b" + "reference": "a32f3f45f1990db8c4341d5122a7d3a381c7e575" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mailer/zipball/d43e84d9522345f96ad6283d5dfccc8c1cfc299b", - "reference": "d43e84d9522345f96ad6283d5dfccc8c1cfc299b", + "url": "https://api.github.com/repos/symfony/mailer/zipball/a32f3f45f1990db8c4341d5122a7d3a381c7e575", + "reference": "a32f3f45f1990db8c4341d5122a7d3a381c7e575", "shasum": "" }, "require": { @@ -6891,7 +6975,7 @@ "description": "Helps sending emails", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/mailer/tree/v7.3.2" + "source": "https://github.com/symfony/mailer/tree/v7.3.3" }, "funding": [ { @@ -6911,7 +6995,7 @@ "type": "tidelift" } ], - "time": "2025-07-15T11:36:08+00:00" + "time": "2025-08-13T11:49:31+00:00" }, { "name": "symfony/mime", @@ -7672,16 +7756,16 @@ }, { "name": "symfony/process", - "version": "v7.3.0", + "version": "v7.3.3", "source": { "type": "git", "url": "https://github.com/symfony/process.git", - "reference": "40c295f2deb408d5e9d2d32b8ba1dd61e36f05af" + "reference": "32241012d521e2e8a9d713adb0812bb773b907f1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/40c295f2deb408d5e9d2d32b8ba1dd61e36f05af", - "reference": "40c295f2deb408d5e9d2d32b8ba1dd61e36f05af", + "url": "https://api.github.com/repos/symfony/process/zipball/32241012d521e2e8a9d713adb0812bb773b907f1", + "reference": "32241012d521e2e8a9d713adb0812bb773b907f1", "shasum": "" }, "require": { @@ -7713,7 +7797,7 @@ "description": "Executes commands in sub-processes", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/process/tree/v7.3.0" + "source": "https://github.com/symfony/process/tree/v7.3.3" }, "funding": [ { @@ -7724,12 +7808,16 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2025-04-17T09:11:12+00:00" + "time": "2025-08-18T09:42:54+00:00" }, { "name": "symfony/psr-http-message-bridge", @@ -7984,16 +8072,16 @@ }, { "name": "symfony/string", - "version": "v7.3.2", + "version": "v7.3.3", "source": { "type": "git", "url": "https://github.com/symfony/string.git", - "reference": "42f505aff654e62ac7ac2ce21033818297ca89ca" + "reference": "17a426cce5fd1f0901fefa9b2a490d0038fd3c9c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/string/zipball/42f505aff654e62ac7ac2ce21033818297ca89ca", - "reference": "42f505aff654e62ac7ac2ce21033818297ca89ca", + "url": "https://api.github.com/repos/symfony/string/zipball/17a426cce5fd1f0901fefa9b2a490d0038fd3c9c", + "reference": "17a426cce5fd1f0901fefa9b2a490d0038fd3c9c", "shasum": "" }, "require": { @@ -8051,7 +8139,7 @@ "utf8" ], "support": { - "source": "https://github.com/symfony/string/tree/v7.3.2" + "source": "https://github.com/symfony/string/tree/v7.3.3" }, "funding": [ { @@ -8071,7 +8159,7 @@ "type": "tidelift" } ], - "time": "2025-07-10T08:47:49+00:00" + "time": "2025-08-25T06:35:40+00:00" }, { "name": "symfony/translation", @@ -8326,16 +8414,16 @@ }, { "name": "symfony/var-dumper", - "version": "v7.3.2", + "version": "v7.3.3", "source": { "type": "git", "url": "https://github.com/symfony/var-dumper.git", - "reference": "53205bea27450dc5c65377518b3275e126d45e75" + "reference": "34d8d4c4b9597347306d1ec8eb4e1319b1e6986f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/53205bea27450dc5c65377518b3275e126d45e75", - "reference": "53205bea27450dc5c65377518b3275e126d45e75", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/34d8d4c4b9597347306d1ec8eb4e1319b1e6986f", + "reference": "34d8d4c4b9597347306d1ec8eb4e1319b1e6986f", "shasum": "" }, "require": { @@ -8389,7 +8477,7 @@ "dump" ], "support": { - "source": "https://github.com/symfony/var-dumper/tree/v7.3.2" + "source": "https://github.com/symfony/var-dumper/tree/v7.3.3" }, "funding": [ { @@ -8409,7 +8497,7 @@ "type": "tidelift" } ], - "time": "2025-07-29T20:02:46+00:00" + "time": "2025-08-13T11:49:31+00:00" }, { "name": "tijsverkoyen/css-to-inline-styles", @@ -11980,16 +12068,16 @@ }, { "name": "spatie/backtrace", - "version": "1.7.4", + "version": "1.8.1", "source": { "type": "git", "url": "https://github.com/spatie/backtrace.git", - "reference": "cd37a49fce7137359ac30ecc44ef3e16404cccbe" + "reference": "8c0f16a59ae35ec8c62d85c3c17585158f430110" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/backtrace/zipball/cd37a49fce7137359ac30ecc44ef3e16404cccbe", - "reference": "cd37a49fce7137359ac30ecc44ef3e16404cccbe", + "url": "https://api.github.com/repos/spatie/backtrace/zipball/8c0f16a59ae35ec8c62d85c3c17585158f430110", + "reference": "8c0f16a59ae35ec8c62d85c3c17585158f430110", "shasum": "" }, "require": { @@ -12027,7 +12115,8 @@ "spatie" ], "support": { - "source": "https://github.com/spatie/backtrace/tree/1.7.4" + "issues": "https://github.com/spatie/backtrace/issues", + "source": "https://github.com/spatie/backtrace/tree/1.8.1" }, "funding": [ { @@ -12039,7 +12128,7 @@ "type": "other" } ], - "time": "2025-05-08T15:41:09+00:00" + "time": "2025-08-26T08:22:30+00:00" }, { "name": "spatie/error-solutions", @@ -12360,16 +12449,16 @@ }, { "name": "symfony/yaml", - "version": "v7.3.2", + "version": "v7.3.3", "source": { "type": "git", "url": "https://github.com/symfony/yaml.git", - "reference": "b8d7d868da9eb0919e99c8830431ea087d6aae30" + "reference": "d4f4a66866fe2451f61296924767280ab5732d9d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/b8d7d868da9eb0919e99c8830431ea087d6aae30", - "reference": "b8d7d868da9eb0919e99c8830431ea087d6aae30", + "url": "https://api.github.com/repos/symfony/yaml/zipball/d4f4a66866fe2451f61296924767280ab5732d9d", + "reference": "d4f4a66866fe2451f61296924767280ab5732d9d", "shasum": "" }, "require": { @@ -12412,7 +12501,7 @@ "description": "Loads and dumps YAML files", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/yaml/tree/v7.3.2" + "source": "https://github.com/symfony/yaml/tree/v7.3.3" }, "funding": [ { @@ -12432,7 +12521,7 @@ "type": "tidelift" } ], - "time": "2025-07-10T08:47:49+00:00" + "time": "2025-08-27T11:34:33+00:00" }, { "name": "ta-tikoma/phpunit-architecture-test", @@ -12554,6 +12643,6 @@ "platform": { "php": "^8.2" }, - "platform-dev": [], - "plugin-api-version": "2.2.0" + "platform-dev": {}, + "plugin-api-version": "2.6.0" } diff --git a/config/app.php b/config/app.php index f12baf3..227cd05 100755 --- a/config/app.php +++ b/config/app.php @@ -59,7 +59,7 @@ return [ 'tld_shop' => env('APP_TLD_SHOP', '.lshop'), 'protocol' => env('APP_PROTOCOL', 'https://'), 'pre_url_main' => env('APP_URL_MAIN', ''), - 'pre_url_crm' => env('APP_URL_CRM', 'my.'), + 'pre_url_crm' => env('APP_PRE_URL_CRM', 'my.'), 'pre_url_portal' => env('APP_URL_PORTAL', 'in.'), 'checkout_url' => env('APP_URL_CHECKOUT', 'checkout.'), @@ -198,6 +198,7 @@ return [ App\Providers\AuthServiceProvider::class, // App\Providers\BroadcastServiceProvider::class, App\Providers\EventServiceProvider::class, + App\Providers\HorizonServiceProvider::class, App\Providers\DomainServiceProvider::class, App\Providers\RouteServiceProvider::class, Jenssegers\Date\DateServiceProvider::class, diff --git a/config/domains.php b/config/domains.php index 4aeb664..b45b8ac 100644 --- a/config/domains.php +++ b/config/domains.php @@ -30,13 +30,13 @@ return [ // Das CRM (z.B. my.mivita.care) 'crm' => [ - 'host' => env('APP_URL_CRM', 'my.') . env('APP_DOMAIN', 'mivita') . env('APP_TLD_CARE', '.care'), + 'host' => env('APP_PRE_URL_CRM', 'my.') . env('APP_DOMAIN', 'mivita') . env('APP_TLD_CARE', '.care'), 'type' => 'crm', ], // Das Partner-Portal (z.B. in.mivita.care) 'portal' => [ - 'host' => env('APP_URL_PORTAL', 'in.') . env('APP_DOMAIN', 'mivita') . env('APP_TLD_CARE', '.care'), + 'host' => env('APP_PRE_URL_PORTAL', 'in.') . env('APP_DOMAIN', 'mivita') . env('APP_TLD_CARE', '.care'), 'type' => 'portal', ], diff --git a/config/horizon.php b/config/horizon.php new file mode 100644 index 0000000..5101f6f --- /dev/null +++ b/config/horizon.php @@ -0,0 +1,213 @@ + env('HORIZON_DOMAIN'), + + /* + |-------------------------------------------------------------------------- + | Horizon Path + |-------------------------------------------------------------------------- + | + | This is the URI path where Horizon will be accessible from. Feel free + | to change this path to anything you like. Note that the URI will not + | affect the paths of its internal API that aren't exposed to users. + | + */ + + 'path' => env('HORIZON_PATH', 'horizon'), + + /* + |-------------------------------------------------------------------------- + | Horizon Redis Connection + |-------------------------------------------------------------------------- + | + | This is the name of the Redis connection where Horizon will store the + | meta information required for it to function. It includes the list + | of supervisors, failed jobs, job metrics, and other information. + | + */ + + 'use' => 'default', + + /* + |-------------------------------------------------------------------------- + | Horizon Redis Prefix + |-------------------------------------------------------------------------- + | + | This prefix will be used when storing all Horizon data in Redis. You + | may modify the prefix when you are running multiple installations + | of Horizon on the same server so that they don't have problems. + | + */ + + 'prefix' => env( + 'HORIZON_PREFIX', + Str::slug(env('APP_NAME', 'laravel'), '_').'_horizon:' + ), + + /* + |-------------------------------------------------------------------------- + | Horizon Route Middleware + |-------------------------------------------------------------------------- + | + | These middleware will get attached onto each Horizon route, giving you + | the chance to add your own middleware to this list or change any of + | the existing middleware. Or, you can simply stick with this list. + | + */ + + 'middleware' => ['web'], + + /* + |-------------------------------------------------------------------------- + | Queue Wait Time Thresholds + |-------------------------------------------------------------------------- + | + | This option allows you to configure when the LongWaitDetected event + | will be fired. Every connection / queue combination may have its + | own, unique threshold (in seconds) before this event is fired. + | + */ + + 'waits' => [ + 'redis:default' => 60, + ], + + /* + |-------------------------------------------------------------------------- + | Job Trimming Times + |-------------------------------------------------------------------------- + | + | Here you can configure for how long (in minutes) you desire Horizon to + | persist the recent and failed jobs. Typically, recent jobs are kept + | for one hour while all failed jobs are stored for an entire week. + | + */ + + 'trim' => [ + 'recent' => 60, + 'pending' => 60, + 'completed' => 60, + 'recent_failed' => 10080, + 'failed' => 10080, + 'monitored' => 10080, + ], + + /* + |-------------------------------------------------------------------------- + | Silenced Jobs + |-------------------------------------------------------------------------- + | + | Silencing a job will instruct Horizon to not place the job in the list + | of completed jobs within the Horizon dashboard. This setting may be + | used to fully remove any noisy jobs from the completed jobs list. + | + */ + + 'silenced' => [ + // App\Jobs\ExampleJob::class, + ], + + /* + |-------------------------------------------------------------------------- + | Metrics + |-------------------------------------------------------------------------- + | + | Here you can configure how many snapshots should be kept to display in + | the metrics graph. This will get used in combination with Horizon's + | `horizon:snapshot` schedule to define how long to retain metrics. + | + */ + + 'metrics' => [ + 'trim_snapshots' => [ + 'job' => 24, + 'queue' => 24, + ], + ], + + /* + |-------------------------------------------------------------------------- + | Fast Termination + |-------------------------------------------------------------------------- + | + | When this option is enabled, Horizon's "terminate" command will not + | wait on all of the workers to terminate unless the --wait option + | is provided. Fast termination can shorten deployment delay by + | allowing a new instance of Horizon to start while the last + | instance will continue to terminate each of its workers. + | + */ + + 'fast_termination' => false, + + /* + |-------------------------------------------------------------------------- + | Memory Limit (MB) + |-------------------------------------------------------------------------- + | + | This value describes the maximum amount of memory the Horizon master + | supervisor may consume before it is terminated and restarted. For + | configuring these limits on your workers, see the next section. + | + */ + + 'memory_limit' => 64, + + /* + |-------------------------------------------------------------------------- + | Queue Worker Configuration + |-------------------------------------------------------------------------- + | + | Here you may define the queue worker settings used by your application + | in all environments. These supervisors and settings handle all your + | queued jobs and will be provisioned by Horizon during deployment. + | + */ + + 'defaults' => [ + 'supervisor-1' => [ + 'connection' => 'redis', + 'queue' => ['default'], + 'balance' => 'auto', + 'autoScalingStrategy' => 'time', + 'maxProcesses' => 1, + 'maxTime' => 0, + 'maxJobs' => 0, + 'memory' => 128, + 'tries' => 1, + 'timeout' => 60, + 'nice' => 0, + ], + ], + + 'environments' => [ + 'production' => [ + 'supervisor-1' => [ + 'maxProcesses' => 10, + 'balanceMaxShift' => 1, + 'balanceCooldown' => 3, + ], + ], + + 'local' => [ + 'supervisor-1' => [ + 'maxProcesses' => 3, + ], + ], + ], +]; diff --git a/cron_script.sh b/cron_script.sh deleted file mode 100644 index a4d076b..0000000 --- a/cron_script.sh +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/bash -echo $(date) # Will print the output of date command -/Applications/MAMP/bin/php/php7.3.33/bin/php -v -/Applications/MAMP/bin/php/php7.3.33/bin/php ../artisan business:store 0 0 2>&1 -#/usr/bin/php74 -v -#/usr/bin/php74 ../artisan business:store 0 0 2>&1 -# php /path/to/artisan schedule:run 1>> /dev/null 2>&1 -# cd /path-to-your-project && php artisan schedule:run >> /dev/null 2>&1 \ No newline at end of file diff --git a/database/migrations/2022_03_07_131701_create_user_credits_table.php b/database/migrations/2022_03_07_131701_create_user_credits_table.php deleted file mode 100644 index 1a9db25..0000000 --- a/database/migrations/2022_03_07_131701_create_user_credits_table.php +++ /dev/null @@ -1,79 +0,0 @@ -id(); - - $table->unsignedInteger('auth_user_id')->nullable(); - $table->unsignedInteger('shopping_order_id')->nullable(); - $table->unsignedInteger('shopping_user_id')->nullable(); - - //invoice //credit - $table->string('type', 7)->index(); - - $table->string('str_number', 255)->nullable(); - $table->unsignedInteger('number', 255)->nullable(); - - $table->decimal('net', 13, 2)->nullable(); - $table->decimal('tax_rate', 8, 2)->nullable(); - $table->decimal('tax', 8, 2)->nullable(); - $table->decimal('total', 13, 2)->nullable(); - - $table->text('file')->nullable(); - $table->text('contents')->nullable(); - $table->text('infos')->nullable(); - - $table->string('subject')->nullable(); - $table->text('address')->nullable(); - - $table->boolean('paid')->default(false); - $table->date('paid_date')->nullable(); - - $table->unsignedInteger('cancellation_id')->nullable(); - $table->date('cancellation_date')->nullable(); - - $table->unsignedTinyInteger('status')->index()->default(0); - - $table->timestamps(); - $table->softDeletes(); - - $table->foreign('auth_user_id') - ->references('id') - ->on('users'); - - $table->foreign('shopping_order_id') - ->references('id') - ->on('shopping_orders'); - - $table->foreign('shopping_user_id') - ->references('id') - ->on('shopping_users'); - - $table->foreign('cancellation_id') - ->references('id') - ->on('users'); - }); - } - - /** - * Reverse the migrations. - * - * @return void - */ - public function down() - { - Schema::dropIfExists('user_credits'); - } -} diff --git a/database/migrations/2022_03_07_131701_create_user_invoice_credits_table.php b/database/migrations/2022_03_07_131701_create_user_invoice_credits_table.php deleted file mode 100644 index 079ec6d..0000000 --- a/database/migrations/2022_03_07_131701_create_user_invoice_credits_table.php +++ /dev/null @@ -1,81 +0,0 @@ -increments('id'); - - $table->unsignedInteger('auth_user_id')->index()->nullable(); - $table->unsignedInteger('shopping_order_id')->index()->nullable(); - $table->unsignedInteger('shopping_user_id')->index()->nullable(); - - //invoice //credit - $table->string('type', 7)->index(); - $table->unsignedTinyInteger('month')->nullable(); - $table->unsignedSmallInteger('year')->nullable(); - - $table->string('full_number', 255)->nullable(); - $table->unsignedInteger('number')->nullable(); - - $table->decimal('net', 13, 2)->nullable(); - $table->decimal('tax_rate', 8, 2)->nullable(); - $table->decimal('tax', 8, 2)->nullable(); - $table->decimal('total', 13, 2)->nullable(); - - $table->text('file')->nullable(); - $table->text('contents')->nullable(); - $table->text('infos')->nullable(); - - $table->string('subject')->nullable(); - $table->text('address')->nullable(); - - $table->boolean('paid')->default(false); - $table->date('paid_date')->nullable(); - - $table->unsignedInteger('cancellation_id')->nullable(); - $table->date('cancellation_date')->nullable(); - - $table->unsignedTinyInteger('status')->index()->default(0); - - $table->timestamps(); - $table->softDeletes(); - - $table->foreign('auth_user_id') - ->references('id') - ->on('users'); - - $table->foreign('shopping_order_id') - ->references('id') - ->on('shopping_orders'); - - $table->foreign('shopping_user_id') - ->references('id') - ->on('shopping_users'); - - $table->foreign('cancellation_id') - ->references('id') - ->on('user_invoice_credits'); - }); - } - - /** - * Reverse the migrations. - * - * @return void - */ - public function down() - { - Schema::dropIfExists('user_invoice_credits'); - } -} diff --git a/database/migrations/2022_03_08_102231_create_users_sales_volumes_table.php b/database/migrations/2022_03_08_102231_create_users_sales_volumes_table.php deleted file mode 100644 index cb76599..0000000 --- a/database/migrations/2022_03_08_102231_create_users_sales_volumes_table.php +++ /dev/null @@ -1,56 +0,0 @@ -increments('id'); - $table->unsignedInteger('user_id'); - $table->unsignedInteger('shopping_order_id')->index()->nullable(); - - $table->unsignedTinyInteger('month')->nullable(); - $table->unsignedSmallInteger('year')->nullable(); - $table->date('date')->nullable(); - - $table->unsignedInteger('points')->nullable(); - $table->unsignedInteger('month_points')->nullable(); - - $table->decimal('total_net', 13, 2)->nullable(); - $table->decimal('month_total_net', 13, 2)->nullable(); - - $table->string('message', 255)->nullable(); - $table->unsignedTinyInteger('status')->index()->default(0); - - $table->timestamps(); - - $table->foreign('user_id') - ->references('id') - ->on('users'); - - $table->foreign('shopping_order_id') - ->references('id') - ->on('shopping_orders'); - - }); - } - - /** - * Reverse the migrations. - * - * @return void - */ - public function down() - { - Schema::dropIfExists('users_sales_volumes'); - } -} diff --git a/database/migrations/2022_07_25_140152_create_user_businesses_table.php b/database/migrations/2022_07_25_140152_create_user_businesses_table.php deleted file mode 100644 index 5a5dc0b..0000000 --- a/database/migrations/2022_07_25_140152_create_user_businesses_table.php +++ /dev/null @@ -1,95 +0,0 @@ -increments('id'); - - $table->unsignedInteger('user_id'); - $table->unsignedTinyInteger('month')->nullable(); - $table->unsignedSmallInteger('year')->nullable(); - - $table->unsignedInteger('m_level_id')->nullable(); - $table->unsignedInteger('m_sponsor_id')->nullable(); - $table->text('sponsor')->nullable(); - - $table->string('m_sponsor_name')->nullable(); - $table->string('user_level_name')->nullable(); - - $table->boolean('active_account')->default(false); - $table->date('payment_account_date')->nullable(); - $table->date('active_date')->nullable(); - - $table->unsignedInteger('m_account')->nullable(); - - $table->string('email')->nullable(); - $table->string('first_name')->nullable(); - $table->string('last_name')->nullable(); - - $table->integer('sales_volume_points')->nullable(); - $table->integer('sales_volume_points_shop')->nullable(); - $table->integer('sales_volume_points_sum')->nullable(); - - $table->decimal('sales_volume_total', 13, 2)->nullable(); - $table->decimal('sales_volume_total_shop', 13, 2)->nullable(); - $table->decimal('sales_volume_total_sum', 13, 2)->nullable(); - - $table->unsignedTinyInteger('margin')->nullable(); - $table->unsignedTinyInteger('margin_shop')->nullable(); - - $table->decimal('commission_shop_sales', 13, 2)->nullable(); - - $table->unsignedSmallInteger('qual_kp')->nullable(); - $table->unsignedInteger('qual_tp')->nullable(); - - $table->integer('total_tp')->nullable(); - $table->integer('total_qual_tp')->nullable(); - - $table->decimal('commission_lines_total', 13, 2)->nullable(); - $table->decimal('commission_shop_sales', 13, 2)->nullable(); - - $table->text('businessLines')->nullable(); - $table->text('userItems')->nullable(); - $table->text('qual_user_level')->nullable(); - - - $table->timestamps(); - - /*$table->foreign('user_id') - ->references('id') - ->on('users'); - - $table->foreign('m_level') - ->references('id') - ->on('user_levels'); - - $table->foreign('m_sponsor') - ->references('id') - ->on('users');*/ - - - }); - } - - /** - * Reverse the migrations. - * - * @return void - */ - public function down() - { - Schema::dropIfExists('user_businesses'); - } -} diff --git a/database/migrations/2025_08_19_150653_create_jobs_table.php b/database/migrations/2025_08_19_150653_create_jobs_table.php new file mode 100644 index 0000000..6098d9b --- /dev/null +++ b/database/migrations/2025_08_19_150653_create_jobs_table.php @@ -0,0 +1,32 @@ +bigIncrements('id'); + $table->string('queue')->index(); + $table->longText('payload'); + $table->unsignedTinyInteger('attempts'); + $table->unsignedInteger('reserved_at')->nullable(); + $table->unsignedInteger('available_at'); + $table->unsignedInteger('created_at'); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('jobs'); + } +}; diff --git a/database/migrations/2025_08_19_150658_create_failed_jobs_table.php b/database/migrations/2025_08_19_150658_create_failed_jobs_table.php new file mode 100644 index 0000000..249da81 --- /dev/null +++ b/database/migrations/2025_08_19_150658_create_failed_jobs_table.php @@ -0,0 +1,32 @@ +id(); + $table->string('uuid')->unique(); + $table->text('connection'); + $table->text('queue'); + $table->longText('payload'); + $table->longText('exception'); + $table->timestamp('failed_at')->useCurrent(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('failed_jobs'); + } +}; diff --git a/dev/bak/RouteServiceProvider.php.bak b/dev/bak/RouteServiceProvider.php similarity index 100% rename from dev/bak/RouteServiceProvider.php.bak rename to dev/bak/RouteServiceProvider.php diff --git a/dev/bak/Subdomain.php.bak b/dev/bak/Subdomain.php similarity index 100% rename from dev/bak/Subdomain.php.bak rename to dev/bak/Subdomain.php diff --git a/dev/code/Services/BusinessPlan/TreeCalcBot.php b/dev/code/Services/BusinessPlan/TreeCalcBot.php deleted file mode 100644 index fdceab9..0000000 --- a/dev/code/Services/BusinessPlan/TreeCalcBot.php +++ /dev/null @@ -1,599 +0,0 @@ -validateInput($month, $year); - $this->initializeDate($month, $year); - $this->initFrom = $initFrom; - - // Dependency Injection mit Fallback - $this->repository = $repository ?? new BusinessUserRepository($month, $year); - $this->renderer = $renderer ?? new TreeHtmlRenderer($initFrom); - $this->logger = $logger ?? app(LogContract::class); - } - - /** - * Initialisiert die Business-Struktur für Admin-Ansicht - */ - public function initStructureAdmin(bool $check = true): void - { - try { - $storedStructure = null; - - if ($check) { - $storedStructure = $this->repository->getStoredStructure(); - } - - if ($storedStructure) { - $this->logger->info("Loading stored business structure for {$this->date->month}/{$this->date->year}"); - $this->loadStoredStructure($storedStructure); - } else { - $this->logger->info("Building fresh business structure for {$this->date->month}/{$this->date->year}"); - $this->buildFreshStructure(); - } - - } catch (\Exception $e) { - $this->logger->error("Error initializing admin structure: " . $e->getMessage()); - throw $e; - } - } - - /** - * Initialisiert die Struktur für einen spezifischen User - */ - public function initStructureUser(int $userId): void - { - try { - $this->logger->info("Initializing structure for user: {$userId}"); - - $user = $this->repository->getUserWithRelations($userId); - if (!$user) { - $this->logger->warning("User not found: {$userId}"); - return; - } - - $businessUserItem = new BusinessUserItemOptimized($this->date); - $businessUserItem->makeUserFromModel($user); // ✅ Nutzt bereits geladene Relations - $this->addUserIdToProcessed($userId); - $this->businessUsers[] = $businessUserItem; - - $storedStructure = $this->repository->getStoredStructure(); - if ($storedStructure) { - $this->loadStoredParentsUsers($storedStructure); - if (isset($this->businessUsers[0]) && $this->businessUsers[0]->sponsor) { - $this->loadStoredSponsorUser($this->businessUsers[0]->sponsor->user_id); - } - } else { - $this->loadParentsUsers(); - $this->loadSponsorUser($userId); - } - - } catch (\Exception $e) { - $this->logger->error("Error initializing user structure for {$userId}: " . $e->getMessage()); - throw $e; - } - } - - /** - * Initialisiert detaillierte Business-User-Informationen - */ - public function initBusinesslUserDetail(User $user): void - { - try { - $this->logger->info("Initializing business user details for: {$user->id}"); - - $this->businessUser = new BusinessUserItemOptimized($this->date); - $this->businessUser->makeUserFromModel($user); // ✅ Nutzt bereits User-Objekt - $this->businessUser->checkSponsor($user); - - if (!$this->businessUser->isSave()) { - // Aufbau der Struktur für den User in die unendliche Tiefe - $this->businessUser->readParentsBusinessUsers(); - - // Calculate Points in Lines (optimiert für Memory-Effizienz) - if (count($this->businessUser->businessUserItems) > 0) { - $this->calculateUserPointsOptimized($this->businessUser->businessUserItems, 1); - } - - // Qualifikation nach qual_kp (KundenPoints) und qual_pp (PaylinePoints) - $this->businessUser->calcQualPP(); - } - - } catch (\Exception $e) { - $this->logger->error("Error initializing business user details for {$user->id}: " . $e->getMessage()); - throw $e; - } - } - - /** - * Gibt Growth Bonus zurück (ab Linie 6) - */ - public function getGrowthBonus(): array - { - if (!$this->businessUser || !$this->businessUser->business_lines) { - return []; - } - - if (count($this->businessUser->business_lines) > 6) { - $bLines = $this->businessUser->business_lines->toArray(); - return array_slice($bLines, 6); - } - - return []; - } - - /** - * Gibt Wert für spezifische Linie zurück - */ - public function getKeybyLine(int $line, string $key) - { - if (!$this->businessUser || !$this->businessUser->business_lines) { - return 0; - } - - $bLines = $this->businessUser->business_lines; - if (!isset($bLines[$line])) { - return 0; - } - - $lineData = $bLines[$line]; - - if ($lineData instanceof stdClass) { - return $lineData->{$key} ?? 0; - } - - if (is_array($lineData)) { - return $lineData[$key] ?? 0; - } - - return 0; - } - - /** - * HTML-Rendering Methoden (Delegation an Renderer) - */ - public function makeHtmlTree(): string - { - return $this->renderer->renderTree($this->businessUsers); - } - - public function makeParentlessHtml(): string - { - return $this->renderer->renderParentless($this->parentless); - } - - public function makeSponsorHtml(): string - { - return $this->renderer->renderSponsor($this->sponsor); - } - - /** - * Getter-Methoden (Rückwärtskompatibilität) - */ - public function getItems(): array - { - return $this->businessUsers; - } - - public function isParentless(): bool - { - return !empty($this->parentless); - } - - /** - * Static Methoden (Rückwärtskompatibilität) - */ - public static function isFromStored(int $month, int $year): ?UserBusinessStructure - { - $structure = UserBusinessStructure::where('year', $year) - ->where('month', $month) - ->first(); - - return ($structure && $structure->completed) ? $structure : null; - } - - public static function addUserID(int $id): void - { - // Deprecated: Wird durch Instanz-Methode ersetzt - // Bleibt für Rückwärtskompatibilität erhalten - } - - // ===== Private Methoden ===== - - /** - * Validiert Eingabeparameter - */ - private function validateInput(int $month, int $year): void - { - if ($month < 1 || $month > 12) { - throw new \InvalidArgumentException("Invalid month: {$month}"); - } - - $currentYear = (int) date('Y'); - if ($year < 2020 || $year > $currentYear + 1) { - throw new \InvalidArgumentException("Invalid year: {$year}"); - } - } - - /** - * Initialisiert Datums-Objekt - */ - private function initializeDate(int $month, int $year): void - { - $this->date = new stdClass(); - $date = Carbon::parse($year . '-' . $month . '-1'); - $this->date->month = $month; - $this->date->year = $year; - $this->date->start_date = $date->format('Y-m-d H:i:s'); - $this->date->end_date = $date->endOfMonth()->format('Y-m-d H:i:s'); - } - - /** - * Lädt gespeicherte Struktur - */ - private function loadStoredStructure(UserBusinessStructure $structure): void - { - $this->loadStoredRootUsers($structure); - $this->loadStoredParentsUsers($structure); - $this->loadStoredParentlessUsers($structure); - } - - /** - * Baut frische Struktur auf - */ - private function buildFreshStructure(): void - { - $this->loadRootUsers(); - $this->loadParentsUsers(); - $this->loadParentlessUsers(); - } - - /** - * Lädt Root-Users (optimiert mit Memory-Monitoring) - */ - private function loadRootUsers(): void - { - $startMemory = memory_get_usage(); - $users = $this->repository->getRootUsers(); - - foreach ($users as $user) { - // Memory-Check vor jeder User-Verarbeitung - $this->checkMemoryUsage('loadRootUsers', $user->id); - - $businessUserItem = new BusinessUserItemOptimized($this->date); - $businessUserItem->makeUserFromModel($user); // ✅ Nutzt bereits geladene Relations - $this->addUserIdToProcessed($user->id); - $this->businessUsers[] = $businessUserItem; - } - - $endMemory = memory_get_usage(); - $memoryUsed = $this->formatBytes($endMemory - $startMemory); - - $this->logger->info("Loaded " . count($users) . " root users with optimized relations. Memory used: {$memoryUsed}"); - } - - /** - * Lädt Parent-Users für alle Business-Users - */ - private function loadParentsUsers(): void - { - foreach ($this->businessUsers as $businessUser) { - $businessUser->readParentsBusinessUsers(); - } - } - - /** - * Lädt parentlose Users (Memory-optimiert) - */ - private function loadParentlessUsers(): void - { - $count = 0; - $excludeIds = array_keys($this->processedUserIds); - - foreach ($this->repository->getParentlessUsers($excludeIds) as $user) { - $businessUserItem = new BusinessUserItemOptimized($this->date); - $businessUserItem->makeUserFromModel($user); // ✅ Nutzt bereits geladene Relations - $this->parentless[] = $businessUserItem; - $count++; - } - - $this->logger->info("Loaded {$count} parentless users with optimized relations"); - } - - /** - * Lädt Sponsor für User - */ - private function loadSponsorUser(int $userId): void - { - try { - $sponsorUser = $this->repository->getSponsorForUser($userId); - - if ($sponsorUser) { - $this->sponsor = new BusinessUserItem($this->date); - $this->sponsor->makeUser($sponsorUser->id); - $this->logger->info("Loaded sponsor {$sponsorUser->id} for user {$userId}"); - } - } catch (\Exception $e) { - $this->logger->warning("Could not load sponsor for user {$userId}: " . $e->getMessage()); - } - } - - /** - * Gespeicherte Root-Users laden - */ - private function loadStoredRootUsers(UserBusinessStructure $structure): void - { - if (!$structure->structure) { - return; - } - - foreach ($structure->structure as $obj) { - $businessUserItem = new BusinessUserItem($this->date); - $businessUserItem->makeUser($obj->user_id); - $this->addUserIdToProcessed($obj->user_id); - $this->businessUsers[] = $businessUserItem; - } - } - - /** - * Gespeicherte Parent-Users laden - */ - private function loadStoredParentsUsers(UserBusinessStructure $structure): void - { - foreach ($this->businessUsers as $businessUser) { - $businessUser->readStoredParentsBusinessUsers($structure->structure); - } - } - - /** - * Gespeicherte parentlose Users laden - */ - private function loadStoredParentlessUsers(UserBusinessStructure $structure): void - { - if (!$structure->parentless) { - return; - } - - foreach ($structure->parentless as $obj) { - if (!isset($this->processedUserIds[$obj->user_id])) { - $businessUserItem = new BusinessUserItem($this->date); - $businessUserItem->makeUser($obj->user_id); - $this->parentless[] = $businessUserItem; - } - } - } - - /** - * Gespeicherten Sponsor laden - */ - private function loadStoredSponsorUser(int $userId): void - { - $this->sponsor = new BusinessUserItem($this->date); - $this->sponsor->makeUser($userId); - } - - /** - * Optimierte Punkte-Berechnung (Stack-basiert mit korrekter Depth-First Reihenfolge) - * - * KRITISCH: Stack muss gleiche Reihenfolge wie Original-Rekursion produzieren - * Original: Depth-First Traversierung (erst tief, dann Punkte addieren) - * Stack: Muss umgekehrt arbeiten - erst alle Kinder sammeln, dann von tief zu flach verarbeiten - */ - private function calculateUserPointsOptimized(array $businessUserItems, int $startLine): void - { - $processingStack = []; - $collectionStack = []; // Sammelt Items in korrekter Reihenfolge - - // Phase 1: Sammle alle Items in Depth-First Reihenfolge - foreach ($businessUserItems as $item) { - $collectionStack[] = ['item' => $item, 'line' => $startLine, 'depth' => 0]; - } - - // Expandiere alle Kinder (Depth-First) - $processedItems = []; - while (!empty($collectionStack)) { - $current = array_shift($collectionStack); // FIFO für Breadth-First Sammlung - $item = $current['item']; - $line = $current['line']; - $depth = $current['depth']; - - // Markiere für Verarbeitung (mit Tiefe für spätere Sortierung) - $processingStack[] = [ - 'item' => $item, - 'line' => $line, - 'depth' => $depth, - 'id' => $item->user_id ?? uniqid() - ]; - - // Füge Kinder hinzu (werden später verarbeitet = Depth-First) - if (isset($item->businessUserItems) && count($item->businessUserItems) > 0) { - // Kinder in umgekehrter Reihenfolge hinzufügen für korrekte Stack-Verarbeitung - $children = array_reverse($item->businessUserItems); - foreach ($children as $childItem) { - array_unshift($collectionStack, [ - 'item' => $childItem, - 'line' => $line + 1, - 'depth' => $depth + 1 - ]); - } - } - } - - // Phase 2: Sortiere nach Tiefe (tiefste zuerst, wie bei Rekursion) - usort($processingStack, function($a, $b) { - return $b['depth'] <=> $a['depth']; // Tiefste zuerst - }); - - // Phase 3: Verarbeite in korrekter Reihenfolge (von tief zu flach) - foreach ($processingStack as $current) { - $item = $current['item']; - $line = $current['line']; - - try { - // Business Line initialisieren falls nötig - if (!isset($this->businessUser->business_lines[$line])) { - $obj = new stdClass(); - $obj->points = 0; - $this->businessUser->addBusinessLineToUser($line, $obj); - } - - // Punkte hinzufügen (mit Validierung) - $points = (float) ($item->sales_volume_points_TP_sum ?? 0); - if ($points > 0) { - $this->businessUser->addBusinessLinePoints($line, $points); - $this->businessUser->addTotalTP($points); - } - - $this->logger->debug("Processed user {$current['id']} at line {$line} with {$points} points"); - - } catch (\Exception $e) { - $this->logger->error("Error processing user points for {$current['id']}: " . $e->getMessage()); - } - } - - $this->logger->info("Processed " . count($processingStack) . " business user items in depth-first order"); - } - - /** - * User-ID zu verarbeiteten IDs hinzufügen - */ - private function addUserIdToProcessed(int $id): void - { - $this->processedUserIds[$id] = true; - } - - /** - * Prüft ob User bereits verarbeitet wurde - */ - private function isUserProcessed(int $id): bool - { - return isset($this->processedUserIds[$id]); - } - - /** - * Memory-Monitoring Methoden - */ - private function checkMemoryUsage(string $operation, $identifier = null): void - { - $currentMemory = memory_get_usage(); - $memoryLimit = $this->parseMemoryLimit(ini_get('memory_limit')); - $memoryPercent = ($currentMemory / $memoryLimit) * 100; - - if ($memoryPercent > 80) { - $currentFormatted = $this->formatBytes($currentMemory); - $limitFormatted = $this->formatBytes($memoryLimit); - - $this->logger->warning("High memory usage detected in {$operation}", [ - 'identifier' => $identifier, - 'current_memory' => $currentFormatted, - 'memory_limit' => $limitFormatted, - 'usage_percent' => round($memoryPercent, 2) - ]); - - // Garbage Collection bei hohem Memory-Verbrauch - if ($memoryPercent > 90) { - $this->logger->warning("Critical memory usage - forcing garbage collection"); - gc_collect_cycles(); - } - } - } - - private function parseMemoryLimit(string $limit): int - { - $limit = trim($limit); - $last = strtolower($limit[strlen($limit)-1]); - $number = (int) $limit; - - switch($last) { - case 'g': $number *= 1024; - case 'm': $number *= 1024; - case 'k': $number *= 1024; - } - - return $number; - } - - private function formatBytes(int $bytes, int $precision = 2): string - { - $units = array('B', 'KB', 'MB', 'GB', 'TB'); - - for ($i = 0; $bytes > 1024 && $i < count($units) - 1; $i++) { - $bytes /= 1024; - } - - return round($bytes, $precision) . ' ' . $units[$i]; - } - - /** - * Public Properties für Rückwärtskompatibilität - */ - public function __get(string $name) - { - switch ($name) { - case 'date': - return $this->date; - case 'business_user': - return $this->businessUser; - case 'business_users': - return $this->businessUsers; - case 'parentless': - return $this->parentless; - default: - throw new \InvalidArgumentException("Property {$name} does not exist"); - } - } - - public function __set(string $name, $value) - { - switch ($name) { - case 'business_users': - $this->businessUsers = $value; - break; - case 'parentless': - $this->parentless = $value; - break; - default: - throw new \InvalidArgumentException("Property {$name} cannot be set"); - } - } -} \ No newline at end of file diff --git a/dev/subdomain-optimization/DomainService.php b/dev/subdomain-optimization/DomainService.php deleted file mode 100644 index 3567d64..0000000 --- a/dev/subdomain-optimization/DomainService.php +++ /dev/null @@ -1,272 +0,0 @@ -domainConfig = $this->loadDomainConfiguration(); - } - - /** - * Load domain configuration from config files - */ - private function loadDomainConfiguration(): array - { - return [ - 'main_domain' => config('app.domain'), - 'main_tld' => config('app.tld_care'), - 'shop_tld' => config('app.tld_shop'), - 'protocol' => config('app.protocol'), - 'subdomains' => [ - 'crm' => config('app.pre_url_crm', 'my.'), - 'portal' => config('app.pre_url_portal', 'in.'), - 'checkout' => config('app.pre_url_checkout', 'checkout.'), - ] - ]; - } - - /** - * Determine the type of subdomain - */ - public function getSubdomainType(string $subdomain): string - { - // Check if it's a fixed subdomain - if (in_array($subdomain, self::FIXED_SUBDOMAINS)) { - return match($subdomain) { - 'my' => 'crm', - 'in' => 'portal', - 'checkout' => 'checkout', - default => 'unknown' - }; - } - - // Check if it's a valid user shop - if ($this->isValidUserShop($subdomain)) { - return 'user-shop'; - } - - return 'unknown'; - } - - /** - * Check if a subdomain represents a valid user shop - */ - public function isValidUserShop(string $slug): bool - { - $cacheKey = "user_shop_valid_{$slug}"; - - return Cache::remember($cacheKey, self::CACHE_TTL, function () use ($slug) { - $userShop = UserShop::where('slug', $slug)->first(); - - if (!$userShop) { - return false; - } - - if (!$userShop->active) { - return false; - } - - if (!$userShop->user) { - return false; - } - - if (!$userShop->user->isActiveShop()) { - return false; - } - - return true; - }); - } - - /** - * Get user shop by slug with caching - */ - public function getUserShop(string $slug): ?UserShop - { - if (!$this->isValidUserShop($slug)) { - return null; - } - - $cacheKey = "user_shop_{$slug}"; - - return Cache::remember($cacheKey, self::CACHE_TTL, function () use ($slug) { - return UserShop::where('slug', $slug) - ->with('user') - ->first(); - }); - } - - /** - * Parse domain from request and determine context - */ - public function parseDomain(string $host): array - { - $parts = explode('.', $host); - - // Handle different TLD scenarios - if (count($parts) < 2) { - return [ - 'type' => 'invalid', - 'domain' => $host, - 'subdomain' => null, - 'tld' => null - ]; - } - - // Extract TLD and domain - $tld = '.' . end($parts); - $domain = $parts[count($parts) - 2]; - - // Check for subdomain - $subdomain = null; - if (count($parts) > 2) { - $subdomain = $parts[0]; - } - - // Determine domain type - $type = $this->determineDomainType($domain, $subdomain, $tld); - - return [ - 'type' => $type, - 'domain' => $domain, - 'subdomain' => $subdomain, - 'tld' => $tld, - 'full_domain' => $host - ]; - } - - /** - * Determine domain type based on domain, subdomain, and TLD - */ - private function determineDomainType(string $domain, ?string $subdomain, string $tld): string - { - // Check if it's the main domain - if ($domain === $this->domainConfig['main_domain']) { - if ($subdomain === null) { - // Main domain without subdomain - if ($tld === $this->domainConfig['shop_tld']) { - return 'main-shop'; // mivita.shop - } - return 'main'; // mivita.care - } - - // Main domain with subdomain - return $this->getSubdomainType($subdomain); - } - - return 'unknown'; - } - - /** - * Build URL for specific domain type - */ - public function buildUrl(string $type, ?string $path = null, ?string $slug = null): string - { - $base = $this->domainConfig['protocol']; - - switch ($type) { - case 'main': - $base .= $this->domainConfig['main_domain'] . $this->domainConfig['main_tld']; - break; - - case 'main-shop': - $base .= $this->domainConfig['main_domain'] . $this->domainConfig['shop_tld']; - break; - - case 'crm': - $base .= rtrim($this->domainConfig['subdomains']['crm'], '.') . - $this->domainConfig['main_domain'] . $this->domainConfig['main_tld']; - break; - - case 'portal': - $base .= rtrim($this->domainConfig['subdomains']['portal'], '.') . - $this->domainConfig['main_domain'] . $this->domainConfig['main_tld']; - break; - - case 'checkout': - $base .= rtrim($this->domainConfig['subdomains']['checkout'], '.') . - $this->domainConfig['main_domain'] . $this->domainConfig['main_tld']; - break; - - case 'user-shop': - if (!$slug) { - throw new \InvalidArgumentException('Slug required for user-shop URLs'); - } - $base .= $slug . '.' . $this->domainConfig['main_domain'] . $this->domainConfig['main_tld']; - break; - - default: - throw new \InvalidArgumentException("Unknown domain type: {$type}"); - } - - if ($path) { - $base .= '/' . ltrim($path, '/'); - } - - return $base; - } - - /** - * Get domain configuration - */ - public function getDomainConfiguration(): array - { - return $this->domainConfig; - } - - /** - * Clear user shop cache - */ - public function clearUserShopCache(string $slug): void - { - Cache::forget("user_shop_valid_{$slug}"); - Cache::forget("user_shop_{$slug}"); - } - - /** - * Get default user shop for main domain (fallback) - */ - public function getDefaultUserShop(): ?UserShop - { - return $this->getUserShop('aloevera'); // Current hardcoded fallback - } - - /** - * Validate domain configuration - */ - public function validateConfiguration(): array - { - $errors = []; - - if (empty($this->domainConfig['main_domain'])) { - $errors[] = 'Main domain not configured'; - } - - if (empty($this->domainConfig['main_tld'])) { - $errors[] = 'Main TLD not configured'; - } - - if (empty($this->domainConfig['protocol'])) { - $errors[] = 'Protocol not configured'; - } - - return $errors; - } -} \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..7869eac --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,121 @@ +services: + laravel.test: + build: + context: './docker/8.4' + dockerfile: Dockerfile + args: + WWWGROUP: '${WWWGROUP}' + image: 'sail-8.4/app' + extra_hosts: + - 'host.docker.internal:host-gateway' + ports: + # - '${APP_PORT:-80}:80' + - '${VITE_PORT:-5173}:${VITE_PORT:-5173}' + environment: + WWWUSER: '${WWWUSER}' + LARAVEL_SAIL: 1 + XDEBUG_MODE: '${SAIL_XDEBUG_MODE:-off}' + XDEBUG_CONFIG: '${SAIL_XDEBUG_CONFIG:-client_host=host.docker.internal}' + IGNITION_LOCAL_SITES_PATH: '${PWD}' + volumes: + - '.:/var/www/html' + networks: + - sail + - proxy + depends_on: + - mysql + - redis + - mailpit + labels: + - "traefik.enable=true" + # Hauptdomain + - "traefik.http.routers.mivita.rule=Host(`mivita.test`)" + - "traefik.http.routers.mivita.entrypoints=websecure" + - "traefik.http.routers.mivita.tls=true" + - "traefik.http.routers.mivita.service=mivita-service" + # Wildcard für alle Subdomains - WICHTIG: Gleicher Service! + - "traefik.http.routers.mivita-sub.rule=HostRegexp(`^.+\\.mivita\\.test$`)" + - "traefik.http.routers.mivita-sub.entrypoints=websecure" + - "traefik.http.routers.mivita-sub.tls=true" + - "traefik.http.routers.mivita-sub.service=mivita-service" + - "traefik.http.routers.mivita-sub.priority=10" + # Service Definition - NUR EINMAL! + - "traefik.http.services.mivita-service.loadbalancer.server.port=80" + - "traefik.docker.network=proxy" + horizon: + image: sail-8.4/app + container_name: mivita-horizon-1 + restart: unless-stopped + command: php /var/www/html/artisan horizon + volumes: + - '.:/var/www/html' + networks: + - sail + depends_on: + - mysql + - redis + mysql: + image: 'mysql/mysql-server:8.0' + ports: + - '${FORWARD_DB_PORT:-33061}:3306' + environment: + MYSQL_ROOT_PASSWORD: '${DB_PASSWORD}' + MYSQL_ROOT_HOST: '%' + MYSQL_DATABASE: '${DB_DATABASE}' + MYSQL_USER: '${DB_USERNAME}' + MYSQL_PASSWORD: '${DB_PASSWORD}' + MYSQL_ALLOW_EMPTY_PASSWORD: 1 + MYSQL_EXTRA_OPTIONS: '${MYSQL_EXTRA_OPTIONS}' + volumes: + - 'sail-mysql:/var/lib/mysql' + - './docker/mysql/create-testing-database.sh:/docker-entrypoint-initdb.d/10-create-testing-database.sh' + networks: + - sail + healthcheck: + test: + - CMD + - mysqladmin + - ping + - '-p${DB_PASSWORD}' + retries: 3 + timeout: 5s + redis: + image: 'redis:alpine' + ports: + - '${FORWARD_REDIS_PORT:-6379}:6379' + volumes: + - 'sail-redis:/data' + networks: + - sail + healthcheck: + test: + - CMD + - redis-cli + - ping + retries: 3 + timeout: 5s + mailpit: + image: 'axllent/mailpit:latest' + ports: + - '${FORWARD_MAILPIT_PORT:-1025}:1025' + - '${FORWARD_MAILPIT_DASHBOARD_PORT:-8025}:8025' + networks: + - sail + - proxy + labels: + - "traefik.enable=true" + - "traefik.http.routers.mivita-mail.rule=Host(`mivita-mail.test`)" + - "traefik.http.routers.mivita-mail.entrypoints=websecure" + - "traefik.http.routers.mivita-mail.tls=true" + - "traefik.http.services.mivita-mail.loadbalancer.server.port=8025" + - "traefik.docker.network=proxy" +networks: + sail: + driver: bridge + proxy: + external: true +volumes: + sail-mysql: + driver: local + sail-redis: + driver: local diff --git a/docker/8.0/Dockerfile b/docker/8.0/Dockerfile new file mode 100644 index 0000000..b7b34e2 --- /dev/null +++ b/docker/8.0/Dockerfile @@ -0,0 +1,70 @@ +FROM ubuntu:24.04 + +LABEL maintainer="Taylor Otwell" + +ARG WWWGROUP +ARG NODE_VERSION=22 +ARG POSTGRES_VERSION=17 + +WORKDIR /var/www/html + +ENV DEBIAN_FRONTEND=noninteractive +ENV TZ=UTC +ENV SUPERVISOR_PHP_COMMAND="/usr/bin/php -d variables_order=EGPCS /var/www/html/artisan serve --host=0.0.0.0 --port=80" +ENV SUPERVISOR_PHP_USER="sail" + +RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone + +RUN echo "Acquire::http::Pipeline-Depth 0;" > /etc/apt/apt.conf.d/99custom && \ + echo "Acquire::http::No-Cache true;" >> /etc/apt/apt.conf.d/99custom && \ + echo "Acquire::BrokenProxy true;" >> /etc/apt/apt.conf.d/99custom + +RUN apt-get update && apt-get upgrade -y \ + && mkdir -p /etc/apt/keyrings \ + && apt-get install -y gnupg gosu curl ca-certificates zip unzip git supervisor sqlite3 libcap2-bin libpng-dev python3 dnsutils librsvg2-bin fswatch ffmpeg nano \ + && curl -sS 'https://keyserver.ubuntu.com/pks/lookup?op=get&search=0xb8dc7e53946656efbce4c1dd71daeaab4ad4cab6' | gpg --dearmor | tee /usr/share/keyrings/ppa_ondrej_php.gpg > /dev/null \ + && echo "deb [signed-by=/usr/share/keyrings/ppa_ondrej_php.gpg] https://ppa.launchpadcontent.net/ondrej/php/ubuntu noble main" > /etc/apt/sources.list.d/ppa_ondrej_php.list \ + && apt-get update \ + && apt-get install -y php8.0-cli php8.0-dev \ + php8.0-pgsql php8.0-sqlite3 php8.0-gd php8.0-imagick \ + php8.0-curl php8.0-memcached php8.0-mongodb \ + php8.0-imap php8.0-mysql php8.0-mbstring \ + php8.0-xml php8.0-zip php8.0-bcmath php8.0-soap \ + php8.0-intl php8.0-readline php8.0-pcov \ + php8.0-msgpack php8.0-igbinary php8.0-ldap \ + php8.0-redis php8.0-swoole php8.0-xdebug \ + && curl -sLS https://getcomposer.org/installer | php -- --install-dir=/usr/bin/ --filename=composer \ + && curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg \ + && echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_$NODE_VERSION.x nodistro main" > /etc/apt/sources.list.d/nodesource.list \ + && apt-get update \ + && apt-get install -y nodejs \ + && npm install -g npm \ + && npm install -g bun \ + && curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | gpg --dearmor | tee /usr/share/keyrings/yarnkey.gpg >/dev/null \ + && echo "deb [signed-by=/usr/share/keyrings/yarnkey.gpg] https://dl.yarnpkg.com/debian/ stable main" > /etc/apt/sources.list.d/yarn.list \ + && curl -sS https://www.postgresql.org/media/keys/ACCC4CF8.asc | gpg --dearmor | tee /usr/share/keyrings/pgdg.gpg >/dev/null \ + && echo "deb [signed-by=/usr/share/keyrings/pgdg.gpg] http://apt.postgresql.org/pub/repos/apt noble-pgdg main" > /etc/apt/sources.list.d/pgdg.list \ + && apt-get update \ + && apt-get install -y yarn \ + && apt-get install -y mysql-client \ + && apt-get install -y postgresql-client-$POSTGRES_VERSION \ + && apt-get -y autoremove \ + && apt-get clean \ + && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* + +RUN update-alternatives --set php /usr/bin/php8.0 + +RUN setcap "cap_net_bind_service=+ep" /usr/bin/php8.0 + +RUN userdel -r ubuntu +RUN groupadd --force -g $WWWGROUP sail +RUN useradd -ms /bin/bash --no-user-group -g $WWWGROUP -u 1337 sail + +COPY start-container /usr/local/bin/start-container +COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf +COPY php.ini /etc/php/8.0/cli/conf.d/99-sail.ini +RUN chmod +x /usr/local/bin/start-container + +EXPOSE 80/tcp + +ENTRYPOINT ["start-container"] diff --git a/docker/8.0/php.ini b/docker/8.0/php.ini new file mode 100644 index 0000000..0d8ce9e --- /dev/null +++ b/docker/8.0/php.ini @@ -0,0 +1,5 @@ +[PHP] +post_max_size = 100M +upload_max_filesize = 100M +variables_order = EGPCS +pcov.directory = . diff --git a/docker/8.0/start-container b/docker/8.0/start-container new file mode 100644 index 0000000..40c55df --- /dev/null +++ b/docker/8.0/start-container @@ -0,0 +1,26 @@ +#!/usr/bin/env bash + +if [ "$SUPERVISOR_PHP_USER" != "root" ] && [ "$SUPERVISOR_PHP_USER" != "sail" ]; then + echo "You should set SUPERVISOR_PHP_USER to either 'sail' or 'root'." + exit 1 +fi + +if [ ! -z "$WWWUSER" ]; then + usermod -u $WWWUSER sail +fi + +if [ ! -d /.composer ]; then + mkdir /.composer +fi + +chmod -R ugo+rw /.composer + +if [ $# -gt 0 ]; then + if [ "$SUPERVISOR_PHP_USER" = "root" ]; then + exec "$@" + else + exec gosu $WWWUSER "$@" + fi +else + exec /usr/bin/supervisord -c /etc/supervisor/conf.d/supervisord.conf +fi diff --git a/docker/8.0/supervisord.conf b/docker/8.0/supervisord.conf new file mode 100644 index 0000000..656da8a --- /dev/null +++ b/docker/8.0/supervisord.conf @@ -0,0 +1,14 @@ +[supervisord] +nodaemon=true +user=root +logfile=/var/log/supervisor/supervisord.log +pidfile=/var/run/supervisord.pid + +[program:php] +command=%(ENV_SUPERVISOR_PHP_COMMAND)s +user=%(ENV_SUPERVISOR_PHP_USER)s +environment=LARAVEL_SAIL="1" +stdout_logfile=/dev/stdout +stdout_logfile_maxbytes=0 +stderr_logfile=/dev/stderr +stderr_logfile_maxbytes=0 diff --git a/docker/8.1/Dockerfile b/docker/8.1/Dockerfile new file mode 100644 index 0000000..cc5c611 --- /dev/null +++ b/docker/8.1/Dockerfile @@ -0,0 +1,69 @@ +FROM ubuntu:24.04 + +LABEL maintainer="Taylor Otwell" + +ARG WWWGROUP +ARG NODE_VERSION=22 +ARG POSTGRES_VERSION=17 + +WORKDIR /var/www/html + +ENV DEBIAN_FRONTEND=noninteractive +ENV TZ=UTC +ENV SUPERVISOR_PHP_COMMAND="/usr/bin/php -d variables_order=EGPCS /var/www/html/artisan serve --host=0.0.0.0 --port=80" +ENV SUPERVISOR_PHP_USER="sail" + +RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone + +RUN echo "Acquire::http::Pipeline-Depth 0;" > /etc/apt/apt.conf.d/99custom && \ + echo "Acquire::http::No-Cache true;" >> /etc/apt/apt.conf.d/99custom && \ + echo "Acquire::BrokenProxy true;" >> /etc/apt/apt.conf.d/99custom + +RUN apt-get update && apt-get upgrade -y \ + && mkdir -p /etc/apt/keyrings \ + && apt-get install -y gnupg gosu curl ca-certificates zip unzip git supervisor sqlite3 libcap2-bin libpng-dev python3 dnsutils librsvg2-bin fswatch ffmpeg nano \ + && curl -sS 'https://keyserver.ubuntu.com/pks/lookup?op=get&search=0xb8dc7e53946656efbce4c1dd71daeaab4ad4cab6' | gpg --dearmor | tee /usr/share/keyrings/ppa_ondrej_php.gpg > /dev/null \ + && echo "deb [signed-by=/usr/share/keyrings/ppa_ondrej_php.gpg] https://ppa.launchpadcontent.net/ondrej/php/ubuntu noble main" > /etc/apt/sources.list.d/ppa_ondrej_php.list \ + && apt-get update \ + && apt-get install -y php8.1-cli php8.1-dev \ + php8.1-pgsql php8.1-sqlite3 php8.1-gd php8.1-imagick \ + php8.1-curl php8.1-mongodb \ + php8.1-imap php8.1-mysql php8.1-mbstring \ + php8.1-xml php8.1-zip php8.1-bcmath php8.1-soap \ + php8.1-intl php8.1-readline \ + php8.1-ldap \ + php8.1-msgpack php8.1-igbinary php8.1-redis php8.1-swoole \ + php8.1-memcached php8.1-pcov php8.1-xdebug \ + && curl -sLS https://getcomposer.org/installer | php -- --install-dir=/usr/bin/ --filename=composer \ + && curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg \ + && echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_$NODE_VERSION.x nodistro main" > /etc/apt/sources.list.d/nodesource.list \ + && apt-get update \ + && apt-get install -y nodejs \ + && npm install -g npm \ + && npm install -g bun \ + && curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | gpg --dearmor | tee /usr/share/keyrings/yarn.gpg >/dev/null \ + && echo "deb [signed-by=/usr/share/keyrings/yarn.gpg] https://dl.yarnpkg.com/debian/ stable main" > /etc/apt/sources.list.d/yarn.list \ + && curl -sS https://www.postgresql.org/media/keys/ACCC4CF8.asc | gpg --dearmor | tee /usr/share/keyrings/pgdg.gpg >/dev/null \ + && echo "deb [signed-by=/usr/share/keyrings/pgdg.gpg] http://apt.postgresql.org/pub/repos/apt noble-pgdg main" > /etc/apt/sources.list.d/pgdg.list \ + && apt-get update \ + && apt-get install -y yarn \ + && apt-get install -y mysql-client \ + && apt-get install -y postgresql-client-$POSTGRES_VERSION \ + && apt-get -y autoremove \ + && apt-get clean \ + && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* + +RUN setcap "cap_net_bind_service=+ep" /usr/bin/php8.1 + +RUN userdel -r ubuntu +RUN groupadd --force -g $WWWGROUP sail +RUN useradd -ms /bin/bash --no-user-group -g $WWWGROUP -u 1337 sail + +COPY start-container /usr/local/bin/start-container +COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf +COPY php.ini /etc/php/8.1/cli/conf.d/99-sail.ini +RUN chmod +x /usr/local/bin/start-container + +EXPOSE 80/tcp + +ENTRYPOINT ["start-container"] diff --git a/docker/8.1/php.ini b/docker/8.1/php.ini new file mode 100644 index 0000000..0d8ce9e --- /dev/null +++ b/docker/8.1/php.ini @@ -0,0 +1,5 @@ +[PHP] +post_max_size = 100M +upload_max_filesize = 100M +variables_order = EGPCS +pcov.directory = . diff --git a/docker/8.1/start-container b/docker/8.1/start-container new file mode 100644 index 0000000..40c55df --- /dev/null +++ b/docker/8.1/start-container @@ -0,0 +1,26 @@ +#!/usr/bin/env bash + +if [ "$SUPERVISOR_PHP_USER" != "root" ] && [ "$SUPERVISOR_PHP_USER" != "sail" ]; then + echo "You should set SUPERVISOR_PHP_USER to either 'sail' or 'root'." + exit 1 +fi + +if [ ! -z "$WWWUSER" ]; then + usermod -u $WWWUSER sail +fi + +if [ ! -d /.composer ]; then + mkdir /.composer +fi + +chmod -R ugo+rw /.composer + +if [ $# -gt 0 ]; then + if [ "$SUPERVISOR_PHP_USER" = "root" ]; then + exec "$@" + else + exec gosu $WWWUSER "$@" + fi +else + exec /usr/bin/supervisord -c /etc/supervisor/conf.d/supervisord.conf +fi diff --git a/docker/8.1/supervisord.conf b/docker/8.1/supervisord.conf new file mode 100644 index 0000000..656da8a --- /dev/null +++ b/docker/8.1/supervisord.conf @@ -0,0 +1,14 @@ +[supervisord] +nodaemon=true +user=root +logfile=/var/log/supervisor/supervisord.log +pidfile=/var/run/supervisord.pid + +[program:php] +command=%(ENV_SUPERVISOR_PHP_COMMAND)s +user=%(ENV_SUPERVISOR_PHP_USER)s +environment=LARAVEL_SAIL="1" +stdout_logfile=/dev/stdout +stdout_logfile_maxbytes=0 +stderr_logfile=/dev/stderr +stderr_logfile_maxbytes=0 diff --git a/docker/8.2/Dockerfile b/docker/8.2/Dockerfile new file mode 100644 index 0000000..536dffe --- /dev/null +++ b/docker/8.2/Dockerfile @@ -0,0 +1,70 @@ +FROM ubuntu:24.04 + +LABEL maintainer="Taylor Otwell" + +ARG WWWGROUP +ARG NODE_VERSION=22 +ARG POSTGRES_VERSION=17 + +WORKDIR /var/www/html + +ENV DEBIAN_FRONTEND=noninteractive +ENV TZ=UTC +ENV SUPERVISOR_PHP_COMMAND="/usr/bin/php -d variables_order=EGPCS /var/www/html/artisan serve --host=0.0.0.0 --port=80" +ENV SUPERVISOR_PHP_USER="sail" + +RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone + +RUN echo "Acquire::http::Pipeline-Depth 0;" > /etc/apt/apt.conf.d/99custom && \ + echo "Acquire::http::No-Cache true;" >> /etc/apt/apt.conf.d/99custom && \ + echo "Acquire::BrokenProxy true;" >> /etc/apt/apt.conf.d/99custom + +RUN apt-get update && apt-get upgrade -y \ + && mkdir -p /etc/apt/keyrings \ + && apt-get install -y gnupg gosu curl ca-certificates zip unzip git supervisor sqlite3 libcap2-bin libpng-dev python3 dnsutils librsvg2-bin fswatch ffmpeg nano \ + && curl -sS 'https://keyserver.ubuntu.com/pks/lookup?op=get&search=0xb8dc7e53946656efbce4c1dd71daeaab4ad4cab6' | gpg --dearmor | tee /etc/apt/keyrings/ppa_ondrej_php.gpg > /dev/null \ + && echo "deb [signed-by=/etc/apt/keyrings/ppa_ondrej_php.gpg] https://ppa.launchpadcontent.net/ondrej/php/ubuntu noble main" > /etc/apt/sources.list.d/ppa_ondrej_php.list \ + && apt-get update \ + && apt-get install -y php8.2-cli php8.2-dev \ + php8.2-pgsql php8.2-sqlite3 php8.2-gd php8.2-imagick \ + php8.2-curl php8.2-mongodb \ + php8.2-imap php8.2-mysql php8.2-mbstring \ + php8.2-xml php8.2-zip php8.2-bcmath php8.2-soap \ + php8.2-intl php8.2-readline \ + php8.2-ldap \ + php8.2-msgpack php8.2-igbinary php8.2-redis php8.2-swoole \ + php8.2-memcached php8.2-pcov php8.2-xdebug \ + && curl -sLS https://getcomposer.org/installer | php -- --install-dir=/usr/bin/ --filename=composer \ + && curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg \ + && echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_$NODE_VERSION.x nodistro main" > /etc/apt/sources.list.d/nodesource.list \ + && apt-get update \ + && apt-get install -y nodejs \ + && npm install -g npm \ + && npm install -g pnpm \ + && npm install -g bun \ + && curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | gpg --dearmor | tee /etc/apt/keyrings/yarn.gpg >/dev/null \ + && echo "deb [signed-by=/etc/apt/keyrings/yarn.gpg] https://dl.yarnpkg.com/debian/ stable main" > /etc/apt/sources.list.d/yarn.list \ + && curl -sS https://www.postgresql.org/media/keys/ACCC4CF8.asc | gpg --dearmor | tee /etc/apt/keyrings/pgdg.gpg >/dev/null \ + && echo "deb [signed-by=/etc/apt/keyrings/pgdg.gpg] http://apt.postgresql.org/pub/repos/apt noble-pgdg main" > /etc/apt/sources.list.d/pgdg.list \ + && apt-get update \ + && apt-get install -y yarn \ + && apt-get install -y mysql-client \ + && apt-get install -y postgresql-client-$POSTGRES_VERSION \ + && apt-get -y autoremove \ + && apt-get clean \ + && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* + +RUN setcap "cap_net_bind_service=+ep" /usr/bin/php8.2 + +RUN userdel -r ubuntu +RUN groupadd --force -g $WWWGROUP sail +RUN useradd -ms /bin/bash --no-user-group -g $WWWGROUP -u 1337 sail + +COPY start-container /usr/local/bin/start-container +COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf +COPY php.ini /etc/php/8.2/cli/conf.d/99-sail.ini +RUN chmod +x /usr/local/bin/start-container + +EXPOSE 80/tcp + +ENTRYPOINT ["start-container"] diff --git a/docker/8.2/php.ini b/docker/8.2/php.ini new file mode 100644 index 0000000..0d8ce9e --- /dev/null +++ b/docker/8.2/php.ini @@ -0,0 +1,5 @@ +[PHP] +post_max_size = 100M +upload_max_filesize = 100M +variables_order = EGPCS +pcov.directory = . diff --git a/docker/8.2/start-container b/docker/8.2/start-container new file mode 100644 index 0000000..40c55df --- /dev/null +++ b/docker/8.2/start-container @@ -0,0 +1,26 @@ +#!/usr/bin/env bash + +if [ "$SUPERVISOR_PHP_USER" != "root" ] && [ "$SUPERVISOR_PHP_USER" != "sail" ]; then + echo "You should set SUPERVISOR_PHP_USER to either 'sail' or 'root'." + exit 1 +fi + +if [ ! -z "$WWWUSER" ]; then + usermod -u $WWWUSER sail +fi + +if [ ! -d /.composer ]; then + mkdir /.composer +fi + +chmod -R ugo+rw /.composer + +if [ $# -gt 0 ]; then + if [ "$SUPERVISOR_PHP_USER" = "root" ]; then + exec "$@" + else + exec gosu $WWWUSER "$@" + fi +else + exec /usr/bin/supervisord -c /etc/supervisor/conf.d/supervisord.conf +fi diff --git a/docker/8.2/supervisord.conf b/docker/8.2/supervisord.conf new file mode 100644 index 0000000..656da8a --- /dev/null +++ b/docker/8.2/supervisord.conf @@ -0,0 +1,14 @@ +[supervisord] +nodaemon=true +user=root +logfile=/var/log/supervisor/supervisord.log +pidfile=/var/run/supervisord.pid + +[program:php] +command=%(ENV_SUPERVISOR_PHP_COMMAND)s +user=%(ENV_SUPERVISOR_PHP_USER)s +environment=LARAVEL_SAIL="1" +stdout_logfile=/dev/stdout +stdout_logfile_maxbytes=0 +stderr_logfile=/dev/stderr +stderr_logfile_maxbytes=0 diff --git a/docker/8.3/Dockerfile b/docker/8.3/Dockerfile new file mode 100644 index 0000000..ef5904b --- /dev/null +++ b/docker/8.3/Dockerfile @@ -0,0 +1,71 @@ +FROM ubuntu:24.04 + +LABEL maintainer="Taylor Otwell" + +ARG WWWGROUP +ARG NODE_VERSION=22 +ARG MYSQL_CLIENT="mysql-client" +ARG POSTGRES_VERSION=17 + +WORKDIR /var/www/html + +ENV DEBIAN_FRONTEND=noninteractive +ENV TZ=UTC +ENV SUPERVISOR_PHP_COMMAND="/usr/bin/php -d variables_order=EGPCS /var/www/html/artisan serve --host=0.0.0.0 --port=80" +ENV SUPERVISOR_PHP_USER="sail" + +RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone + +RUN echo "Acquire::http::Pipeline-Depth 0;" > /etc/apt/apt.conf.d/99custom && \ + echo "Acquire::http::No-Cache true;" >> /etc/apt/apt.conf.d/99custom && \ + echo "Acquire::BrokenProxy true;" >> /etc/apt/apt.conf.d/99custom + +RUN apt-get update && apt-get upgrade -y \ + && mkdir -p /etc/apt/keyrings \ + && apt-get install -y gnupg gosu curl ca-certificates zip unzip git supervisor sqlite3 libcap2-bin libpng-dev python3 dnsutils librsvg2-bin fswatch ffmpeg nano \ + && curl -sS 'https://keyserver.ubuntu.com/pks/lookup?op=get&search=0xb8dc7e53946656efbce4c1dd71daeaab4ad4cab6' | gpg --dearmor | tee /etc/apt/keyrings/ppa_ondrej_php.gpg > /dev/null \ + && echo "deb [signed-by=/etc/apt/keyrings/ppa_ondrej_php.gpg] https://ppa.launchpadcontent.net/ondrej/php/ubuntu noble main" > /etc/apt/sources.list.d/ppa_ondrej_php.list \ + && apt-get update \ + && apt-get install -y php8.3-cli php8.3-dev \ + php8.3-pgsql php8.3-sqlite3 php8.3-gd \ + php8.3-curl php8.3-mongodb \ + php8.3-imap php8.3-mysql php8.3-mbstring \ + php8.3-xml php8.3-zip php8.3-bcmath php8.3-soap \ + php8.3-intl php8.3-readline \ + php8.3-ldap \ + php8.3-msgpack php8.3-igbinary php8.3-redis \ + php8.3-memcached php8.3-pcov php8.3-imagick php8.3-xdebug php8.3-swoole \ + && curl -sLS https://getcomposer.org/installer | php -- --install-dir=/usr/bin/ --filename=composer \ + && curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg \ + && echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_$NODE_VERSION.x nodistro main" > /etc/apt/sources.list.d/nodesource.list \ + && apt-get update \ + && apt-get install -y nodejs \ + && npm install -g npm \ + && npm install -g pnpm \ + && npm install -g bun \ + && curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | gpg --dearmor | tee /etc/apt/keyrings/yarn.gpg >/dev/null \ + && echo "deb [signed-by=/etc/apt/keyrings/yarn.gpg] https://dl.yarnpkg.com/debian/ stable main" > /etc/apt/sources.list.d/yarn.list \ + && curl -sS https://www.postgresql.org/media/keys/ACCC4CF8.asc | gpg --dearmor | tee /etc/apt/keyrings/pgdg.gpg >/dev/null \ + && echo "deb [signed-by=/etc/apt/keyrings/pgdg.gpg] http://apt.postgresql.org/pub/repos/apt noble-pgdg main" > /etc/apt/sources.list.d/pgdg.list \ + && apt-get update \ + && apt-get install -y yarn \ + && apt-get install -y $MYSQL_CLIENT \ + && apt-get install -y postgresql-client-$POSTGRES_VERSION \ + && apt-get -y autoremove \ + && apt-get clean \ + && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* + +RUN setcap "cap_net_bind_service=+ep" /usr/bin/php8.3 + +RUN userdel -r ubuntu +RUN groupadd --force -g $WWWGROUP sail +RUN useradd -ms /bin/bash --no-user-group -g $WWWGROUP -u 1337 sail + +COPY start-container /usr/local/bin/start-container +COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf +COPY php.ini /etc/php/8.3/cli/conf.d/99-sail.ini +RUN chmod +x /usr/local/bin/start-container + +EXPOSE 80/tcp + +ENTRYPOINT ["start-container"] diff --git a/docker/8.3/php.ini b/docker/8.3/php.ini new file mode 100644 index 0000000..0d8ce9e --- /dev/null +++ b/docker/8.3/php.ini @@ -0,0 +1,5 @@ +[PHP] +post_max_size = 100M +upload_max_filesize = 100M +variables_order = EGPCS +pcov.directory = . diff --git a/docker/8.3/start-container b/docker/8.3/start-container new file mode 100644 index 0000000..40c55df --- /dev/null +++ b/docker/8.3/start-container @@ -0,0 +1,26 @@ +#!/usr/bin/env bash + +if [ "$SUPERVISOR_PHP_USER" != "root" ] && [ "$SUPERVISOR_PHP_USER" != "sail" ]; then + echo "You should set SUPERVISOR_PHP_USER to either 'sail' or 'root'." + exit 1 +fi + +if [ ! -z "$WWWUSER" ]; then + usermod -u $WWWUSER sail +fi + +if [ ! -d /.composer ]; then + mkdir /.composer +fi + +chmod -R ugo+rw /.composer + +if [ $# -gt 0 ]; then + if [ "$SUPERVISOR_PHP_USER" = "root" ]; then + exec "$@" + else + exec gosu $WWWUSER "$@" + fi +else + exec /usr/bin/supervisord -c /etc/supervisor/conf.d/supervisord.conf +fi diff --git a/docker/8.3/supervisord.conf b/docker/8.3/supervisord.conf new file mode 100644 index 0000000..656da8a --- /dev/null +++ b/docker/8.3/supervisord.conf @@ -0,0 +1,14 @@ +[supervisord] +nodaemon=true +user=root +logfile=/var/log/supervisor/supervisord.log +pidfile=/var/run/supervisord.pid + +[program:php] +command=%(ENV_SUPERVISOR_PHP_COMMAND)s +user=%(ENV_SUPERVISOR_PHP_USER)s +environment=LARAVEL_SAIL="1" +stdout_logfile=/dev/stdout +stdout_logfile_maxbytes=0 +stderr_logfile=/dev/stderr +stderr_logfile_maxbytes=0 diff --git a/docker/8.4/Dockerfile b/docker/8.4/Dockerfile new file mode 100644 index 0000000..cb0fbdc --- /dev/null +++ b/docker/8.4/Dockerfile @@ -0,0 +1,71 @@ +FROM ubuntu:24.04 + +LABEL maintainer="Taylor Otwell" + +ARG WWWGROUP +ARG NODE_VERSION=22 +ARG MYSQL_CLIENT="mysql-client" +ARG POSTGRES_VERSION=17 + +WORKDIR /var/www/html + +ENV DEBIAN_FRONTEND=noninteractive +ENV TZ=UTC +ENV SUPERVISOR_PHP_COMMAND="/usr/bin/php -d variables_order=EGPCS /var/www/html/artisan serve --host=0.0.0.0 --port=80" +ENV SUPERVISOR_PHP_USER="sail" + +RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone + +RUN echo "Acquire::http::Pipeline-Depth 0;" > /etc/apt/apt.conf.d/99custom && \ + echo "Acquire::http::No-Cache true;" >> /etc/apt/apt.conf.d/99custom && \ + echo "Acquire::BrokenProxy true;" >> /etc/apt/apt.conf.d/99custom + +RUN apt-get update && apt-get upgrade -y \ + && mkdir -p /etc/apt/keyrings \ + && apt-get install -y gnupg gosu curl ca-certificates zip unzip git supervisor sqlite3 libcap2-bin libpng-dev python3 dnsutils librsvg2-bin fswatch ffmpeg nano \ + && curl -sS 'https://keyserver.ubuntu.com/pks/lookup?op=get&search=0xb8dc7e53946656efbce4c1dd71daeaab4ad4cab6' | gpg --dearmor | tee /etc/apt/keyrings/ppa_ondrej_php.gpg > /dev/null \ + && echo "deb [signed-by=/etc/apt/keyrings/ppa_ondrej_php.gpg] https://ppa.launchpadcontent.net/ondrej/php/ubuntu noble main" > /etc/apt/sources.list.d/ppa_ondrej_php.list \ + && apt-get update \ + && apt-get install -y php8.4-cli php8.4-dev \ + php8.4-pgsql php8.4-sqlite3 php8.4-gd \ + php8.4-curl php8.4-mongodb \ + php8.4-imap php8.4-mysql php8.4-mbstring \ + php8.4-xml php8.4-zip php8.4-bcmath php8.4-soap \ + php8.4-intl php8.4-readline \ + php8.4-ldap \ + php8.4-msgpack php8.4-igbinary php8.4-redis php8.4-swoole \ + php8.4-memcached php8.4-pcov php8.4-imagick php8.4-xdebug \ + && curl -sLS https://getcomposer.org/installer | php -- --install-dir=/usr/bin/ --filename=composer \ + && curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg \ + && echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_$NODE_VERSION.x nodistro main" > /etc/apt/sources.list.d/nodesource.list \ + && apt-get update \ + && apt-get install -y nodejs \ + && npm install -g npm \ + && npm install -g pnpm \ + && npm install -g bun \ + && curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | gpg --dearmor | tee /etc/apt/keyrings/yarn.gpg >/dev/null \ + && echo "deb [signed-by=/etc/apt/keyrings/yarn.gpg] https://dl.yarnpkg.com/debian/ stable main" > /etc/apt/sources.list.d/yarn.list \ + && curl -sS https://www.postgresql.org/media/keys/ACCC4CF8.asc | gpg --dearmor | tee /etc/apt/keyrings/pgdg.gpg >/dev/null \ + && echo "deb [signed-by=/etc/apt/keyrings/pgdg.gpg] http://apt.postgresql.org/pub/repos/apt noble-pgdg main" > /etc/apt/sources.list.d/pgdg.list \ + && apt-get update \ + && apt-get install -y yarn \ + && apt-get install -y $MYSQL_CLIENT \ + && apt-get install -y postgresql-client-$POSTGRES_VERSION \ + && apt-get -y autoremove \ + && apt-get clean \ + && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* + +RUN setcap "cap_net_bind_service=+ep" /usr/bin/php8.4 + +RUN userdel -r ubuntu +RUN groupadd --force -g $WWWGROUP sail +RUN useradd -ms /bin/bash --no-user-group -g $WWWGROUP -u 1337 sail + +COPY start-container /usr/local/bin/start-container +COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf +COPY php.ini /etc/php/8.4/cli/conf.d/99-sail.ini +RUN chmod +x /usr/local/bin/start-container + +EXPOSE 80/tcp + +ENTRYPOINT ["start-container"] diff --git a/docker/8.4/php.ini b/docker/8.4/php.ini new file mode 100644 index 0000000..0d8ce9e --- /dev/null +++ b/docker/8.4/php.ini @@ -0,0 +1,5 @@ +[PHP] +post_max_size = 100M +upload_max_filesize = 100M +variables_order = EGPCS +pcov.directory = . diff --git a/docker/8.4/start-container b/docker/8.4/start-container new file mode 100644 index 0000000..40c55df --- /dev/null +++ b/docker/8.4/start-container @@ -0,0 +1,26 @@ +#!/usr/bin/env bash + +if [ "$SUPERVISOR_PHP_USER" != "root" ] && [ "$SUPERVISOR_PHP_USER" != "sail" ]; then + echo "You should set SUPERVISOR_PHP_USER to either 'sail' or 'root'." + exit 1 +fi + +if [ ! -z "$WWWUSER" ]; then + usermod -u $WWWUSER sail +fi + +if [ ! -d /.composer ]; then + mkdir /.composer +fi + +chmod -R ugo+rw /.composer + +if [ $# -gt 0 ]; then + if [ "$SUPERVISOR_PHP_USER" = "root" ]; then + exec "$@" + else + exec gosu $WWWUSER "$@" + fi +else + exec /usr/bin/supervisord -c /etc/supervisor/conf.d/supervisord.conf +fi diff --git a/docker/8.4/supervisord.conf b/docker/8.4/supervisord.conf new file mode 100644 index 0000000..656da8a --- /dev/null +++ b/docker/8.4/supervisord.conf @@ -0,0 +1,14 @@ +[supervisord] +nodaemon=true +user=root +logfile=/var/log/supervisor/supervisord.log +pidfile=/var/run/supervisord.pid + +[program:php] +command=%(ENV_SUPERVISOR_PHP_COMMAND)s +user=%(ENV_SUPERVISOR_PHP_USER)s +environment=LARAVEL_SAIL="1" +stdout_logfile=/dev/stdout +stdout_logfile_maxbytes=0 +stderr_logfile=/dev/stderr +stderr_logfile_maxbytes=0 diff --git a/docker/mariadb/create-testing-database.sh b/docker/mariadb/create-testing-database.sh new file mode 100644 index 0000000..d3b19d9 --- /dev/null +++ b/docker/mariadb/create-testing-database.sh @@ -0,0 +1,6 @@ +#!/usr/bin/env bash + +/usr/bin/mariadb --user=root --password="$MYSQL_ROOT_PASSWORD" <<-EOSQL + CREATE DATABASE IF NOT EXISTS testing; + GRANT ALL PRIVILEGES ON \`testing%\`.* TO '$MYSQL_USER'@'%'; +EOSQL diff --git a/docker/mysql/create-testing-database.sh b/docker/mysql/create-testing-database.sh new file mode 100644 index 0000000..aeb1826 --- /dev/null +++ b/docker/mysql/create-testing-database.sh @@ -0,0 +1,6 @@ +#!/usr/bin/env bash + +mysql --user=root --password="$MYSQL_ROOT_PASSWORD" <<-EOSQL + CREATE DATABASE IF NOT EXISTS testing; + GRANT ALL PRIVILEGES ON \`testing%\`.* TO '$MYSQL_USER'@'%'; +EOSQL diff --git a/docker/pgsql/create-testing-database.sql b/docker/pgsql/create-testing-database.sql new file mode 100644 index 0000000..d84dc07 --- /dev/null +++ b/docker/pgsql/create-testing-database.sql @@ -0,0 +1,2 @@ +SELECT 'CREATE DATABASE testing' +WHERE NOT EXISTS (SELECT FROM pg_database WHERE datname = 'testing')\gexec diff --git a/mivita.code-workspace b/mivita.code-workspace index 29881eb..362d7c2 100644 --- a/mivita.code-workspace +++ b/mivita.code-workspace @@ -3,8 +3,5 @@ { "path": "." } - ], - "settings": { - "CodeGPT.apiKey": "CodeGPT Plus Beta" - } + ] } \ No newline at end of file diff --git a/packages/acme-laravel-dhl/database/migrations/2025_01_01_000000_create_shipments_table.php b/packages/acme-laravel-dhl/database/migrations/2025_01_01_000000_create_shipments_table.php deleted file mode 100644 index f266ba8..0000000 --- a/packages/acme-laravel-dhl/database/migrations/2025_01_01_000000_create_shipments_table.php +++ /dev/null @@ -1,29 +0,0 @@ -id(); - $t->unsignedBigInteger('order_id')->nullable(); - $t->string('carrier')->default('dhl'); - $t->string('dhl_shipment_no')->nullable()->index(); - $t->string('product_code')->nullable(); - $t->string('billing_number')->nullable(); - $t->decimal('weight_kg', 8, 3)->nullable(); - $t->string('status')->default('created'); - $t->string('label_format')->nullable(); - $t->string('label_path')->nullable(); - $t->json('meta')->nullable(); - $t->timestamps(); - }); - } - public function down(): void - { - Schema::dropIfExists('shipments'); - } -}; diff --git a/packages/acme-laravel-dhl/database/migrations/2025_01_01_000100_create_shipment_labels_table.php b/packages/acme-laravel-dhl/database/migrations/2025_01_01_000100_create_shipment_labels_table.php deleted file mode 100644 index 7f6270a..0000000 --- a/packages/acme-laravel-dhl/database/migrations/2025_01_01_000100_create_shipment_labels_table.php +++ /dev/null @@ -1,22 +0,0 @@ -id(); - $t->foreignId('shipment_id')->constrained('shipments')->cascadeOnDelete(); - $t->string('format')->default('PDF'); - $t->string('path'); - $t->timestamps(); - }); - } - public function down(): void - { - Schema::dropIfExists('shipment_labels'); - } -}; diff --git a/packages/acme-laravel-dhl/database/migrations/2025_01_01_000200_create_tracking_events_table.php b/packages/acme-laravel-dhl/database/migrations/2025_01_01_000200_create_tracking_events_table.php deleted file mode 100644 index a736351..0000000 --- a/packages/acme-laravel-dhl/database/migrations/2025_01_01_000200_create_tracking_events_table.php +++ /dev/null @@ -1,24 +0,0 @@ -id(); - $t->foreignId('shipment_id')->constrained('shipments')->cascadeOnDelete(); - $t->string('status_code')->nullable(); - $t->string('status_text')->nullable(); - $t->string('location')->nullable(); - $t->timestamp('event_time')->nullable(); - $t->json('raw')->nullable(); - }); - } - public function down(): void - { - Schema::dropIfExists('tracking_events'); - } -}; diff --git a/packages/acme-laravel-dhl/database/migrations/2025_01_01_000300_create_return_labels_table.php b/packages/acme-laravel-dhl/database/migrations/2025_01_01_000300_create_return_labels_table.php deleted file mode 100644 index 057a233..0000000 --- a/packages/acme-laravel-dhl/database/migrations/2025_01_01_000300_create_return_labels_table.php +++ /dev/null @@ -1,22 +0,0 @@ -id(); - $t->unsignedBigInteger('order_id')->nullable()->index(); - $t->string('dhl_return_no')->nullable()->index(); - $t->string('label_path')->nullable(); - $t->timestamps(); - }); - } - public function down(): void - { - Schema::dropIfExists('return_labels'); - } -}; diff --git a/packages/acme-laravel-dhl/src/Models/ReturnLabel.php b/packages/acme-laravel-dhl/src/Models/ReturnLabel.php deleted file mode 100644 index 9bf910c..0000000 --- a/packages/acme-laravel-dhl/src/Models/ReturnLabel.php +++ /dev/null @@ -1,10 +0,0 @@ -belongsTo(Shipment::class); - } -} diff --git a/packages/acme-laravel-dhl/src/Models/TrackingEvent.php b/packages/acme-laravel-dhl/src/Models/TrackingEvent.php deleted file mode 100644 index 925f3f0..0000000 --- a/packages/acme-laravel-dhl/src/Models/TrackingEvent.php +++ /dev/null @@ -1,16 +0,0 @@ - 'array', 'event_time' => 'datetime',]; - public function shipment() - { - return $this->belongsTo(Shipment::class); - } -} diff --git a/packages/laravel-collective-spatie-html-parser/.vscode/settings.json b/packages/laravel-collective-spatie-html-parser/.vscode/settings.json new file mode 100644 index 0000000..6c2ff60 --- /dev/null +++ b/packages/laravel-collective-spatie-html-parser/.vscode/settings.json @@ -0,0 +1,5 @@ +{ + "githubPullRequests.ignoredPullRequestBranches": [ + "master" + ] +} \ No newline at end of file diff --git a/public/phpinfo.php b/public/phpinfo.php new file mode 100644 index 0000000..d7c3469 --- /dev/null +++ b/public/phpinfo.php @@ -0,0 +1,4 @@ + \ No newline at end of file diff --git a/resources/lang/en.json b/resources/lang/en.json index 2c84d07..c31a5b0 100644 --- a/resources/lang/en.json +++ b/resources/lang/en.json @@ -1,6 +1,7 @@ { "MR": "Mr", "MS": "Ms", + "DIV": "Various", "please select": "please choose", "please specify": "Please specify.", "further countries": "more countrys", diff --git a/resources/lang/es.json b/resources/lang/es.json index 7b8a96a..2920f42 100644 --- a/resources/lang/es.json +++ b/resources/lang/es.json @@ -1,6 +1,7 @@ { "MR": "Sr.", "MS": "Sra.", + "DIV": "Varios", "please select": "seleccione", "please specify": "Especifíquelo.", "further countries": "otros paises", diff --git a/resources/views/admin/business/index.blade.php b/resources/views/admin/business/index.blade.php deleted file mode 100644 index 973b727..0000000 --- a/resources/views/admin/business/index.blade.php +++ /dev/null @@ -1,109 +0,0 @@ -@extends('layouts.layout-2') - -@section('content') -
-
- {{__('Business')}} -
- -
- {!! Form::open(['url' => route('admin_payments_invoice'), 'class' => 'form-horizontal', 'id'=>'form_filter_payment_invoices']) !!} - -
- {{--
- -
- --}} -
- -
-
- -
-
- {!! Form::close() !!} - -
- - - - - - - - - - - - - - - - - - - - - -
{{__('ID') }}{{__('Berater-ID') }}{{__('Points')}}{{__('Points Shop')}}{{__('Gesamt')}}{{__('Umsatz')}}{{__('Umsatz Shop')}}{{__('Gesamt Shop')}}{{__('E-Mail')}}{{__('Vorname')}}{{__('Nachname')}}{{__('Level')}}{{__('Mitglied')}}
-
-
- - -@endsection diff --git a/resources/views/admin/dhl/create.blade.php b/resources/views/admin/dhl/create.blade.php index 87baa81..9caade9 100644 --- a/resources/views/admin/dhl/create.blade.php +++ b/resources/views/admin/dhl/create.blade.php @@ -31,9 +31,9 @@ Kunde: - {{ $order->user->first_name ?? '' }} {{ $order->user->last_name ?? '' }} + {{ $order->shopping_user->billing_firstname ?? '' }} {{ $order->shopping_user->billing_lastname ?? '' }}
- {{ $order->user->email ?? '' }} + {{ $order->shopping_user->billing_email ?? '' }} @@ -42,7 +42,7 @@ Bestellwert: - {{ number_format($order->order_total, 2) }} € + {{ number_format($order->total, 2) }} €
@@ -51,9 +51,9 @@ Lieferadresse: - {{ $order->shipping_first_name ?? $order->user->first_name }} {{ $order->shipping_last_name ?? $order->user->last_name }}
- {{ $order->shipping_street ?? $order->user->street }} {{ $order->shipping_house_number ?? $order->user->house_number }}
- {{ $order->shipping_postcode ?? $order->user->postcode }} {{ $order->shipping_city ?? $order->user->city }}
+ {{ $order->shopping_user->shipping_firstname ?? $order->shopping_user->billing_firstname }} {{ $order->shopping_user->shipping_lastname ?? $order->shopping_user->billing_lastname }}
+ {{ $order->shopping_user->shipping_address ?? $order->shopping_user->billing_address }} {{ $order->shopping_user->shipping_address_2 ?? $order->shopping_user->billing_address_2 }}
+ {{ $order->shopping_user->shipping_zipcode ?? $order->shopping_user->billing_zipcode }} {{ $order->shopping_user->shipping_city ?? $order->shopping_user->billing_city }}
{{ $order->shippingCountry->name ?? 'Deutschland' }} @@ -67,7 +67,7 @@ Artikel: - {{ $order->items->count() }} Artikel + {{ $order->shopping_order_items->count() }} Artikel @@ -97,7 +97,7 @@ @php $totalWeight = 0; @endphp - @foreach($order->items as $item) + @foreach($order->shopping_order_items as $item) @php $itemWeight = ($item->product->weight ?? 0) * $item->qty; $totalWeight += $itemWeight; diff --git a/resources/views/admin/product/_form.blade.php b/resources/views/admin/product/_form.blade.php deleted file mode 100755 index e4d3766..0000000 --- a/resources/views/admin/product/_form.blade.php +++ /dev/null @@ -1,353 +0,0 @@ - -
- -
- {{ __('Produkt') }} - -
- -
- -
- - - {{ Form::text('name', $product->name, array('placeholder'=>__('Name'), 'class'=>'form-control', 'id'=>'name', 'required')) }} -
-
- -
- - {{ Form::text('number', $product->number, array('placeholder'=>__('number'), 'class'=>'form-control', 'id'=>'number')) }} - -
-
- - {{ Form::text('ean', $product->ean, array('placeholder'=>__('EAN'), 'class'=>'form-control', 'id'=>'ean')) }} -
-
- -
-
- - -
- {{-- -
- - {{ Form::select('show_at', $product->showATs, $product->show_at, array('data-live-search'=>'false', 'class'=>'selectpicker', 'id'=>'show_at') ) }} -
- --}} - -
- - {{ Form::text('pos', $product->pos, array('placeholder'=>__('1, 2, 3, etc'), 'class'=>'form-control', 'id'=>'pos')) }} -
-
-
-
- - {{ Form::select('show_on[]', $product->showONs, $product->show_on, array('data-live-search'=>'false', 'class'=>'selectpicker', 'id'=>'show_on', 'multiple') ) }} -
-
-
- - {{ Form::textarea('copy', $product->copy , array('placeholder'=>__('Produktbeschreibung'), 'class'=>'form-control summernote', 'id'=>'copy')) }} -
- -
-
- -
-
- {{ __('Preise in EUR') }} -
-
-
-
- - {{ Form::text('price', $product->getFormattedPrice(), array('placeholder'=>__('Preis VK in EUR (Brutto)'), 'class'=>'form-control', 'id'=>'price')) }} - -
-
- - {{ Form::text('price_ek', $product->getFormattedPriceEk(), array('placeholder'=>__('Preis EK in EUR'), 'class'=>'form-control', 'id'=>'price_ek')) }} - -
-
- - {{ Form::text('tax', $product->getFormattedTax(), array('placeholder'=>__('MwSt in %'), 'class'=>'form-control', 'id'=>'tax')) }} - -
-
- - {{ Form::text('price_old', $product->getFormattedPriceOld(), array('placeholder'=>__('Streichpreis'), 'class'=>'form-control', 'id'=>'price_old')) }} - -
-
-
-
- - {{ Form::text('weight', $product->weight, array('placeholder'=>__('Gewicht in g'), 'class'=>'form-control', 'id'=>'weight')) }} -
-
- - {{ Form::text('points', $product->points, array('placeholder'=>__('Points pro Produkt'), 'class'=>'form-control', 'id'=>'points')) }} -
-
- - {{ Form::text('amount', $product->amount, array('placeholder'=>__('Anzahl/Verfügbarkeit'), 'class'=>'form-control', 'id'=>'amount')) }} -
-
-
-
- - -
-
-
-
- -
-
- Landesspezifische Preise -
- -
- @foreach($country_for_prices as $country) - - {{ Form::hidden('country_prices[]', $country->id) }} -
-
{{$country->de}}
-
-
- @if($country->own_eur) -
-
- -

-
-
- - {{ Form::text('c_price['.$country->id.']', formatNumber($product->getCPrice($country)), array('placeholder'=>__('Preis VK in EUR Brutto'), 'class'=>'form-control', 'id'=>'c_price_'.$country->id)) }} - -
-
- - {{ Form::text('c_tax['.$country->id.']', formatNumber($product->getCTax($country)), array('placeholder'=>__('MwSt in %'), 'class'=>'form-control', 'id'=>'c_tax'.$country->id)) }} - -
-
- - {{ Form::text('c_price_old['.$country->id.']', formatNumber($product->getCPriceOld($country)), array('placeholder'=>__('Streichpreis'), 'class'=>'form-control', 'id'=>'c_price_old'.$country->id)) }} - -
-
- @endif - @if($country->currency) -
-
- -

@if($country->currency_calc) Preis Berechnung automatisch @else Preis manuell - angegeben @endif

-
- - - - {{-- NUR Anzeige vom automatisch berechneten Preis currency_faktor - Auf Basis vom price - Wenn own_eur auf basis vom own_eur price - --}} -
- - {{ Form::text('c_currency['.$country->id.']', formatNumber($product->getRealPrice($country) * $country->currency_faktor), array('class'=>'form-control', 'readonly')) }} - -
- {{--@if($country->currency_calc) - @else - - Eingabe - Währungs Namen aus currency_name - currency_faktor als Hinweis ausgeben - Auf Basis vom price - Wenn own_eur auf basis vom own_eur price -
- - {{ Form::text('c_currency['.$country->id.']', formatNumber($product->getCCurrency($country->id)), array('placeholder'=>__('Preis VK in ').$country->currency_unit, 'class'=>'form-control')) }} -
- @endif --}} - -
- - {{ Form::text('currency_faktor['.$country->id.']', formatNumber($country->currency_faktor, 4), array('class'=>'form-control', 'readonly')) }} -
-
- - {{ Form::text('preis_eur['.$country->id.']', formatNumber($product->getRealPrice($country)), array('class'=>'form-control', 'readonly')) }} -
-
- - {{ Form::text('currency_unit['.$country->id.']', $country->currency_unit, array('class'=>'form-control', 'readonly')) }} -
- -
- @endif -
- @endforeach - für die Einstellung von landesspezifischen Preisen müssen diese unter - Länder -> Land aktiviert werden. -
-
- - -
-
- {{ __('Details') }} -
-
-
- -
- - {{ Form::text('contents', $product->contents, array('placeholder'=>__('Bsp: 150 ml'), 'class'=>'form-control', 'id'=>'contents')) }} -
-
- - {{ Form::text('contents_total', $product->contents_total, array('placeholder'=>__('Bsp: 150'), 'class'=>'form-control', 'id'=>'contents_total')) }} -
-
- - {{ Form::select('unit', $product->unitTypes, $product->unit, array('data-live-search'=>'false', 'class'=>'selectpicker', 'id'=>'unit') ) }} -
-
- - {{ Form::text('base_price', $product->getBasePriceFormattedFull(), array('placeholder'=>__(''), 'class'=>'form-control', 'id'=>'base_price', 'readonly')) }} -
- {{--
- - -
- --}} -
- -
- - {{ Form::textarea('description', $product->description , array('placeholder'=>__('description'), 'class'=>'form-control summernote', 'id'=>'description')) }} -
-
- - {{ Form::textarea('usage', $product->usage , array('placeholder'=>__('usage'), 'class'=>'form-control summernote', 'id'=>'usage')) }} -
-
- - {{ Form::textarea('ingredients', $product->ingredients , array('placeholder'=>__('ingredients'), 'class'=>'form-control summernote', 'id'=>'ingredients')) }} -
- -
- - {{ Form::text('icons', $product->icons, array('placeholder'=>__('icons'), 'class'=>'form-control', 'id'=>'icons')) }} - "product_icons_1.png" -
-
-
- -
-
- {{ __('Inhalte') }} -
-
-
- - - - - - - - - - - @foreach($product->p_ingredients as $ingredient) - - - - - - - @endforeach - -
{{__('Name')}}{{__('INCI')}}{{__('Wirkung') }}
{{ $ingredient->name }}{{ $ingredient->inci }}{{ $ingredient->effect }}
-
-
-
- - - Inhaltsstoffe anlegen -
-
-   -
-
-
-
- -@if(Auth::user()->isSuperAdmin()) -
-
- {{ __('SuperAdmin Einstellungen') }} -
-
-
-
- - {{ Form::select('action[]', $product->actionNames, $product->action, array('data-live-search'=>'false', 'class'=>'selectpicker', 'id'=>'action', 'multiple') ) }} -
-
- - {{ Form::select('identifier', $product->identifiers_types, $product->identifier, array('data-live-search'=>'false', 'class'=>'selectpicker', 'id'=>'identifier') ) }} -
-
- - {{ Form::text('upgrade_to_id', $product->upgrade_to_id, array('placeholder'=>__('Upgrade-ID'), 'class'=>'form-control', 'id'=>'upgrade_to_id')) }} -
-
- @if($product->action && is_array($product->action)) - @foreach ($product->action as $do ) - @if($product->getActionName($do) === 'payment_for_shop_upgrade') - -
{{ $product->getUpgradeToIdName('payment_for_shop_upgrade') }} -
- @endif - @if($product->getActionName($do) === 'payment_for_lead_upgrade') - -
{{ $product->getUpgradeToIdName('payment_for_lead_upgrade') }} - - @endif - @endforeach - @endif -
-
-
-
- - {{ Form::text('wp_number', $product->wp_number, array('placeholder'=>__('WP Number'), 'class'=>'form-control', 'id'=>'wp_number')) }} -
-
-
-
-@endif \ No newline at end of file diff --git a/resources/views/components/abo/product-table-styles.blade.php b/resources/views/components/abo/product-table-styles.blade.php deleted file mode 100644 index 934ef8c..0000000 --- a/resources/views/components/abo/product-table-styles.blade.php +++ /dev/null @@ -1,124 +0,0 @@ - \ No newline at end of file diff --git a/resources/views/components/abo/product-table.blade.php b/resources/views/components/abo/product-table.blade.php deleted file mode 100644 index 63dfe6d..0000000 --- a/resources/views/components/abo/product-table.blade.php +++ /dev/null @@ -1,117 +0,0 @@ -@props([ - 'products' => [], - 'productType' => 'base', // 'base' oder 'upgrade' - 'formRoute' => '', - 'formStep' => 3 -]) - -{!! Form::open(['action' => route($formRoute, $formStep), 'method' => 'POST', 'class' => '']) !!} - -@include('components.abo.product-table-styles') - -
-
-
-
{{ __('payment.ordering_country') }}
- {{ App\Services\UserService::getOrderInfo('billing_state') }} -
-
-
{{ __('payment.country_of_delivery') }}
- {{ App\Services\UserService::getOrderInfo('shipping_state') }} -
-
-
{{ __('payment.VAT') }}
- {{ App\Services\UserService::getOrderInfo('tax_free') }} -
-
-
{{ __('payment.reverse_charge_procedure') }}
- {{ App\Services\UserService::getOrderInfo('user_reverse_charge') }} -
-
- - @if($productType === 'base') -
- {!! __('abo.abo_type_info', ['base'=>get_abo_type_badge('base'), 'upgrade'=>get_abo_type_badge('upgrade')]) !!} -
- - @if(isset($error)) -
- {{ $error }} -
- @endif - @endif - - @if(count($products) > 0) -
- - - - - - - - - - @foreach($products as $product) - - - - - - @endforeach - -
{{ __('abo.' . $productType . '_product') }} {{ __('order.unit_price') }}
-
-
- - - - - - - -
-
-
-
- @if(count($product->images)) - {{ $product->getLang('name') }} - @endif -
-
- {{$product->getLang('name')}} -
{!! get_abo_type_badge($productType) !!} -
- {!! $product->getLang('copy') !!} -
-
-
- - {{ $product->getFormattedPriceWith(\App\Services\UserService::getTaxFree(), false, \App\Services\UserService::$user_country) }} € - - @if(\App\Services\UserService::$user_country && \App\Services\UserService::$user_country->currency) - - {!! $product->getFormattedPriceCurrencyWith(\App\Services\UserService::getTaxFree(), false, \App\Services\UserService::$user_country) !!} - - @endif -
-
- @endif -
- - - -{!! Form::close() !!} \ No newline at end of file diff --git a/resources/views/dashboard/reminder.blade.php b/resources/views/dashboard/reminder.blade.php deleted file mode 100755 index a24bc05..0000000 --- a/resources/views/dashboard/reminder.blade.php +++ /dev/null @@ -1,62 +0,0 @@ -@if($user->active == 1) -@if($user->payment_account && $user->daysActiveAccount() <= config('mivita.remind_first_days')) -
- -
-
- {{__('membership.home_hl') }} -
-
- @if($user->daysActiveAccount() <= 0) - @if($user->isActiveAccount()) -
{{__('membership.home_copy_alert_35')}}
-

{{__('membership.home_copy_last_35', ['days'=>$user->daysActiveAccount(), 'datetime'=>$user->getPaymentAccountDateFormat()])}}

- @else - {{-- 35, 36 --}} - @if($user->daysActiveAccount() == 0) -
{{__('membership.home_copy_alert_36_today', ['datetime'=>$user->getPaymentAccountDateFormat()])}}
- @else -
{{__('membership.home_copy_alert_36', ['days'=>$user->daysActiveAccount()*-1, 'datetime'=>$user->getPaymentAccountDateFormat()])}}
- @endif - @if($user->payment_account && $user->isAboOption()) - {{ __('membership.home_copy_SEPA_36', ['price'=> 'von '.$user->payment_order_product->getFormattedPrice().' EUR', 'pay_date'=>Carbon::parse($user->payment_account)->modify('- '.config('mivita.abo_booking_days').' days')->format('d.m.Y')]) }} -
- @endif - -

{{__('membership.home_copy_last_36', ['days'=>$user->daysActiveAccount(), 'datetime'=>$user->getPaymentAccountDateFormat()])}}

- @endif - @elseif($user->daysActiveAccount() < config('mivita.remind_last_days') ) - {{-- 33 --}} -
{{ __('membership.home_copy_alert_31', ['datetime'=>$user->getPaymentAccountDateFormat()]) }}
-

{{__('membership.home_copy_last_34', ['days'=>$user->daysActiveAccount(), 'datetime'=>$user->getPaymentAccountDateFormat()])}}

- @elseif($user->daysActiveAccount() < config('mivita.remind_sec_days')) - {{-- 33 --}} -
{{ __('membership.home_copy_alert_31', ['datetime'=>$user->getPaymentAccountDateFormat()]) }}
- @if($user->payment_account && $user->isAboOption()) - @if($user->daysActiveAccount() < config('mivita.abo_booking_days') ) -

{{ __('membership.home_copy_SEPA_33', ['price'=> 'von '.$user->payment_order_product->getFormattedPrice().' EUR', 'pay_date'=>Carbon::parse($user->payment_account)->modify('- '.config('mivita.abo_booking_days').' days')->format('d.m.Y')]) }}

- @else -

{{ __('membership.home_copy_SEPA_32', ['price'=> 'von '.$user->payment_order_product->getFormattedPrice().' EUR', 'pay_date'=>Carbon::parse($user->payment_account)->modify('- '.config('mivita.abo_booking_days').' days')->format('d.m.Y')]) }}

- @endif -
- @endif -

{{__('membership.home_copy_last_33', ['days'=>$user->daysActiveAccount()])}}

- @else - {{-- 32 / 31 --}} -
{{ __('membership.home_copy_alert_31', ['datetime'=>$user->getPaymentAccountDateFormat()]) }}
- @if($user->payment_account && $user->isAboOption()) - {{ __('membership.home_copy_SEPA_32', ['price'=> 'von '.$user->payment_order_product->getFormattedPrice().' EUR', 'pay_date'=>Carbon::parse($user->payment_account)->modify('- '.config('mivita.abo_booking_days').' days')->format('d.m.Y')]) }} -
- @endif -

{{__('membership.home_copy_last_31', ['days'=>$user->daysActiveAccount()])}}

- - @endif -
- -
- -
-@endif -@endif \ No newline at end of file diff --git a/resources/views/emails/customer_otp.blade.php b/resources/views/emails/customer_otp.blade.php deleted file mode 100644 index 3144715..0000000 --- a/resources/views/emails/customer_otp.blade.php +++ /dev/null @@ -1,227 +0,0 @@ - - - - - - mivita.care - - - - - -
- @if(isset($copy1line)) - {{ strip_tags($copy1line) }} - @endif - @if(isset($content)) - {{ strip_tags($content) }} - @endif -
- - - - - -
-
-
- - - - -
- - - - -
-
- - - - - - - - - -
- - mivita.care - - -

-
-
- - - - - - @if(isset($copy1line)) - - - - @endif - @if(isset($content)) - - - - @endif - - - - - - -
-

- {{ $salutation }} -
-
- - - - -
-
- {!! nl2br($copy1line) !!} -
-
-
-
-
- - - - -
- {!! nl2br($content) !!} -
-
-
- - - - - - -
- - - - - - -
-

- {{ $button }} -

-
-
-
-
- - - - - - - -
-
- {{ $copy2line }}
- {{ $url }} -

- {{ $copy3line }} -

- {{ $greetings }}
{{ $sender }} -
-

-
- -
- - - - - - - - - -
-

- {{__('email.footer_copy1')}} -

-
- www.mivita.care -
-
-

{{__('email.footer_copy2')}}

- {{ __('dataprotect.data_protect') }}
-

{{__('email.footer_copy3')}}

-
-
-
-
-
-
- - diff --git a/resources/views/errors/_403.blade.php b/resources/views/errors/_403.blade.php deleted file mode 100644 index 8fbd441..0000000 --- a/resources/views/errors/_403.blade.php +++ /dev/null @@ -1,71 +0,0 @@ - - - - - 404 Not Found - Appwork - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
-
-
-
- -
-

Whoops...

-
We couldn't find the page
you are looking for :(
- -
-
- -
-
-
404
-
Not Found
-
-
- -
-
-
- - - - - - diff --git a/resources/views/portal/abo/no_shopping_user.blade.php b/resources/views/portal/abo/no_shopping_user.blade.php deleted file mode 100644 index b739df5..0000000 --- a/resources/views/portal/abo/no_shopping_user.blade.php +++ /dev/null @@ -1,114 +0,0 @@ -@extends('portal.layouts.layout-2') - -@section('content') - -@if ($errors->any()) -
-
-
-
    - @foreach ($errors->all() as $error) -
  • {{ $error }}
  • - @endforeach -
-
-
-
-@endif - -

-{{__('abo.create_abo')}} -

- - - -@endsection - -@section('scripts') - - - -@endsection \ No newline at end of file diff --git a/resources/views/portal/customer/_edit.blade.php b/resources/views/portal/customer/_edit.blade.php deleted file mode 100644 index e36ca6c..0000000 --- a/resources/views/portal/customer/_edit.blade.php +++ /dev/null @@ -1,437 +0,0 @@ -
-
-
-
- {{ __('customer.customer_billing_address') }} -
-
- * {{trans('register.required_fields')}} - {{ __('Delivery address') }} -
-
-
-
-
-
-
-
- - {{ Form::text('billing_company', $shopping_user->billing_company, array('placeholder'=>__('Company name'), 'class'=>'form-control', 'id'=>'billing_company', 'tabindex' => 1)) }} -
-
-
-
- - - @if ($errors->has('billing_salutation')) - - {{ $errors->first('billing_salutation') }} - - @endif -
-
-
-
- - {{ Form::text('billing_firstname', $shopping_user->billing_firstname, array('placeholder'=>__('First name'), 'class'=>'form-control', 'id'=>'billing_firstname', 'required'=>true, 'tabindex' => 4)) }} - @if ($errors->has('billing_firstname')) - - {{ $errors->first('billing_firstname') }} - - @endif - -
-
- - {{ Form::text('billing_lastname', $shopping_user->billing_lastname, array('placeholder'=>__('Last name'), 'class'=>'form-control', 'id'=>'billing_lastname', 'required'=>true, 'tabindex' => 5)) }} - @if ($errors->has('billing_lastname')) - - {{ $errors->first('billing_lastname') }} - - @endif - -
-
-
-
- - {{ Form::text('billing_address', $shopping_user->billing_address, array('placeholder'=>__('Street'), 'class'=>'form-control', 'required'=>true, 'id'=>'billing_address', 'tabindex' => 6)) }} - @if ($errors->has('billing_address')) - - {{ $errors->first('billing_address') }} - - @endif -
-
-
-
- - {{ Form::text('billing_address_2', $shopping_user->billing_address_2, array('placeholder'=>__('Flat Building optional'), 'class'=>'form-control', 'id'=>'billing_address_2', 'tabindex' => 6)) }} -
-
-
-
- - {{ Form::text('billing_zipcode', $shopping_user->billing_zipcode, array('placeholder'=>__('Postcode'), 'class'=>'form-control', 'required'=>true, 'id'=>'billing_zipcode', 'tabindex' => 7)) }} - @if ($errors->has('billing_zipcode')) - - {{ $errors->first('billing_zipcode') }} - - @endif -
-
- - {{ Form::text('billing_city', $shopping_user->billing_city, array('placeholder'=>__('City'), 'class'=>'form-control', 'required'=>true, 'id'=>'billing_city', 'tabindex' => 8)) }} - @if ($errors->has('billing_city')) - - {{ $errors->first('billing_city') }} - - @endif -
-
-
-
- - - @if ($errors->has('billing_country_id')) - - {{ $errors->first('billing_country_id') }} - - @endif -
-
-
-
- - {{ Form::text('billing_phone', $shopping_user->billing_phone, array('placeholder'=>__('Phone'), 'class'=>'form-control', 'id'=>'billing_phone', 'tabindex' => 11)) }} -
-
-
-
-
-
-
{{ __('Delivery address') }}
-
-
-
-
- - {{ Form::text('shipping_company', $shopping_user->shipping_company, array('placeholder'=>__('Company name'), 'class'=>'form-control', 'id'=>'shipping_company', 'tabindex' => 16)) }} -
-
-
-
- - - @if ($errors->has('shipping_salutation')) - - {{ $errors->first('shipping_salutation') }} - - @endif -
-
-
-
- - {{ Form::text('shipping_firstname', $shopping_user->shipping_firstname, array('placeholder'=>__('First name'), 'class'=>'form-control', 'required'=>true, 'id'=>'shipping_firstname', 'tabindex' => 18)) }} - @if ($errors->has('shipping_firstname')) - - {{ $errors->first('shipping_firstname') }} - - @endif -
-
- - {{ Form::text('shipping_lastname', $shopping_user->shipping_lastname, array('placeholder'=>__('Last name'), 'class'=>'form-control', 'required'=>true, 'id'=>'shipping_lastname', 'tabindex' => 19)) }} - @if ($errors->has('shipping_lastname')) - - {{ $errors->first('shipping_lastname') }} - - @endif - -
-
-
-
- - {{ Form::text('shipping_address', $shopping_user->shipping_address, array('placeholder'=>__('Street'), 'class'=>'form-control', 'required'=>true, 'id'=>'shipping_address', 'tabindex' => 20)) }} - @if ($errors->has('shipping_address')) - - {{ $errors->first('shipping_address') }} - - @endif -
-
-
-
- - {{ Form::text('shipping_address_2', $shopping_user->shipping_address_2, array('placeholder'=>__('Flat Building optional'), 'class'=>'form-control', 'id'=>'shipping_address_2', 'tabindex' => 21)) }} - @if ($errors->has('shipping_address_2')) - - {{ $errors->first('shipping_address_2') }} - - @endif -
-
-
-
- - {{ Form::text('shipping_zipcode', $shopping_user->shipping_zipcode, array('placeholder'=>__('Postcode'), 'class'=>'form-control', 'required'=>true, 'id'=>'shipping_zipcode', 'tabindex' => 22)) }} - @if ($errors->has('shipping_zipcode')) - - {{ $errors->first('shipping_zipcode') }} - - @endif - -
-
- - {{ Form::text('shipping_city', $shopping_user->shipping_city, array('placeholder'=>__('City'), 'class'=>'form-control', 'required'=>true, 'id'=>'shipping_city', 'tabindex' => 23)) }} - @if ($errors->has('shipping_city')) - - {{ $errors->first('shipping_city') }} - - @endif -
-
-
-
- - - @if ($errors->has('shipping_country_id')) - - {{ $errors->first('shipping_country_id') }} - - @endif -
-
-
-
- - {{ Form::text('shipping_phone', $shopping_user->shipping_phone, array('placeholder'=>__('Phone'), 'class'=>'form-control', 'id'=>'shipping_phone', 'tabindex' => 26)) }} -
-
-
-
- -
-
-
-
- @if($isView === 'customer') - - - - @endif - -
-
- -
- -
-
- -
-
-
-
-
-
- - {{ Form::textarea('remarks', $shopping_user->remarks, array('placeholder'=>__('Comments'), 'class'=>'form-control', 'rows'=>4, 'id'=>'remarks')) }} -
-
-
- - {{ Form::hidden('faker_mail', $shopping_user->faker_mail) }} - {{ Form::hidden('language', $shopping_user->language) }} - - @if($isView === 'customer-add') - {{ Form::hidden('billing_email_1', $billing_email) }} - {{ Form::hidden('billing_email-confirm_1', $billing_email) }} - @if($shopping_user->faker_mail) - {{ Form::hidden('billing_email', $billing_email) }} - {{ Form::hidden('billing_email-confirm', $billing_email) }} - @else -
-
- - {{ Form::text('billing_email', $billing_email, array('placeholder'=>'E-Mail', 'class'=>'form-control', 'id'=>'billing_email', 'readonly')) }} -
-
- - {{ Form::text('billing_email-confirm', $billing_email, array('placeholder'=>__('Confirm E-Mail'), 'class'=>'form-control', 'id'=>'billing_email-confirm', 'readonly')) }} -
-
- @endif - @else - @if($shopping_user->faker_mail) - {{ Form::hidden('billing_email', $shopping_user->billing_email) }} - {{ Form::hidden('billing_email-confirm', $shopping_user->billing_email) }} - - @if($isAdmin != 1) - @if ($errors->has('email')) - - {{ $errors->first('email') }} - - @endif -
- - {{ __('E-Mail Address') }} {{ __('add') }} - -
-
-
-
- - {{ Form::text('new_email_address', '', array('placeholder'=>__('E-Mail Address'), 'class'=>'form-control', 'id'=>'new_email_address', 'required'=>true ,'tabindex' => 1)) }} - @if ($errors->has('new_email_address')) - - {{ $errors->first('new_email_address') }} - - @endif -

{{ __('customer.customer_sovereignty_info1') }}

- -
-
-
- @endif - @else -
-
- - {{ Form::text('billing_email', $shopping_user->billing_email, array('placeholder'=>'E-Mail', 'class'=>'form-control', 'id'=>'billing_email')) }} -
-
- - {{ Form::text('billing_email-confirm', $shopping_user->billing_email, array('placeholder'=>__('Confirm E-Mail'), 'class'=>'form-control', 'id'=>'billing_email-confirm')) }} -
-
- @endif - - @endif -
-
- - diff --git a/resources/views/portal/layout/application.blade.php b/resources/views/portal/layout/application.blade.php deleted file mode 100644 index b8a1270..0000000 --- a/resources/views/portal/layout/application.blade.php +++ /dev/null @@ -1,192 +0,0 @@ - - - - - - - - - - - {{ config('app.name') }} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -@yield('styles') - - - - - - - - - - - - - - -@yield('layout-content') - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -@yield('scripts') - - - - \ No newline at end of file diff --git a/resources/views/portal/my_orders.blade.php b/resources/views/portal/my_orders.blade.php deleted file mode 100755 index e82a514..0000000 --- a/resources/views/portal/my_orders.blade.php +++ /dev/null @@ -1,97 +0,0 @@ -@extends('portal.layouts.layout-2') - -@section('content') - - @if ($errors->any()) -
-
-
-
    - @foreach ($errors->all() as $error) -
  • {{ $error }}
  • - @endforeach -
-
-
-
- @endif - -

- {{ __('navigation.my_orders') }} -

-
- -
- - - - - - - - - - - - - - - - - @if($shopping_user->shopping_order) - @forelse($shopping_user->getAllOrdersByMember() as $shopping_order) - - - - - - - - - - - - - @empty - - - - @endforelse - @endif - -
#{{__('tables.date')}}{{__('tables.amount')}}{{__('tables.status')}}{{__('tables.shipping')}}{{__('tables.firstname')}}{{__('tables.lastname')}}{{__('tables.email')}}{{__('tables.invoice')}}{{__('tables.art')}}
- - - - {{ $shopping_order->created_at->format('d.m.Y') }} - - {{ $shopping_order->getFormattedTotalShipping() }} € - - {!! \App\Services\Payment::getShoppingOrderBadge($shopping_order) !!} - - {{ $shopping_order->getShippedType() }} - - {{ $shopping_order->shopping_user->billing_firstname }}{{ $shopping_order->shopping_user->billing_lastname }}{{ $shopping_order->shopping_user->billing_email }}{{ $shopping_order->isInvoice() ? ' - ' : '-'; - }}{!! \App\Services\Payment::getPaymentForBadge($shopping_order) !!}
{{ __('order.no_orders_found') }}
-
-
- - -@endsection - -@section('scripts') - -@endsection \ No newline at end of file diff --git a/resources/views/portal/order/_detail_shopping_order.blade.php b/resources/views/portal/order/_detail_shopping_order.blade.php index fc14ea8..b018a21 100644 --- a/resources/views/portal/order/_detail_shopping_order.blade.php +++ b/resources/views/portal/order/_detail_shopping_order.blade.php @@ -26,12 +26,11 @@ @endif
- - {{ $shopping_order_item->product->getLang('name') }} + {{ __('order.content') }}: {{ $shopping_order_item->product->contents }}
{{ __('order.weight') }}: {{ $shopping_order_item->product->weight }} g
diff --git a/resources/views/public/tracking.blade.php b/resources/views/public/tracking.blade.php new file mode 100644 index 0000000..dfa529e --- /dev/null +++ b/resources/views/public/tracking.blade.php @@ -0,0 +1,454 @@ +@extends('web.layouts.layout') + +@section('content') +
+ +
+
+
+

+ + Sendungsverfolgung +

+

+ Verfolgen Sie den Status Ihrer DHL-Sendung in Echtzeit +

+
+
+
+ + +
+
+
+
+
+
+ + + + Geben Sie Ihre DHL Tracking-Nummer ein (10-20 Zeichen) + +
+ + +
+
+
+
+
+ + + + + + + + + + + +
+
+
+
+
+
+
+ + Wo finde ich meine Tracking-Nummer? +
+
    +
  • In der Versandbestätigungs-E-Mail
  • +
  • Auf dem Versandlabel oder Paketschein
  • +
  • In Ihrem Kundenkonto unter "Bestellungen"
  • +
  • Als SMS-Benachrichtigung (falls aktiviert)
  • +
+
+
+ +
+
+
+
+
+
+ + +
+
+
+

+ Probleme bei der Sendungsverfolgung?
+ Kontaktieren Sie uns unter + support@mivita.care + oder besuchen Sie unsere + Kontaktseite. +

+
+
+
+
+ + + +@endsection + +@section('scripts') + + + +@endsection \ No newline at end of file diff --git a/resources/views/sys/admin/cronjobs.blade.php b/resources/views/sys/admin/cronjobs.blade.php deleted file mode 100644 index e53936d..0000000 --- a/resources/views/sys/admin/cronjobs.blade.php +++ /dev/null @@ -1,50 +0,0 @@ -@extends('layouts.layout-2') - -@section('content') - - @if ($errors->any()) -
-
-
-
    - @foreach ($errors->all() as $error) -
  • {{ $error }}
  • - @endforeach -
-
-
-
- @endif - - -

- Cron Jobs -

- - -
- - {{--
- - {!! Form::open(['url' => url()->current(), 'class' => '']) !!} -
- - {{ Form::textarea('text', $text, array('class'=>'form-control', 'rows'=>20)) }} -
- - - {!! Form::close() !!} -
--}} - - @if(count($values)>0) -
- - @foreach($values as $name=>$link) - {{$name}} | {{$link}}

- @endforeach -
- @endif -
- -@endsection - diff --git a/resources/views/sys/admin/customers.blade.php b/resources/views/sys/admin/customers.blade.php deleted file mode 100644 index 6cacdc3..0000000 --- a/resources/views/sys/admin/customers.blade.php +++ /dev/null @@ -1,80 +0,0 @@ -@extends('layouts.layout-2') - -@section('content') - - @if ($errors->any()) -
-
-
-
    - @foreach ($errors->all() as $error) -
  • {{ $error }}
  • - @endforeach -
-
-
-
- @endif - - -

- Kunden -

- - {!! Form::open(['url' => url()->current(), 'class' => '']) !!} -
- -
- - -
- - {{ Form::textarea('text', $text, array('class'=>'form-control', 'rows'=>1)) }} -
- - - - - - - -
- - @if(count($values)>0) -
- -
- - - - - - - - - - - - - @foreach($values as $shopping_user) - - - - - - - - - @endforeach - -
ID{{__('Mail')}}{{__('is like')}}{{__('OrderID')}}{{__('txaction')}}{{__('Action')}}
{{$shopping_user->id}}{{$shopping_user->billing_email}}{{$shopping_user->is_like}}@if($shopping_user->shopping_order){{$shopping_user->shopping_order->id}}@endif@if($shopping_user->shopping_order){{$shopping_user->shopping_order->txaction}}@endif
- -
-
- @endif - -
- {!! Form::close() !!} - -@endsection - diff --git a/resources/views/sys/admin/domain-ssl.blade.php b/resources/views/sys/admin/domain-ssl.blade.php deleted file mode 100644 index b9ac529..0000000 --- a/resources/views/sys/admin/domain-ssl.blade.php +++ /dev/null @@ -1,97 +0,0 @@ -@extends('layouts.layout-2') - -@section('content') - - @if ($errors->any()) -
-
-
-
    - @foreach ($errors->all() as $error) -
  • {{ $error }}
  • - @endforeach -
-
-
-
- @endif - - -

- Content Tools: Links -

- - -
- -
- - {!! Form::open(['url' => url()->current(), 'class' => '']) !!} -
- - {{ Form::textarea('text', $text, array('class'=>'form-control', 'rows'=>20)) }} -
- - - {!! Form::close() !!} -
- - @if(count($values)>0) -
- -
- - - - - - - - - - - - - - @foreach($values as $value) - - - - - - - - - - @endforeach - - -
IDUser-ID{{__('Name')}}{{__('seit')}}DatumErreichbar{{__('Status')}}
{{ $value->id }}{{ $value->user_id }}{{ $value->name }}.mivita.care{{ $value->getActiveDateFormatSmall() }} - @if($value->user && $value->user->payment_shop) - @if($value->user->isActiveShop()) - {{ $value->user->getPaymentShopDateFormat() }} - @else - {{ $value->user->getPaymentShopDateFormat() }} - @endif - @else - - @endif - - - @if($value->getSubdomainAvailable()) - {{ __('available') }} - @if($value->getSubdomainSslSin()) HTTPS @else HTTP @endif - - @else - {{ __('not available') }} HTTP - @endif - {!! get_active_badge($value->active) !!}
- -
- -
- @endif -
- -@endsection - diff --git a/resources/views/sys/admin/import-show.blade.php b/resources/views/sys/admin/import-show.blade.php deleted file mode 100644 index 43f722c..0000000 --- a/resources/views/sys/admin/import-show.blade.php +++ /dev/null @@ -1,104 +0,0 @@ -@extends('layouts.layout-2') - -@section('content') - - -

- Kontakte Import Status -

- -
-
-
-
-
-
-
-
{{ __('eingelesene Datensätze') }}
-
{{ $import['count'] }}
-
-
-
-
- -
-
-
-
-
-
-
-
{{ __('Kontakte importiert') }}
-
{{ count($import['imported']) }}
-
-
-
-
-
-
-
-
-
-
-
-
{{ __('ohne E-Mai Adresse') }}
-
{{ $import['not'] }}
-
-
-
-
- -
-
-
-
-
-
-
-
{{__('Mail schon vorhanden')}}
-
{{ count($import['has_imported']) }}
-
-
-
-
- -
-
- - -
-
- - - - - - - - - - - - - - - - -
{{__('Datei')}}:{{ $file }}
{{__('Import Position start')}}:{{$skip}}
{{__('Import limit')}}:{{ $limit }}
- -
-
Vorhandene Mails
- - @foreach($import['has_imported'] as $row) - - {{$row}}
- - @endforeach - -
-
- - - - -@endsection diff --git a/resources/views/sys/admin/import.blade.php b/resources/views/sys/admin/import.blade.php deleted file mode 100644 index 14d0e9c..0000000 --- a/resources/views/sys/admin/import.blade.php +++ /dev/null @@ -1,109 +0,0 @@ -@extends('layouts.layout-2') - -@section('content') - -

- Kontakte importieren -

- -
-
- Excel-Datei hochladen -
-
- - {!! Form::open([ 'url' => route('sysadmin_import_store'), 'method' => 'post', 'files' => true, 'enctype' => 'multipart/form-data', 'class' => 'dropzone', 'id' => 'realDropzone' ]) !!} -
- -
- {!! Form::close() !!} - -
- -
-
-@endsection - -@section('scripts') - -@endsection diff --git a/resources/views/sys/admin/shopping-orders.blade.php b/resources/views/sys/admin/shopping-orders.blade.php deleted file mode 100644 index adcffe4..0000000 --- a/resources/views/sys/admin/shopping-orders.blade.php +++ /dev/null @@ -1,51 +0,0 @@ -@extends('layouts.layout-2') - -@section('content') - - @if ($errors->any()) -
-
-
-
    - @foreach ($errors->all() as $error) -
  • {{ $error }}
  • - @endforeach -
-
-
-
- @endif - - -

- Content Tools: Links -

- - -
- -
- - {!! Form::open(['url' => url()->current(), 'class' => '']) !!} -
- - {{ Form::textarea('text', $text, array('class'=>'form-control', 'rows'=>1)) }} -
- - - - {!! Form::close() !!} -
- - @if(count($values)>0) -
- - @foreach($values as $value) -
{{$value->billing_email}} | {{$value->orders}}
- @endforeach -
- @endif -
- -@endsection - diff --git a/resources/views/sys/sales/index.blade.php b/resources/views/sys/sales/index.blade.php deleted file mode 100755 index 6b1706a..0000000 --- a/resources/views/sys/sales/index.blade.php +++ /dev/null @@ -1,65 +0,0 @@ -@extends('layouts.layout-2') - -@section('content') -
-
- Berater Bestellungen -
-
- {!! Form::open(['url' => route('sysadmin_tool_store', ['sales_members']), 'class' => 'form-horizontal', 'id'=>'filter_sales_member']) !!} - - - - {!! Form::close() !!} - -
- -
- - - - - - - - - - - - - - @foreach($values as $value) - - - - - - - - - - - @endforeach - -
{{__('Vorname')}}{{__('Nachname') }}{{__('E-Mail') }}{{__('Betrag') }}{{__('Datum') }}{{__('Order')}}{{__('Status')}}
{{ $value->shopping_user->billing_firstname }}{{ $value->shopping_user->billing_lastname }}{{ $value->shopping_user->billing_email }}{{ $value->getFormattedTotalShipping()." €" }}{{ $value->created_at->format("d.m.Y") }}@foreach($value->shopping_order_items as $shopping_order_item) - {{ $shopping_order_item->product->name }}
- @endforeach - -
{!! App\Services\Payment::getShoppingOrderBadge($value) !!}
-
- -
- - -@endsection diff --git a/resources/views/user/homeparty/api_order_list.blade.php b/resources/views/user/homeparty/api_order_list.blade.php deleted file mode 100644 index 0f47894..0000000 --- a/resources/views/user/homeparty/api_order_list.blade.php +++ /dev/null @@ -1,283 +0,0 @@ -@extends('layouts.layout-2') - -@section('content') - - -

-
{{ __('navigation.my_homeparty') }} / {{ $homeparty->name }} - {{ $homeparty->date }}
- zurück -

- - @if(Session::has('custom-error')) -
- - {{ Session::get('custom-error') }} -
- @endif - - @if($userHistoryPaymentOrder && $userHistoryPaymentOrder->status > 2) -
Eine Zahlung wurde ausgeführt. Status: {{ trans('payment.status.'.$userHistoryPaymentOrder->getStatusType())}}
- @endif -
- -
-
-
-
Bestellland
- {{ App\Services\UserService::getOrderInfo('billing_state') }} -
-
-
Lieferland
- {{ App\Services\UserService::getOrderInfo('shipping_state') }} -
-
-
MwSt
- {{ App\Services\UserService::getOrderInfo('tax_free') }} -
-
-
Reverse Charge Verfahren
- {{ App\Services\UserService::getOrderInfo('user_reverse_charge') }} -
-
- Das Lieferland kann nicht mehr geändert werden. - -
-
- - {!! Form::open(['url' => route('user_homeparty_order', [$homeparty->id]), 'class' => 'form-horizontal', 'id'=>'homeparty-order-form']) !!} -
-
-
-
-
-
Bestellung anlegen
- @if(!$homeparty->completed) - - @endif -
-
-
-
-
-
-
-
Lieferadresse - @if(!$homeparty->completed) - - @endif -
- @include('user.homeparty._address', ['homeparty_user' => $homeparty->homeparty_host]) -
- - {{-- TODO Berechnung Bonus --}} -
-
Aktuelle Bonusansicht
-
- @include('user.homeparty.show_bonus', ['homeparty' => $homeparty]) -
-
-
-
-
- - @if($homeparty->homeparty_host) -
-
-
-
-
-
Bestellung Gastgeber:in {{$homeparty->homeparty_host->billing_firstname}} {{$homeparty->homeparty_host->billing_lastname}}
-
-
- @if(!$homeparty->completed) -
- -
- @endif -
-
-
-
- @include('user.homeparty.show_products_order', ['homeparty_guest' => $homeparty->homeparty_host]) -
-
-
- @endif - - @if($homeparty->homeparty_guests) - @php($g_count = 1) - @foreach($homeparty->homeparty_guests as $homeparty_guest) -
-
-
-
-
-
Bestellung {!! $g_count++ !!}. Gast {{$homeparty_guest->billing_firstname}} {{$homeparty_guest->billing_lastname}}
-
-
- @if(!$homeparty->completed) -
- -
- @endif -
-
-
-
- @include('user.homeparty.show_products_order', ['homeparty_guest' => $homeparty_guest]) -
-
-
- @endforeach - @endif -
- -
-
-
-
-
-
Gesamtübersicht
-
-
-
-
- -
-
- @include('user.homeparty.show_total_order', ['homeparty' => $homeparty]) -
- @if(!$homeparty->completed) -
- @if($homeparty->homeparty_host && $homeparty->homeparty_host->isAddress()) -
- -
-

- Du wirst auf unseren checkout Server weitergeletet, die Verbindung ist SSL verschlüsselt. - @else -
- Die Bestellung kann erst abgesendet werden, wenn die Lieferadresse Gastgeber/in angelegt ist. -
- - @endif - @endif -
-
- -
- @if(!$homeparty->completed) - Homparty verwalten - @endif - zurück zur Übersicht -
- {!! Form::close() !!} - - - - -@endsection -@section('scripts') - - -@endsection \ No newline at end of file diff --git a/resources/views/user/homeparty/modal_show_products.blade.php b/resources/views/user/homeparty/modal_show_products.blade.php deleted file mode 100644 index 7062b3b..0000000 --- a/resources/views/user/homeparty/modal_show_products.blade.php +++ /dev/null @@ -1,71 +0,0 @@ - - \ No newline at end of file diff --git a/resources/views/user/order/_bak_shipping_me.blade.php b/resources/views/user/order/_bak_shipping_me.blade.php deleted file mode 100644 index 7bde655..0000000 --- a/resources/views/user/order/_bak_shipping_me.blade.php +++ /dev/null @@ -1,215 +0,0 @@ - -@if($user->account) - @if($user->account->same_as_billing) - - -
-
-
- - {{ Form::text('shipping_company', $user->account->company, array('placeholder'=>__('Company name'), 'class'=>'form-control')) }} -
-
-
-
- - - @if ($errors->has('shipping_salutation')) - - {{ $errors->first('shipping_salutation') }} - - @endif -
-
-
-
- - {{ Form::text('shipping_firstname', $user->account->first_name, array('placeholder'=>__('First name'), 'class'=>'form-control', 'required'=>true)) }} - @if ($errors->has('shipping_firstname')) - - {{ $errors->first('shipping_firstname') }} - - @endif - -
-
- - {{ Form::text('shipping_lastname', $user->account->last_name, array('placeholder'=>__('Last name'), 'class'=>'form-control', 'required'=>true)) }} - @if ($errors->has('shipping_lastname')) - - {{ $errors->first('shipping_lastname') }} - - @endif -
-
-
-
- - {{ Form::text('shipping_address', $user->account->address, array('placeholder'=>__('Street'), 'class'=>'form-control', 'required'=>true)) }} - @if ($errors->has('shipping_address')) - - {{ $errors->first('shipping_address') }} - - @endif -
-
-
-
- - {{ Form::text('shipping_address_2', $user->account->address_2, array('placeholder'=>__('Flat Building optional'), 'class'=>'form-control')) }} -
-
-
-
- - {{ Form::text('shipping_zipcode', $user->account->zipcode, array('placeholder'=>__('Postcode'), 'class'=>'form-control', 'required'=>true)) }} - @if ($errors->has('shipping_zipcode')) - - {{ $errors->first('shipping_zipcode') }} - - @endif -
-
- - {{ Form::text('shipping_city', $user->account->city, array('placeholder'=>__('City'), 'class'=>'form-control', 'required'=>true)) }} - @if ($errors->has('shipping_city')) - - {{ $errors->first('shipping_city') }} - - @endif -
-
-
-
- - - @if ($errors->has('shipping_state')) - - {{ $errors->first('shipping_state') }} - - @endif -
-
-
-
- - {{ Form::text('shipping_phone', $user->account->phone, array('placeholder'=>__('Phone'), 'class'=>'form-control')) }} -
-
-
- - @else - -
-
-
- - {{ Form::text('shipping_company', $user->account->shipping_company, array('placeholder'=>__('Company name'), 'class'=>'form-control')) }} -
-
-
-
- - - @if ($errors->has('shipping_salutation')) - - {{ $errors->first('shipping_salutation') }} - - @endif -
-
-
-
- - {{ Form::text('shipping_firstname', $user->account->shipping_firstname, array('placeholder'=>__('First name'), 'class'=>'form-control', 'required'=>true)) }} - @if ($errors->has('shipping_firstname')) - - {{ $errors->first('shipping_firstname') }} - - @endif -
-
- - {{ Form::text('shipping_lastname', $user->account->shipping_lastname, array('placeholder'=>__('Last name'), 'class'=>'form-control', 'required'=>true)) }} - @if ($errors->has('shipping_lastname')) - - {{ $errors->first('shipping_lastname') }} - - @endif - -
-
-
-
- - {{ Form::text('shipping_address', $user->account->shipping_address, array('placeholder'=>__('Street'), 'class'=>'form-control', 'required'=>true)) }} - @if ($errors->has('shipping_address')) - - {{ $errors->first('shipping_address') }} - - @endif -
-
-
-
- - {{ Form::text('shipping_address_2', $user->account->shipping_address_2, array('placeholder'=>__('Flat Building optional'), 'class'=>'form-control')) }} - @if ($errors->has('shipping_address_2')) - - {{ $errors->first('shipping_address_2') }} - - @endif -
-
-
-
- - {{ Form::text('shipping_zipcode', $user->account->shipping_zipcode, array('placeholder'=>__('Postcode'), 'class'=>'form-control', 'required'=>true)) }} - @if ($errors->has('shipping_zipcode')) - - {{ $errors->first('shipping_zipcode') }} - - @endif - -
-
- - {{ Form::text('shipping_city', $user->account->shipping_city, array('placeholder'=>__('City'), 'class'=>'form-control', 'required'=>true)) }} - @if ($errors->has('shipping_city')) - - {{ $errors->first('shipping_city') }} - - @endif -
-
-
-
- - - @if ($errors->has('shipping_state')) - - {{ $errors->first('shipping_state') }} - - @endif -
-
- -
-
- - {{ Form::text('shipping_phone', $user->account->shipping_phone, array('placeholder'=>__('Phone'), 'class'=>'form-control')) }} -
-
-
- @endif -@else -

Fehler: Keine Adressdaten gefunden!

-@endif \ No newline at end of file diff --git a/resources/views/user/order/_bak_shipping_ot.blade.php b/resources/views/user/order/_bak_shipping_ot.blade.php deleted file mode 100644 index 21951c7..0000000 --- a/resources/views/user/order/_bak_shipping_ot.blade.php +++ /dev/null @@ -1,210 +0,0 @@ - - @if($shopping_user->same_as_billing) - -
-
-
- - {{ Form::text('shipping_company', $shopping_user->billing_company, array('placeholder'=>__('Company name'), 'class'=>'form-control')) }} -
-
-
-
- - - @if ($errors->has('shipping_salutation')) - - {{ $errors->first('shipping_salutation') }} - - @endif -
-
-
-
- - {{ Form::text('shipping_firstname', $shopping_user->billing_firstname, array('placeholder'=>__('First name'), 'class'=>'form-control', 'required'=>true)) }} - @if ($errors->has('shipping_firstname')) - - {{ $errors->first('shipping_firstname') }} - - @endif - -
-
- - {{ Form::text('shipping_lastname', $shopping_user->billing_lastname, array('placeholder'=>__('Last name'), 'class'=>'form-control', 'required'=>true)) }} - @if ($errors->has('shipping_lastname')) - - {{ $errors->first('shipping_lastname') }} - - @endif -
-
-
-
- - {{ Form::text('shipping_address', $shopping_user->billing_address, array('placeholder'=>__('Street'), 'class'=>'form-control', 'required'=>true)) }} - @if ($errors->has('shipping_address')) - - {{ $errors->first('shipping_address') }} - - @endif -
-
-
-
- - {{ Form::text('shipping_address_2', $shopping_user->billing_address_2, array('placeholder'=>__('Flat Building optional'), 'class'=>'form-control')) }} -
-
-
-
- - {{ Form::text('shipping_zipcode', $shopping_user->billing_zipcode, array('placeholder'=>__('Postcode'), 'class'=>'form-control', 'required'=>true)) }} - @if ($errors->has('shipping_zipcode')) - - {{ $errors->first('shipping_zipcode') }} - - @endif -
-
- - {{ Form::text('shipping_city', $shopping_user->billing_city, array('placeholder'=>__('City'), 'class'=>'form-control', 'required'=>true)) }} - @if ($errors->has('shipping_city')) - - {{ $errors->first('shipping_city') }} - - @endif -
-
-
-
- - - @if ($errors->has('shipping_state')) - - {{ $errors->first('shipping_state') }} - - @endif -
-
-
-
- - {{ Form::text('shipping_phone', $shopping_user->billing_phone, array('placeholder'=>__('Phone'), 'class'=>'form-control')) }} -
-
-
- - @else - -
-
-
- - {{ Form::text('shipping_company', $shopping_user->shipping_company, array('placeholder'=>__('Company name'), 'class'=>'form-control')) }} -
-
-
-
- - - @if ($errors->has('shipping_salutation')) - - {{ $errors->first('shipping_salutation') }} - - @endif -
-
-
-
- - {{ Form::text('shipping_firstname', $shopping_user->shipping_firstname, array('placeholder'=>__('First name'), 'class'=>'form-control', 'required'=>true)) }} - @if ($errors->has('shipping_firstname')) - - {{ $errors->first('shipping_firstname') }} - - @endif -
-
- - {{ Form::text('shipping_lastname', $shopping_user->shipping_lastname, array('placeholder'=>__('Last name'), 'class'=>'form-control', 'required'=>true)) }} - @if ($errors->has('shipping_lastname')) - - {{ $errors->first('shipping_lastname') }} - - @endif - -
-
-
-
- - {{ Form::text('shipping_address', $shopping_user->shipping_address, array('placeholder'=>__('Street'), 'class'=>'form-control', 'required'=>true)) }} - @if ($errors->has('shipping_address')) - - {{ $errors->first('shipping_address') }} - - @endif -
-
-
-
- - {{ Form::text('shipping_address_2', $shopping_user->shipping_address_2, array('placeholder'=>__('Flat Building optional'), 'class'=>'form-control')) }} - @if ($errors->has('shipping_address_2')) - - {{ $errors->first('shipping_address_2') }} - - @endif -
-
-
-
- - {{ Form::text('shipping_zipcode', $shopping_user->shipping_zipcode, array('placeholder'=>__('Postcode'), 'class'=>'form-control', 'required'=>true)) }} - @if ($errors->has('shipping_zipcode')) - - {{ $errors->first('shipping_zipcode') }} - - @endif - -
-
- - {{ Form::text('shipping_city', $shopping_user->shipping_city, array('placeholder'=>__('City'), 'class'=>'form-control', 'required'=>true)) }} - @if ($errors->has('shipping_city')) - - {{ $errors->first('shipping_city') }} - - @endif -
-
-
-
- - - @if ($errors->has('shipping_state')) - - {{ $errors->first('shipping_state') }} - - @endif -
-
- -
-
- - {{ Form::text('shipping_phone', $shopping_user->shipping_phone, array('placeholder'=>__('Phone'), 'class'=>'form-control')) }} -
-
-
- @endif \ No newline at end of file diff --git a/resources/views/user/order/api_order_list.blade.php b/resources/views/user/order/api_order_list.blade.php deleted file mode 100644 index 0f47894..0000000 --- a/resources/views/user/order/api_order_list.blade.php +++ /dev/null @@ -1,283 +0,0 @@ -@extends('layouts.layout-2') - -@section('content') - - -

-
{{ __('navigation.my_homeparty') }} / {{ $homeparty->name }} - {{ $homeparty->date }}
- zurück -

- - @if(Session::has('custom-error')) -
- - {{ Session::get('custom-error') }} -
- @endif - - @if($userHistoryPaymentOrder && $userHistoryPaymentOrder->status > 2) -
Eine Zahlung wurde ausgeführt. Status: {{ trans('payment.status.'.$userHistoryPaymentOrder->getStatusType())}}
- @endif -
- -
-
-
-
Bestellland
- {{ App\Services\UserService::getOrderInfo('billing_state') }} -
-
-
Lieferland
- {{ App\Services\UserService::getOrderInfo('shipping_state') }} -
-
-
MwSt
- {{ App\Services\UserService::getOrderInfo('tax_free') }} -
-
-
Reverse Charge Verfahren
- {{ App\Services\UserService::getOrderInfo('user_reverse_charge') }} -
-
- Das Lieferland kann nicht mehr geändert werden. - -
-
- - {!! Form::open(['url' => route('user_homeparty_order', [$homeparty->id]), 'class' => 'form-horizontal', 'id'=>'homeparty-order-form']) !!} -
-
-
-
-
-
Bestellung anlegen
- @if(!$homeparty->completed) - - @endif -
-
-
-
-
-
-
-
Lieferadresse - @if(!$homeparty->completed) - - @endif -
- @include('user.homeparty._address', ['homeparty_user' => $homeparty->homeparty_host]) -
- - {{-- TODO Berechnung Bonus --}} -
-
Aktuelle Bonusansicht
-
- @include('user.homeparty.show_bonus', ['homeparty' => $homeparty]) -
-
-
-
-
- - @if($homeparty->homeparty_host) -
-
-
-
-
-
Bestellung Gastgeber:in {{$homeparty->homeparty_host->billing_firstname}} {{$homeparty->homeparty_host->billing_lastname}}
-
-
- @if(!$homeparty->completed) -
- -
- @endif -
-
-
-
- @include('user.homeparty.show_products_order', ['homeparty_guest' => $homeparty->homeparty_host]) -
-
-
- @endif - - @if($homeparty->homeparty_guests) - @php($g_count = 1) - @foreach($homeparty->homeparty_guests as $homeparty_guest) -
-
-
-
-
-
Bestellung {!! $g_count++ !!}. Gast {{$homeparty_guest->billing_firstname}} {{$homeparty_guest->billing_lastname}}
-
-
- @if(!$homeparty->completed) -
- -
- @endif -
-
-
-
- @include('user.homeparty.show_products_order', ['homeparty_guest' => $homeparty_guest]) -
-
-
- @endforeach - @endif -
- -
-
-
-
-
-
Gesamtübersicht
-
-
-
-
- -
-
- @include('user.homeparty.show_total_order', ['homeparty' => $homeparty]) -
- @if(!$homeparty->completed) -
- @if($homeparty->homeparty_host && $homeparty->homeparty_host->isAddress()) -
- -
-

- Du wirst auf unseren checkout Server weitergeletet, die Verbindung ist SSL verschlüsselt. - @else -
- Die Bestellung kann erst abgesendet werden, wenn die Lieferadresse Gastgeber/in angelegt ist. -
- - @endif - @endif -
-
- -
- @if(!$homeparty->completed) - Homparty verwalten - @endif - zurück zur Übersicht -
- {!! Form::close() !!} - - - - -@endsection -@section('scripts') - - -@endsection \ No newline at end of file diff --git a/resources/views/user/order/custom_payment.blade.php b/resources/views/user/order/custom_payment.blade.php deleted file mode 100644 index 6817b4e..0000000 --- a/resources/views/user/order/custom_payment.blade.php +++ /dev/null @@ -1,278 +0,0 @@ -@extends('layouts.layout-2') - -@section('content') -
-
- @if($is_abo) -

{{ __('order.order_abo_was_placed_successfully') }}

- @else -

{{ __('order.order_was_placed_successfully') }}

- @endif - -
- {{ __('order.payment_link_for_your_customer') }} -
- -
-
-
-
- {{ __('customer.customer_billing_address') }} -
-
- @if($shopping_user->billing_company) -
-
{{ __('Company') }}
- {{ $shopping_user->billing_company }} -
- @endif -
-
{{ __('Salutation') }}
- {{ \App\Services\HTMLHelper::getSalutationLang($shopping_user->billing_salutation) }} -
-
-
{{ __('First name') }}
- {{ $shopping_user->billing_firstname }} -
-
-
{{ __('Last name') }}
- {{ $shopping_user->billing_lastname }} -
-
-
-
-
{{ __('Street') }}
- {{ $shopping_user->billing_address }} -
-
-
{{ __('Addition') }}
- {{ $shopping_user->billing_address_2 }} -
-
-
{{ __('Postcode') }}
- {{ $shopping_user->billing_zipcode }} -
-
-
{{ __('City') }}
- {{ $shopping_user->billing_city }} -
-
-
{{ __('Country') }}
- {{ $shopping_user->billing_country->getLocated() }} -
-
-
{{ __('Phone') }}
- {{ $shopping_user->billing_phone }} -
-
-
{{ __('E-Mail') }}
- @if($shopping_user->faker_mail) "-" @else {{ $shopping_user->billing_email }} @endif -
-
-
-
- - - -
-
- {{ __('Delivery address') }} -
- @if($shopping_user->same_as_billing) - {{__('email.checkout_mail_same_address')}} - @else -
- @if($shopping_user->shipping_company) -
-
{{ __('Company') }}
- {{ $shopping_user->shipping_company }} -
- @endif -
-
{{ __('Salutation') }}
- {{ \App\Services\HTMLHelper::getSalutationLang($shopping_user->shipping_salutation) }} -
-
-
{{ __('First name') }}
- {{ $shopping_user->shipping_firstname }} -
-
-
{{ __('Last name') }}
- {{ $shopping_user->shipping_lastname }} -
-
-
-
-
{{ __('Street') }}
- {{ $shopping_user->shipping_address }} -
-
-
{{ __('Addition') }}
- {{ $shopping_user->shipping_address_2 }} -
-
-
{{ __('Postcode') }}
- {{ $shopping_user->shipping_zipcode }} -
-
-
{{ __('City') }}
- {{ $shopping_user->shipping_city }} -
-
-
{{ __('Country') }}
- {{ $shopping_user->shipping_country->getLocated() }} -
-
-
{{ __('Phone') }}
- {{ $shopping_user->shipping_phone }} -
-
- @endif -
- -
-
- {{ __('tables.order') }} -
- @if(isset($yard_shopping_items)) - -
- - - - - - - - - @foreach($yard_shopping_items['items'] as $item) - - - - - - - - @endforeach - - - - - - - - - - - - - - - - - - - - - - - - - - - @if($yard_shopping_items['tax_free']) - - - - - @else - - - - - @endif - -
{{ __('tables.product') }} @if($yard_shopping_items['tax_free']) - {{ __('tables.net_price') }} - @else - {{ __('tables.price') }} - @endif - {{ __('tables.quantity') }}{{ __('tables.sum') }}
-
- @if($item->image) - - @endif - -
-
{{ $item->name }} - {!! get_abo_type_badge($item->abo_type) !!}
-
-
{{ __('order.content') }}: {{ $item->contents }}
-
{{ __('order.art_no') }}: {{ $item->number }}
-
-
-
-
- @if($yard_shopping_items['tax_free']) - {{ formatNumber($item->price_net, 2) }} € - @else - {{ formatNumber($item->price, 2) }} € - @endif - - {{ $item->qty }} - - @if($yard_shopping_items['tax_free']) - {{ formatNumber($item->price_net_total, 2) }} € - @else - {{ formatNumber($item->price_total, 2) }} € - @endif -
- {{__('order.subtotal')}} - - {{ $yard_shopping_items['total']['subtotal'] }} € -
- {{__('Delivery country')}} - - {{ $yard_shopping_items['total']['shippingCountryName'] }} -
- {{__('order.shipping_costs')}} - - {{ $yard_shopping_items['total']['shippingNet'] }} € -
- {{__('order.total_without_VAT')}} - - {{ $yard_shopping_items['total']['subtotalWithShipping'] }} € -
- {{__('order.plus_VAT')}} - - {{ $yard_shopping_items['total']['taxWithShipping'] }} € -
- {{__('order.total_net')}} - - {{ $yard_shopping_items['total']['totalWithShipping'] }} € -
- {{__('order.total_net')}} - - {{ $yard_shopping_items['total']['totalWithShipping'] }} € -
- {{__('email.checkout_mail_subtotal_ws')}} -
- {{__('order.total_gross')}} - - {{ $yard_shopping_items['total']['totalWithShipping'] }} € -
- {{__('email.checkout_mail_tax_info')}} -
-
- @endif - -
-
- - -@endsection - diff --git a/resources/views/user/order/list_form.blade.php b/resources/views/user/order/list_form.blade.php deleted file mode 100644 index 8762264..0000000 --- a/resources/views/user/order/list_form.blade.php +++ /dev/null @@ -1,103 +0,0 @@ - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
ProduktPreisAnzahlSumme
-
- -
- Nike Men Black Liteforce III Sneakers - - Color: -   - Size: EU 37   - Ships from: China - -
-
-
- $57.55 - - - - 115.1 € - - × -
-
- -
- WALKING 400 BLUE CAT3 - - Ships from: Germany - -
-
-
- $20.55 - - - - $20.55 - - × -
-
- - -
-
- {{-- - - --}} -
-
-
- -
$20
-
-
- -
$1164.65
-
-
-
-
-
- -
- diff --git a/resources/views/user/shop/sales/api_order_detail.blade.php b/resources/views/user/shop/sales/api_order_detail.blade.php deleted file mode 100644 index f57b9e2..0000000 --- a/resources/views/user/shop/sales/api_order_detail.blade.php +++ /dev/null @@ -1,23 +0,0 @@ - \ No newline at end of file diff --git a/resources/views/user/team/_points_detail.blade.php b/resources/views/user/team/_points_detail.blade.php deleted file mode 100644 index 3173fad..0000000 --- a/resources/views/user/team/_points_detail.blade.php +++ /dev/null @@ -1,110 +0,0 @@ -@extends('layouts.layout-2') - -@section('content') - - @if ($errors->any()) -
-
-
-
    - @foreach ($errors->all() as $error) -
  • {{ $error }}
  • - @endforeach -
-
-
-
- @endif -

- {{ __('navigation.my_team') }} -

-
-
- {{__('Points')}} -
-
- {!! Form::open(['url' => route('user_team_points'), 'class' => 'form-horizontal', 'id'=>'form_filter_user_points']) !!} - -
-
- -
-
- -
-
- {!! Form::close() !!} -
- - - -
-
- - - - - - - - - - - - -
{{__('Datum') }}{{__('Points')}}{{__('Umsatz netto')}}{{__('Art')}}{{__('Bestellung')}}{{__('Info') }}
-
-
-
- -@endsection diff --git a/resources/views/web/templates/_card.blade.php b/resources/views/web/templates/_card.blade.php deleted file mode 100644 index f3b61b3..0000000 --- a/resources/views/web/templates/_card.blade.php +++ /dev/null @@ -1,383 +0,0 @@ -@extends($user_shop ?'web.user.layouts.layout' : 'web.layouts.layout') - -@section('content') - - - - - - -
-
- -

Warenkorb

- - - - - -
- - -
- -

Du hast {{ Yard::instance('shopping')->count() }} Artikel in Deinem Warenkorb

- @if(Yard::instance('shopping')->getShippingFree()) -
Versandkostenfrei ab {{ formatNumber(Yard::instance('shopping')->getShippingFree()) }} €**
- @endif - - - @if(Yard::instance('shopping')->content()->count()) - - {!! Form::open(['url' => url(Util::getPostRoute().'card/update'), 'class' => 'cartContent clearfix', 'id'=>'']) !!} - - -
- -
-
- -
- -
- -
-
-
- Artikel -
-
- Einzelpreis -
-
- Anzahl -
-
-
- -
-
- - @foreach(Yard::instance('shopping')->content() as $row) - @php($product = \App\Models\Product::find($row->id)) - -
- - - -
-
-
- {{ $row->name }} -
Inhalt: {{ $product->contents }}
-
Art.-Nr.: {{ $product->number }}
-
Lieferzeit: 1-3 Werktage
- - -
- -
-
{{ $row->price() }} €
- @if(Yard::instance('shopping')->isPriceCurrency()) - ~{{ Yard::instance('shopping')->getCurrencyByKey('price', $row, 2) }} {{ Yard::instance('shopping')->getPriceCurrencyUnit() }} - @endif -
{{ $product->getBasePriceFormattedFullWith(Yard::instance('shopping')->getUserTaxFree(), false, Yard::instance('shopping')->getUserCountry()) }}
-
- @if(Yard::instance('shopping')->getUserTaxFree()) - * Preis netto - @else - * inkl. {{ number_format($row->taxRate, 0)}}% MwSt.% MwSt. - @endif -
-
- -
-
- -
-
- {{ $row->subtotal() }} € - @if(Yard::instance('shopping')->isPriceCurrency()) -
- ~{{ Yard::instance('shopping')->getCurrencyByKey('subtotal', $row, 2) }} {{ Yard::instance('shopping')->getPriceCurrencyUnit() }} - @endif -
- -
-
-
- -
- - @endforeach - Warenkorb löschen - -
-
- {!! Form::close() !!} - - @endif - -
- - -
- - @if(Yard::instance('shopping')->content()->count()) -

Warenkorb Summe

- - -
-
-
- -
- {{ Yard::instance('shopping')->total() }} € - Zwischensumme: -
-
- -
- {{ Yard::instance('shopping')->getShippingCountryName() }} - Lieferland: -
- - {{--
- -
Lieferland:
-
-
- -
-
-
--}} -
- {{ Yard::instance('shopping')->shipping() }} € - Versandkosten: -
-
- @if(Yard::instance('shopping')->getUserTaxFree()) -
- {{ Yard::instance('shopping')->subtotalWithShipping() }} € - Summe netto: -
- @else -
- {{ Yard::instance('shopping')->subtotalWithShipping() }} € - Summe ohne MwSt: -
-
- {{ Yard::instance('shopping')->taxWithShipping() }} € - zzgl. {{-- Yard::getTaxRate() --}} MwSt: -
- @endif -
- - {{ Yard::instance('shopping')->totalWithShipping() }} € - Gesamtsumme: - - zur Kasse -
-

Sie werden auf unseren checkout Server weitergeletet, die Verbindung ist mit SSL verschlüsselt.

-
-
-
- @endif - -
-
-

-
-

Alle Preise inkl. gesetzl. Mehrwertsteuer zzgl. Versandkosten, wenn nicht anders beschrieben

- -
-
- -@endsection \ No newline at end of file diff --git a/resources/views/web/templates/agb.blade.php b/resources/views/web/templates/agb.blade.php deleted file mode 100644 index 481a9d9..0000000 --- a/resources/views/web/templates/agb.blade.php +++ /dev/null @@ -1,83 +0,0 @@ -@extends($user_shop ?'web.user.layouts.layout' : 'web.layouts.layout') - -@section('content') -
-
- -
-

Allgemeinen Geschäftsbedingungen

-
-
- Grundlegendes
- 1) Die nachstehenden Geschäftsbedingungen gelten für alle Verträge, die Sie mit uns als Anbieter (mivita e.K.) über die Internetseite www.mivita.care schließen. Das Warenangebot in unserem Online-Shop richtet sich ausschließlich an volljährige Kunden. Der Einbeziehung von Allgemeinen Geschäftsbedingungen von Kunden, die diesen Geschäftsbedingungen widersprechen, wird bereits jetzt widersprochen. Die Vertragssprache ist deutsch. Sie können diese Geschäfts-bedingungen auf unserer Website abrufen und ausdrucken. -
-
- 2) Den vollständigen Vertragstext speichern wir nicht. Die Vertragsdaten können Sie vor Absendung Ihrer Bestellung über das Online - Warenkorbsystem ausdrucken oder elektronisch sichern. Nach Zugang Ihrer Bestellung schicken wir Ihnen die Bestelldaten, die gesetzlich vorgeschriebenen Informationen bei Fernabsatzverträgen und die Allgemeinen Geschäftsbedingungen nochmals per Mail zu. -

- Grundlegendes
- 1) Unsere Warenangebote im Internet sind unverbindlich und stellen kein verbindliches Angebot zum Abschluss eines Vertrages dar. Sie können über unser Online - Warenkorbsystem eine Bestellung, also ein verbindliches Kaufangebot abgeben. Hierzu legen Sie die zum Kauf beabsichtigten Waren im „Warenkorb” ab. Über die entsprechende Schaltfläche in der Navigationsleiste können Sie den „Warenkorb” aufrufen und dort jederzeit Änderungen vornehmen. Nach Aufrufen der Seite „Kasse” und der Eingabe Ihrer persönlichen Daten sowie der Zahlungs- und Versandbedingungen werden abschließend nochmals alle Bestelldaten in einer Bestellübersicht angezeigt. Sie haben hier die Möglichkeit, vor der Absendung Ihrer Bestellung sämtliche Angaben nochmals zu überprüfen, zu ändern (auch über die Funktion „zurück” des Internetbrowsers) bzw. den Kauf abzubrechen. Durch Absendung der Bestellung über die Schaltfläche “Kaufen” geben Sie ein verbindliches Angebot zum Abschluss des Vertrages ab. Sie erhalten dann eine automatische Eingangsbestätigung per Mail, die noch nicht zum Vertragsschluss führt. -

- (2) Wir können Ihr Angebot innerhalb von 2 Tagen durch Übermittlung einer Bestellbestätigung per Mail annehmen. Sofern Sie innerhalb dieser Frist keine entsprechende Nachricht erhalten sollten, sind Sie nicht mehr an Ihre Bestellung gebunden. Gegebenenfalls bereits erbrachte Leistungen erstatten wir Ihnen in diesem Fall unverzüglich zurück. -

- (3) Die Abwicklung der Bestellung und Übermittlung aller im Zusammenhang mit dem Vertragsschluss erforderlichen Informationen erfolgt per Mail zum Teil automatisiert. Sie haben deshalb sicherzustellen, dass die von Ihnen bei uns hinterlegte Mail-Adresse zutreffend ist, der Empfang der Mails technisch sichergestellt und insbesondere nicht durch SPAM-Filter verhindert wird. -

- - § 3 Preise/Zahlungsmodalitäten
- (1) Die in unseren Angeboten genannten Preise sowie die Versandkosten stellen Gesamtpreise dar. Sie beinhalten alle Preisbestandteile einschließlich aller anfallenden Steuern. -

- (2) Die Versandkosten sind nicht im Kaufpreis enthalten. Sie können über eine entsprechend bezeichnete Schaltfläche auf unserer Website oder in der jeweiligen Artikelbeschreibung abgerufen werden. Die Versandkosten werden weiterhin im Laufe des Bestellvorganges gesondert ausgewiesen und sind von Ihnen zusätzlich zu tragen, soweit nicht die versandkostenfreie Lieferung zugesagt ist. -

- (3) Wir bieten Ihnen verschiedene Zahlungsarten an. Diese sind unter einer entsprechend bezeichneten Schaltfläche auf unserer Website oder in der jeweiligen Artikelbeschreibung ausgewiesen. Soweit nicht anders angegeben, sind die Zahlungsansprüche aus dem geschlossenen Vertrag sofort zur Zahlung fällig. -

- § 4 Lieferbedingungen
- (1) Lieferbedingungen, Liefertermin und gegebenenfalls bestehende Lieferbeschränkungen können Sie auf einer entsprechend bezeichneten Schaltfläche auf unserer Website oder in der jeweiligen Artikelbeschreibung abrufen. -

- (2) Bei Verbrauchern geht die Gefahr des zufälligen Untergangs und der zufälligen Verschlechterung der verkauften Sache während der Versendung erst mit der Übergabe der Ware an diese über. Dies unabhängig davon, ob die Versendung versichert oder unversichert erfolgt. Dies gilt allerdings nicht, wenn Sie eigenständig ein nicht vom Unternehmer benanntes Transportunternehmen oder eine sonst zur Ausführung der Versendung bestimmte Person beauftragt haben. -

- (3) Bei Unternehmern erfolgt die Lieferung und Versendung auf eigene Gefahr. -

- § 5 Zurückbehaltungsrecht, Eigentumsvorbehalt
- (1) Ein Zurückbehaltungsrecht können Sie nur ausüben, soweit es sich um Forderungen aus demselben Vertragsverhältnis handelt. -

- (2) Die Ware bleibt bis zur vollständigen Zahlung des Kaufpreises unser Eigentum. -

- (3) Bei Unternehmern gilt ergänzend Folgendes: -

- - Wir behalten uns das Eigentum an der Ware bis zum vollständigen Ausgleich aller Forderungen aus der laufenden Geschäftsbeziehung vor. Vor Übergang des Eigentums an der Vorbehaltsware ist eine Verpfändung oder Sicherheitsübereignung nicht zulässig. -
- - Sie dürfen die Ware im ordentlichen Geschäftsgang weiterverkaufen. Für diesen Fall treten Sie bereits jetzt alle Forderungen in Höhe des Rechnungsbetrages, die Ihnen aus dem Weiterverkauf erwachsen, an uns ab. Wir nehmen die Abtretung an, Sie sind jedoch zur Einziehung der Forderungen ermächtigt. Soweit Sie Ihren Zahlungsverpflichtungen nicht ordnungsgemäß nachkommen, behalten wir uns das Recht vor, Forderungen selbst einzuziehen. -
- - Bei Verbindung und Vermischung der Vorbehaltsware erwerben wir Miteigentum an der neuen Sache im Verhältnis des Rechnungswertes der Vorbehaltsware zu den anderen verarbeiteten Gegenständen zum Zeitpunkt der Verarbeitung. -
- - Wir verpflichteten uns, die uns zustehenden Sicherheiten auf Verlangen insoweit freizugeben, als der realisierbare Wert unserer Sicherheiten die zu sichernden Forderungen um mehr als 10 % übersteigt. Die Auswahl der freizugebenden Sicherheiten obliegt uns. -

- § 6 Gewährleistung
- (1) Es bestehen die gesetzlichen Mängelhaftungsrechte. -

- (2) Bei Unternehmern gilt abweichend von Abs.1: -

- - als Unternehmer haben Sie die Ware unverzüglich und mit der gebotenen Sorgfalt auf Qualitäts- und Mengenabweichungen zu untersuchen und uns offensichtliche Mängel binnen 7 Tagen ab Empfang der Ware schriftlich anzuzeigen. Zur Fristwahrung genügt die rechtzeitige Absendung. Dies gilt auch für später festgestellte verdeckte Mängel ab Entdeckung. Sollten Sie Ihrer Untersuchungs- und Rügepflicht nicht nachkommen, ist die Geltendmachung von Gewährleistungsansprüchen ausgeschlossen. -
- - beim Vorliegen von Mängeln können wir nach unserer Wahl Gewähr durch Nachbesserung oder Ersatzlieferung leisten. Bei einem Fehlschlagen der Mängelbeseitigung können Sie nach Ihrer Wahl Minderung verlangen oder vom Vertrag zurücktreten. Die Mängelbeseitigung gilt nach erfolglosem zweiten Versuch als fehlgeschlagen, wenn sich nicht insbesondere aus der Art der Sache oder des Mangels oder den sonstigen Umständen etwas anderes ergibt. Im Falle der Nachbesserung müssen wir nicht die erhöhten Kosten tragen, die durch die Verbringung der Ware an einen anderen Ort als den Erfüllungsort entstehen, sofern die Verbringung nicht dem bestimmungsgemäßen Gebrauch der Ware entspricht. -
- - die Gewährleistungsfrist beträgt ein Jahr ab Ablieferung der Ware. Die verkürzte Gewährleistungsfrist gilt nicht für uns zurechenbare schuldhaft verursachte Schäden aus der Verletzung des Lebens, des Körpers oder der Gesundheit und grob fahrlässig oder vorsätzlich verursachte Schäden bzw. Arglist, sowie bei Rückgriffsansprüchen gemäß §§ 478, 479 BGB. -
- § 7 Haftung
- (1) Wir haften uneingeschränkt für Schäden aus der Verletzung des Lebens, des Körpers oder der Gesundheit. Weiterhin haften wir ohne Einschränkung in allen Fällen des Vorsatzes und grober Fahrlässigkeit, bei arglistigem Verschweigen eines Mangels, bei Übernahme der Garantie für die Beschaffenheit des Kaufgegenstandes und in allen anderen gesetzlich geregelten Fällen. -
- (2) Sofern wesentliche Vertragspflichten betroffen sind, ist unsere Haftung bei leichter Fahrlässigkeit auf den vertragstypischen, vorhersehbaren Schaden beschränkt. Wesentliche Vertragspflichten sind wesentliche Pflichten, die sich aus der Natur des Vertrages ergeben und deren Verletzung die Erreichung des Vertragszweckes gefährden würde sowie Pflichten, die der Vertrag uns nach seinem Inhalt zur Erreichung des Vertragszwecks auferlegt, deren Erfüllung die ordnungsgemäße Durchführung des Vertrags überhaupt erst möglich machen und auf deren Einhaltung Sie regelmäßig vertrauen dürfen. -
- § 8 Schlussbestimmungen
- (1) Es gilt deutsches Recht. Bei Verbrauchern gilt diese Rechtswahl nur, soweit hierdurch der durch zwingende Bestimmungen des Rechts des Staates des gewöhnlichen Aufenthaltes des Verbrauchers gewährte Schutz nicht entzogen wird (Günstigkeitsprinzip). Die Bestimmungen des UN-Kaufrechts finden ausdrücklich keine Anwendung. -

- (2) Erfüllungsort für alle Leistungen aus den mit uns bestehenden Geschäftsbeziehungen sowie Gerichtsstand ist unser Sitz, soweit Sie nicht Verbraucher, sondern Kaufmann, juristische Person des öffentlichen Rechts oder öffentlich-rechtliches Sondervermögen sind. Dasselbe gilt, wenn Sie keinen allgemeinen Gerichtsstand in Deutschland oder der EU haben oder der Wohnsitz oder gewöhnliche Aufenthalt im Zeitpunkt der Klageerhebung nicht bekannt ist. Die Befugnis, auch das Gericht an einem anderen gesetzlichen Gerichtsstand anzurufen, bleibt hiervon unberührt. -

- - Stand: 05.10.2018 -

-
- -
-
- -@endsection \ No newline at end of file diff --git a/resources/views/web/templates/datenschutz.blade.php b/resources/views/web/templates/datenschutz.blade.php deleted file mode 100644 index 2e03c4f..0000000 --- a/resources/views/web/templates/datenschutz.blade.php +++ /dev/null @@ -1,231 +0,0 @@ -@extends($user_shop ?'web.user.layouts.layout' : 'web.layouts.layout') - -@section('content') -
-
- -
-

Datenschutzerklärung

-
- -
-Unsere Website kann grundsätzlich ohne Angabe personenbezogener Daten genutzt werden. Sofern Sie bestimmte Leistungen über unsere Website in Anspruch nehmen wollen, kann eine Verarbeitung Ihrer personenbezogenen Daten erforderlich werden. -
-Die Verarbeitung Ihrer personenbezogener Daten erfolgt stets in Übereinstimmung mit der Datenschutz-Grundverordnung (DSGVO) und den für uns geltenden landesspezifischen Datenschutzbestimmungen. -
-Wir haben nach Maßgabe des Art. 32 DSGVO geeignete technische und organisatorische Maßnahmen getroffen, um ein angemessenes Schutzniveau zu gewährleisten. Weiterhin haben wir Verfahren eingerichtet, die eine Wahrnehmung Ihrer Rechte, die Löschung von Daten und die Reaktion auf eine Gefährdung der Daten gewährleisten. Den Schutz Ihrer personenbezogenen Daten haben wir bereits bei der Entwicklung und Auswahl der verwendeten Hardware und Software berücksichtigt. Hiermit kommen wir dem Prinzip des Datenschutzes durch Technikgestaltung/durch datenschutzfreundliche Voreinstellungen nach, Art. 25 DSGVO. Zu unseren Sicherheitsmaßnahmen gehören insbesondere die verschlüsselte Übertragung (SSL-Verschlüsselung) von Daten zwischen Ihrem Browser und unserem Server. -

-I. Definitionen -
-Zur besseren Verständlichkeit unserer Datenschutzerklärung möchten wir Ihnen zunächst einige der verwendeten Begriffe erläutern. Im Sinne dieser Datenschutzerklärung bezeichnet der Ausdruck: -

-1) „personenbezogene Daten“ alle Informationen, die sich auf eine identifizierte oder identifizierbare natürliche Person (im Folgenden "betroffene Person") beziehen; als identifizierbar wird eine natürliche Person angesehen, die direkt oder indirekt, insbesondere mittels Zuordnung zu einer Kennung wie einem Namen, zu einer Kennnummer, zu Standortdaten, zu einer Online-Kennung oder zu einem oder mehreren besonderen Merkmalen identifiziert werden kann, die Ausdruck der physischen, physiologischen, genetischen, psychischen, wirtschaftlichen, kulturellen oder sozialen Identität dieser natürlichen Person sind; -

-2) „Verarbeitung“ jeden mit oder ohne Hilfe automatisierter Verfahren ausgeführten Vorgang oder jede solche Vorgangsreihe im Zusammenhang mit personenbezogenen Daten wie das Erheben, das Erfassen, die Organisation, das Ordnen, die Speicherung, die Anpassung oder Veränderung, das Auslesen, das Abfragen, die Verwendung, die Offenlegung durch Übermittlung, Verbreitung oder eine andere Form der Bereitstellung, den Abgleich oder die Verknüpfung, die Einschränkung, das Löschen oder die Vernichtung; -

-3) "Einschränkung der Verarbeitung" die Markierung gespeicherter personenbezogener Daten mit dem Ziel, ihre künftige Verarbeitung einzuschränken; -

-4) "Profiling" jede Art der automatisierten Verarbeitung personenbezogener Daten, die darin besteht, dass diese personenbezogenen Daten verwendet werden, um bestimmte persönliche Aspekte, die sich auf eine natürliche Person beziehen, zu bewerten, insbesondere um Aspekte bezüglich Arbeitsleistung, wirtschaftliche Lage, Gesundheit, persönliche Vorlieben, Interessen, Zuverlässigkeit, Verhalten, Aufenthaltsort oder Ortswechsel dieser natürlichen Person zu analysieren oder vorherzusagen; -

-5) "Pseudonymisierung" die Verarbeitung personenbezogener Daten in einer Weise, dass die personenbezogenen Daten ohne Hinzuziehung zusätzlicher Informationen nicht mehr einer spezifischen betroffenen Person zugeordnet werden können, sofern diese zusätzlichen Informationen gesondert aufbewahrt werden und technischen und organisatorischen Maßnahmen unterliegen, die gewährleisten, dass die personenbezogenen Daten nicht einer identifizierten oder identifizierbaren natürlichen Person zugewiesen werden; -

-6) „Verantwortliche“ die natürliche oder juristische Person, Behörde, Einrichtung oder andere Stelle, die allein oder gemeinsam mit anderen über die Zwecke und Mittel der Verarbeitung von personenbezogenen Daten entscheidet; sind die Zwecke und Mittel dieser Verarbeitung durch das Unionsrecht oder das Recht der Mitgliedstaaten vorgegeben, so kann der Verantwortliche beziehungsweise können die bestimmten Kriterien seiner Benennung nach dem Unionsrecht oder dem Recht der Mitgliedstaaten vorgesehen werden -

-7) „Auftragsverarbeiter“ eine natürliche oder juristische Person, Behörde, Einrichtung oder andere Stelle, die personenbezogene Daten im Auftrag des Verantwortlichen verarbeitet; -

-8) „Empfänger“ eine natürliche oder juristische Person, Behörde, Einrichtung oder andere Stelle, der personenbezogene Daten offengelegt werden, unabhängig davon, ob es sich bei ihr um einen Dritten handelt oder nicht. Behörden, die im Rahmen eines bestimmten Untersuchungsauftrags nach dem Unionsrecht oder dem Recht der Mitgliedstaaten möglicherweise personenbezogene Daten erhalten, gelten jedoch nicht als Empfänger; die Verarbeitung dieser Daten durch die genannten Behörden erfolgt im Einklang mit den geltenden Datenschutzvorschriften gemäß den Zwecken der Verarbeitung; -

-9) „Dritter“ eine natürliche oder juristische Person, Behörde, Einrichtung oder andere Stelle, außer der betroffenen Person, dem Verantwortlichen, dem Auftragsverarbeiter und den Personen, die unter der unmittelbaren Verantwortung des Verantwortlichen oder des Auftragsverarbeiters befugt sind, die personenbezogenen Daten zu verarbeiten; -

-10) „Einwilligung“ der betroffenen Person jede freiwillig für den bestimmten Fall, in informierter Weise und unmissverständlich abgegebene Willensbekundung in Form einer Erklärung oder einer sonstigen eindeutigen bestätigenden Handlung, mit der die betroffene Person zu verstehen gibt, dass sie mit der Verarbeitung der sie betreffenden personenbezogenen Daten einverstanden ist; -

-11) „Verletzung des Schutzes personenbezogener Daten“ eine Verletzung der Sicherheit, die, ob unbeabsichtigt oder unrechtmäßig, zur Vernichtung, zum Verlust, zur Veränderung, oder zur unbefugten Offenlegung von beziehungsweise zum unbefugten Zugang zu personenbezogenen Daten führt, die übermittelt, gespeichert oder auf sonstige Weise verarbeitet wurden. -

-II. Verantwortlicher -
-Verantwortlicher im Sinne der Datenschutz-Grundverordnung sowie der in den Mitgliedstaaten der Europäischen Union geltenden Datenschutzgesetze und anderer datenschutzrechtlicher Bestimmungen ist: -

-mivita e.K.
-Herr Alois Ried
-Leinfeld 2
-87755 Kirchhaslach
-Telefon: +49 (0) 8333 946 17 67
-Mail: info@mivita.care
-

-III. Cookies -
-Unsere Website verwendet Cookies. Cookies sind kleine Textdateien, die über einen Internetbrowser auf einem Computersystem abgelegt und gespeichert werden. -
-Zahlreiche Websites und Server verwenden Cookies. Viele Cookies enthalten eine sogenannte Cookie-ID. Eine Cookie-ID ist eine eindeutige Kennung des Cookies. Sie besteht aus einer Zeichenfolge, durch die Websites und Server dem konkreten Internetbrowser zugeordnet werden können, in dem das Cookie gespeichert wurde. Dies ermöglicht es den besuchten Websites und Servern, den individuellen Browser der betroffenen Person von anderen Internetbrowsern, die andere Cookies enthalten, zu unterscheiden. Ein bestimmter Internetbrowser kann über die eindeutige Cookie-ID wiedererkannt und identifiziert werden. -
-Durch den Einsatz von Cookies können wir Ihnen nutzerfreundlichere Services bereitstellen, die ohne die Cookie-Setzung nicht möglich wären. -
-Mittels eines Cookies können die Informationen und Angebote auf unserer Website im Sinne des Benutzers optimiert werden. Cookies ermöglichen uns, wie bereits erwähnt, die Benutzer unserer Website wiederzuerkennen. Zweck dieser Wiedererkennung ist es, Ihnen die Verwendung unserer Websites zu erleichtern. Der Benutzer einer Website, die Cookies verwendet, muss beispielsweise nicht bei jedem Besuch der Internetseite erneut seine Zugangsdaten eingeben, weil dies von der Internetseite und dem auf dem Computersystem des Benutzers abgelegten Cookie übernommen wird. -
-Die durch Cookies verarbeiteten Daten sind für die genannten Zwecke zur Wahrung unserer berechtigten Interessen nach Art. 6 Abs. 1 S. 1 lit. f DSGVO erforderlich. -
-Sie können die Setzung von Cookies durch unsere Website jederzeit mittels einer entsprechenden Einstellung des genutzten Internetbrowsers verhindern und damit der Setzung von Cookies dauerhaft widersprechen. Ferner können bereits gesetzte Cookies jederzeit über einen Internetbrowser oder andere Softwareprogramme gelöscht werden. Dies ist in allen gängigen Internetbrowsern möglich. Sollten Sie die Setzung von Cookies in dem von Ihnen genutzten Internetbrowser deaktiveren, sind unter Umständen nicht alle Funktionen unserer Website vollumfänglich nutzbar. -

-IV. Daten und Informationen, die beim Aufruf unserer Website gespeichert werden -
-Bei jedem Aufruf unserer Website werden allgemeine Daten und Informationen erfasst, die in den Logfiles des Servers gespeichert werden. -

-Folgende Daten/Informationen können erfasst werden: -
-- die verwendeten Browsertypen und Versionen -- das verwendete Betriebssystem, -- die Website, von der Sie auf unsere Website gelangen -- die Unterwebsites, die auf unserer Website angesteuert werden -- das Datum und die Uhrzeit des Zugriffs auf unsere Website, -- Ihre IP-Adresse -- Ihr Internet-Service-Provider -- sonstige ähnliche Daten und Informationen, die der Gefahrenabwehr im Falle von Angriffen auf unsere IT-Systeme dienen. -

-Wir benötigen diese Informationen, um die Inhalte unserer Website zutreffend bereitstellen zu können. die dauerhafte Funktionsfähigkeit unseres IT-Systems gewährleisten zu können und um im Falle eines Cyberangriffes den Behörden die zu einer Strafverfolgung notwendigen Informationen bereitstellen zu können. Hierin liegt auch unser berechtigtes Interesse im Rahmen der Rechtsgrundlage für die Verarbeitung dieser Daten gemäß Art. 6 Abs. 1 lit. f DSGVO. Bei der Nutzung dieser allgemeinen Daten und Informationen ziehen wir keine Rückschlüsse auf die betroffene Person. Die anonymen Daten der Server-Logfiles speichern wir getrennt von allen personenbezogenen Daten. -V. Elektronische Kontaktaufnahme mit uns -

-Aufgrund der Regelungen des Telemediengesetzes (TMG) sind wir zur Angabe einer allgemeinen Mailadresse im Impressum unserer Website verpflichtet, über die Sie uns per Mail kontaktieren können. Weiterhin haben Sie die Möglichkeit, über Kontaktformulare auf unserer Website Kontakt mit uns aufzunehmen. Über die Kontaktformulare können Sie u.a. Anfragen zu den Produkten oder unserem Geschäft stellen bzw. sich als Berater bei uns bewerben. Die von Ihnen per Mail oder unsere Kontaktformulare an uns übermittelten personenbezogenen Daten werden automatisch für Zwecke der Bearbeitung oder der Kontaktaufnahme zu Ihnen gespeichert. -

-Mit Absenden Ihrer Nachricht willigen Sie in die Verarbeitung der übermittelten Daten ein. Die Verarbeitung erfolgt auf Grundlage des Art. 6 Abs. 1 lit. a DSGVO mit Ihrer Einwilligung. Sie können Ihre Einwilligung jederzeit durch Mitteilung an uns widerrufen, ohne dass die Rechtmäßigkeit der aufgrund der Einwilligung bis zum Widerruf erfolgten Verarbeitung berührt wird. Ihre E-Mail-Adresse nutzen wir nur zur Bearbeitung Ihrer Anfrage. Ihre Daten werden anschließend gelöscht, sofern Sie der weitergehenden Verarbeitung und Nutzung nicht zugestimmt haben. -

-VI. Rechtsgrundlagen der Verarbeitung -
-Sofern wir bei Ihnen eine Einwilligung für einen bestimmten Verarbeitungszweck einholen, dient uns Art. 6 I lit. a DSGVO als Rechtsgrundlage für den Verarbeitungsvorgang. -

-Sofern die Verarbeitung personenbezogener Daten zur Erfüllung eines Vertrags erforderlich ist, beruht die Verarbeitung auf Art. 6 I lit. b DSGVO. Dies gilt ebenfalls für Verarbeitungsvorgänge, die zur Durchführung vorvertraglicher Maßnahmen erforderlich sind, etwa bei Anfragen zur unseren Produkten oder sonstigen Leistungen. -

-Sofern wir einer rechtlichen Verpflichtung unterliegen, durch die eine Verarbeitung von personenbezogenen Daten erforderlich wird, wie beispielsweise zur Erfüllung steuerlicher Pflichten, so ist Rechtsgrundlage für die Verarbeitung Art. 6 I lit. c DSGVO. -

-Sofern die Verarbeitung von personenbezogenen Daten erforderlich wird, um lebenswichtige Interessen der betroffenen Person oder einer anderen natürlichen Person zu schützen, würde die Verarbeitung auf Art. 6 I lit. d DSGVO beruhen. -

-Letztlich kann Art. 6 I lit. f DSGVO Rechtsgrundlage für einen Verarbeitungsvorgang sein. Dies ist dann der Fall, wenn der Verarbeitungsvorgang von keiner der vorgenannten Rechtsgrundlagen erfasst wird und die Verarbeitung zur Wahrung eines berechtigten Interesses unseres Unternehmens oder eines Dritten erforderlich ist, sofern die Interessen, Grundrechte und Grundfreiheiten des Betroffenen nicht überwiegen. Basiert die Verarbeitung personenbezogener Daten auf Artikel 6 I lit. f DSGVO ist unser berechtigtes Interesse die Durchführung unserer Geschäftstätigkeit zugunsten des Wohlergehens unserer Mitarbeiter/Anteilseigner. -

-VII. Gesetzliche oder vertragliche Vorschriften zur Bereitstellung der personenbezogenen Daten -
-Die Bereitstellung personenbezogener Daten ist zum Teil gesetzlich vorgeschrieben ist (z.B. Steuervorschriften) und kann sich auch aus vertraglichen Regelungen (z.B. Angaben zum Vertragspartner) ergeben. Für den Fall, dass Sie einen Vertrag mit uns abschließen wollen, ist es erforderlich, dass Sie uns personenbezogene Daten zur Verfügung stellen, die in der Folge durch uns verarbeitet werden. Eine Nichtbereitstellung der personenbezogenen Daten hätte zur Folge, dass wir keinen Vertrag mit Ihnen schließen können. -

-VIII. Routinemäßige Löschung/Sperrung von personenbezogenen Daten -
-Wir verarbeiten und speichern personenbezogene Daten nur für den Zeitraum, der zur Erreichung des Speicherungszwecks erforderlich ist oder sofern dies durch den Europäischen Richtlinien- und Verordnungsgeber oder einen anderen Gesetzgeber in Gesetzen oder Vorschriften vorgesehen wurde. Entfällt der Speicherungszweck oder läuft eine vom Europäischen Richtlinien- und Verordnungsgeber oder einem anderen zuständigen Gesetzgeber vorgeschriebene Speicherfrist ab, werden die personenbezogenen Daten routinemäßig und entsprechend den gesetzlichen Vorschriften gesperrt oder gelöscht. -

-Nach Ablauf der jeweiligen gesetzlichen Aufbewahrungsfrist werden die entsprechenden Daten routi-nemäßig gelöscht, sofern sie nicht mehr zur Vertragserfüllung oder Vertragsanbahnung erforderlich sind. Nach den gesetzlichen Vorgaben in Deutschland erfolgt die Aufbewahrung insbesondere für 10 Jahre gemäß §§ 147 Abs. 1 AO, 257 Abs. 1 Nr. 1 und 4, Abs. 4 HGB (Bücher, Aufzeichnungen, Lageberichte, Buchungsbelege, Handelsbücher, für Besteuerung relevanter Unterlagen, etc.) und 6 Jahre gemäß § 257 Abs. 1 Nr. 2 und 3, Abs. 4 HGB (Handelsbriefe). -

-IX. Ihre Rechte -
-1) Bestätigungs- und Auskunftsrecht -
-Sie haben das Recht, von uns eine Bestätigung darüber zu verlangen, ob betreffende personenbezogene Daten verarbeitet werden. Möchten Sie Recht in Anspruch nehmen, können sie sich hierzu jederzeit an uns wenden. -

-Sie haben weiterhin das Recht, von uns unentgeltliche Auskunft über die zu Ihrer Person gespeicherten personenbezogenen Daten und eine Kopie dieser Auskunft zu erhalten. Ferner steht Ihnen ein Auskunftsanspruch über folgende Informationen zu: -
-- die Verarbeitungszwecke -- die Kategorien personenbezogener Daten, die verarbeitet werden -- die Empfänger oder Kategorien von Empfängern, gegenüber denen die personenbezogenen Daten offengelegt worden sind oder noch offengelegt werden, insbesondere bei Empfängern in Drittländern oder bei internationalen Organisationen -- falls möglich die geplante Dauer, für die die personenbezogenen Daten gespeichert werden, oder, falls dies nicht möglich ist, die Kriterien für die Festlegung dieser Dauer -- das Bestehen eines Rechts auf Berichtigung oder Löschung der sie betreffenden personenbezogenen Daten oder auf Einschränkung der Verarbeitung durch den Verantwortlichen oder eines Widerspruchsrechts gegen diese Verarbeitung -- das Bestehen eines Beschwerderechts bei einer Aufsichtsbehörde -- wenn die personenbezogenen Daten nicht bei der betroffenen Person erhoben werden: Alle verfügbaren Informationen über die Herkunft der Daten -- das Bestehen einer automatisierten Entscheidungsfindung einschließlich Profiling gemäß Artikel 22 Abs.1 und 4 DSGVO und - zumindest in diesen Fällen - aussagekräftige Informationen über die involvierte Logik sowie die Tragweite und die angestrebten Auswirkungen einer derartigen Verarbeitung für die betroffene Person -

-Ferner steht Ihnen ein Auskunftsrecht darüber zu, ob personenbezogene Daten an ein Drittland oder an eine internationale Organisation übermittelt wurden. Sofern dies der Fall ist, so steht Ihnen im Übrigen das Recht zu, Auskunft über die geeigneten Garantien im Zusammenhang mit der Übermittlung zu erhalten. -

-Möchten Sie dieses Auskunftsrecht in Anspruch nehmen, können sie sich hierzu jederzeit an uns wenden. -

-2) Recht auf Berichtigung -
-Sie haben das Recht, die unverzügliche Berichtigung sie betreffender unrichtiger personenbezogener Daten zu verlangen. Ferner steht Ihnen das Recht zu, unter Berücksichtigung der Zwecke der Verarbeitung, die Vervollständigung unvollständiger personenbezogener Daten - auch mittels einer ergänzenden Erklärung - zu verlangen. -

-Möchten Sie dieses Berichtigungsrecht in Anspruch nehmen, können sie sich hierzu jederzeit an uns wenden. -

-3) Recht auf Löschung („Recht auf „Vergessenwerden“) -
-Sie haben das Recht, von uns zu verlangen, dass die sie betreffenden personenbezogenen Daten unverzüglich gelöscht werden, sofern einer der folgenden Gründe zutrifft und soweit die Verarbeitung nicht erforderlich ist: -
-- Die personenbezogenen Daten wurden für solche Zwecke erhoben oder auf sonstige Weise verarbeitet, für welche sie nicht mehr notwendig sind; -- Sie widerrufen ihre Einwilligung, auf die sich die Verarbeitung gemäß Art. 6 Abs. 1 Buchstabe a DSGVO oder Art. 9 Abs. 2 Buchstabe a DSGVO stützte, und es fehlt an einer anderweitigen Rechtsgrundlage für die Verarbeitung; -- Sie legen gemäß Art. 21 Abs. 1 DSGVO Widerspruch gegen die Verarbeitung ein, und es liegen keine vorrangigen berechtigten Gründe für die Verarbeitung vor, oder Sie legen gemäß Art. 21 Abs. 2 DSGVO Widerspruch gegen die Verarbeitung ein; -- Die personenbezogenen Daten wurden unrechtmäßig verarbeitet; -- Die Löschung der personenbezogenen Daten ist zur Erfüllung einer rechtlichen Verpflichtung nach dem Unionsrecht oder dem Recht der Mitgliedstaaten erforderlich, dem wir unterliegen. -- Die personenbezogenen Daten wurden in Bezug auf angebotene Dienste der Informationsgesellschaft gemäß Art. 8 Abs. 1 DSGVO erhoben. -

-Sofern einer der oben genannten Gründe zutrifft und Sie die Löschung von personenbezogenen Daten, die bei uns gespeichert sind, veranlassen möchten, können sie sich hierzu jederzeit an uns wenden. Wir werden veranlassen, dass dem Löschverlangen unverzüglich nachgekommen wird. -
-Wurden die personenbezogenen Daten von uns öffentlich gemacht und sind wir als Verantwortlicher gemäß Art. 17 Abs. 1 DSGVO zur Löschung der personenbezogenen Daten verpflichtet, so treffen wir unter Berücksichtigung der verfügbaren Technologie und der Implementierungskosten angemessene Maßnahmen, auch technischer Art, um andere für die Datenverarbeitung Verantwortliche, welche die veröffentlichten personenbezogenen Daten verarbeiten, darüber in Kenntnis zu setzen, dass Sie von diesen anderen für die Datenverarbeitung Verantwortlichen die Löschung sämtlicher Links zu diesen personenbezogenen Daten oder von Kopien oder Replikationen dieser personenbezogenen Daten verlangt haben, soweit die Verarbeitung nicht erforderlich ist. Wir werden im Einzelfall das Notwendige veranlassen. -

-4) Recht auf Einschränkung der Verarbeitung -
-Sie haben das Recht, von uns die Einschränkung der Verarbeitung zu verlangen, wenn eine der folgenden Voraussetzungen gegeben ist: -
-- Die Richtigkeit der personenbezogenen Daten wird von Ihnen bestritten, und zwar für eine Dauer, die es uns ermöglicht, die Richtigkeit der personenbezogenen Daten zu überprüfen; -- Die Verarbeitung ist unrechtmäßig, Sie lehnen die Löschung der personenbezogenen Daten ab und verlangen stattdessen die Einschränkung der Nutzung der personenbezogenen Daten; -- Wir benötigen die personenbezogenen Daten für die Zwecke der Verarbeitung nicht länger, Sie benötigen sie jedoch zur Geltendmachung, Ausübung oder Verteidigung von Rechtsansprüchen; -- Sie haben Widerspruch gegen die Verarbeitung gem. Art. 21 Abs. 1 DSGVO eingelegt und es steht noch nicht fest, ob unsere berechtigten Gründe gegenüber Ihren überwiegen. -
-Sofern eine der oben genannten Voraussetzungen gegeben ist und Sie die Einschränkung von personenbezogenen Daten, die bei uns gespeichert sind, verlangen möchten, können Sie sich hierzu jederzeit an uns wenden. Wir werden die Einschränkung der Verarbeitung veranlassen. -

-5) Recht auf Datenübertragbarkeit -
-Sie haben das Recht, von uns die sie betreffenden personenbezogenen Daten, welche von Ihnen bereitgestellt wurden, in einem strukturierten, gängigen und maschinenlesbaren Format zu erhalten. Sie haben außerdem das Recht, diese Daten einem anderen Verantwortlichen ohne Behinderung durch uns zu übermitteln, sofern die Verarbeitung auf der Einwilligung gemäß Art. 6 Abs. 1 Buchstabe a DSGVO oder Art. 9 Abs. 2 Buchstabe a DSGVO oder auf einem Vertrag gemäß Art. 6 Abs. 1 Buchstabe b DSGVO beruht und die Verarbeitung mithilfe automatisierter Verfahren erfolgt, sofern die Verarbeitung nicht für die Wahrnehmung einer Aufgabe erforderlich ist, die im öffentlichen Interesse liegt oder in Ausübung öffentlicher Gewalt erfolgt, welche uns übertragen wurde. -

-Ferner haben Sie bei der Ausübung ihres Rechts auf Datenübertragbarkeit gemäß Art. 20 Abs. 1 DSGVO das Recht, zu erwirken, dass die personenbezogenen Daten direkt von uns an einen anderen Verantwortlichen übermittelt werden, soweit dies technisch machbar ist und sofern hiervon nicht die Rechte und Freiheiten anderer Personen beeinträchtigt werden. -

-Zur Geltendmachung des Rechts auf Datenübertragbarkeit können Sie sich jederzeit an uns wenden. -

-6) Recht auf Widerspruch -
-Sie haben das Recht, aus Gründen, die sich aus ihrer besonderen Situation ergeben, jederzeit gegen die Verarbeitung sie betreffender personenbezogener Daten, die aufgrund von Art. 6 Abs. 1 Buchstaben e oder f DSGVO erfolgt, Widerspruch einzulegen. Dies gilt auch für ein auf diese Bestimmungen gestütztes Profiling. -

-Wir verarbeiten die personenbezogenen Daten im Falle des Widerspruchs nicht mehr, es sei denn, wir können zwingende schutzwürdige Gründe für die Verarbeitung nachweisen, die Ihre Interessen, Rechte und Freiheiten überwiegen, oder die Verarbeitung dient der Geltendmachung, Ausübung oder Verteidigung von Rechtsansprüchen. -
-Verarbeiten wir personenbezogene Daten, um Direktwerbung zu betreiben, so haben Sie das Recht, jederzeit Widerspruch gegen die Verarbeitung der personenbezogenen Daten zum Zwecke derartiger Werbung einzulegen. Dies gilt auch für das Profiling, soweit es mit solcher Direktwerbung in Verbindung steht. Widersprechen Sie der Verarbeitung für Zwecke der Direktwerbung, so werden wir die personenbezogenen Daten nicht mehr für diese Zwecke verarbeiten. -

-Zudem haben Sie das Recht, aus Gründen, die sich aus ihrer besonderen Situation ergeben, gegen die sie betreffende Verarbeitung personenbezogener Daten, die bei uns zu wissenschaftlichen oder historischen Forschungszwecken oder zu statistischen Zwecken gemäß Art. 89 Abs. 1 DSGVO erfolgen, Widerspruch einzulegen, es sei denn, eine solche Verarbeitung ist zur Erfüllung einer im öffentlichen Interesse liegenden Aufgabe erforderlich. -

-Zur Ausübung des Rechts auf Widerspruch können Sie sich an uns wenden. Es steht Ihnen frei, im Zusammenhang mit der Nutzung von Diensten der Informationsgesellschaft, ungeachtet der Richtlinie 2002/58/EG, ihr Widerspruchsrecht mittels automatisierter Verfahren auszuüben, bei denen technische Spezifikationen verwendet werden. -

-7) Automatisierte Entscheidungen im Einzelfall einschließlich Profiling -
-Sie haben das Recht, nicht einer ausschließlich auf einer automatisierten Verarbeitung - einschließlich Profiling - beruhenden Entscheidung unterworfen zu werden, die Ihnen gegenüber rechtliche Wirkung entfaltet oder sie in ähnlicher Weise erheblich beeinträchtigt, sofern die Entscheidung nicht für den Abschluss oder die Erfüllung eines Vertrags zwischen Ihnen und uns erforderlich ist, oder aufgrund von Rechtsvorschriften der Union oder der Mitgliedstaaten, denen wir unterliegen, zulässig ist und diese Rechtsvorschriften angemessene Maßnahmen zur Wahrung Ihrer Rechte und Freiheiten enthalten oder mit Ihrer ausdrücklicher Einwilligung erfolgt. -

-Ist die Entscheidung für den Abschluss oder die Erfüllung eines Vertrags zwischen Ihnen und uns erforderlich oder erfolgt sie mit Ihrer ausdrücklicher Einwilligung, treffen wir angemessene Maßnahmen, um Ihre Rechte und Freiheiten sowie Ihre berechtigten Interessen zu wahren, wozu mindestens das Recht auf Erwirkung des Eingreifens einer Person seitens des Verantwortlichen, auf Darlegung des eigenen Standpunkts und auf Anfechtung der Entscheidung gehört. -

-Möchten Sie Rechte mit Bezug auf automatisierte Entscheidungen geltend machen, können Sie sich hierzu jederzeit an uns wenden. -

-8) Recht auf Widerruf einer datenschutzrechtlichen Einwilligung -
-Sie haben das Recht, eine Einwilligung zur Verarbeitung personenbezogener Daten jederzeit zu widerrufen. -Möchten Sie Ihr Recht auf Widerruf einer Einwilligung geltend machen, können Sie sich hierzu jederzeit an uns wenden. -

-9) Beschwerderecht bei der Aufsichtsbehörde -
-Sie haben gemäß Art. 77 DSGVO das Recht, sich bei der Aufsichtsbehörde zu beschweren, wenn Sie der Ansicht sind, dass die Verarbeitung Ihrer personenbezogenen Daten nicht rechtmäßig erfolgt. -

-X. Zusammenarbeit mit Auftragsverarbeitern/Dritten -
-Soweit wir im Rahmen unserer Datenverarbeitung Ihre Daten gegenüber anderen Personen/Unternehmen offenbaren, an diese übermitteln oder diesen Zugriff auf Ihre Daten gewähren, erfolgt dies ausschließlich auf Grundlage einer gesetzlichen Erlaubnis, Ihrer Einwilligung, einer rechtlichen Verpflichtung oder auf Grundlage unserer berechtigten Interessen. Wenn Dritte von uns mit der Verarbeitung von Daten auf Grundlage eines so genannten „Auftragsverarbeitungsvertrages“ beauftragt worden sind bzw. werden, geschieht dies auf Grundlage des Art. 28 DSGVO. -

-XI. Übermittlungen in Drittländer -
-Soweit wir Daten in einem Drittland verarbeiten oder dies im Rahmen der Inanspruchnahme von Diensten Dritter geschieht, erfolgt dies nur, wenn es zur Erfüllung unserer (vor)vertraglichen Pflichten, auf Grundlage Ihrer Einwilligung, aufgrund einer rechtlichen Verpflichtung oder auf Grundlage unserer berechtigten Interessen geschieht. Vorbehaltlich gesetzlicher oder vertraglicher Erlaubnisse verarbeiten oder lassen wir die Daten in einem Drittland nur beim Vorliegen der besonderen Voraussetzungen der Art. 44 ff. DSGVO verarbeiten. Dementsprechend erfolgt die Verarbeitung z.B. auf Grundlage besonderer Garantien, wie der offiziell anerkannten Feststellung eines der EU entsprechenden Datenschutzniveaus (z.B. für die USA durch das „Privacy Shield“) oder Beachtung offiziell anerkannter spezieller vertraglicher Verpflichtungen (so genannte „Standardvertragsklauseln“). -

-XII. Einbindung von Diensten und Inhalten Dritter -
-Wir setzen auf unserer Website basierend auf unseren berechtigten Interessen im Sinne des Art. 6 Abs. 1 lit. f. DSGVO Angebote von Drittanbietern ein, um deren Inhalte einbinden zu können. Die Anbieter dieser Inhalte erhalten Kenntnis über Ihre IP-Adresse, da ohne die Kenntnis über die IP-Adresse die Inhalte nicht an Ihren Browser übermittelt werden können. Hierbei bemühen wir uns, nur solche Inhalte von Drittanbietern zu verwenden, bei denen Ihre IP-Adresse ausschließlich zur Auslieferung der Inhalte verwendet wird. Es besteht weiterhin die Möglichkeit, dass Drittanbieter so genannte „Pixel-Tags“ - dies sind unsichtbare Grafiken, die auch als "Web Beacons" bezeichnet werden - für statistische oder Marketingzwecke verwenden. "Pixel-Tags" können Informationen, wie zum Beispiel den Besucherverkehr auf unserer Website, auswerten. -

-Nachfolgend geben wir Ihren eine Übersicht zu den von uns verwendeten Angeboten von Drittanbietern nebst Links zu deren Datenschutzerklärungen: -

-Externe Schriftarten von Google, LLC., https://www.google.com/fonts („Google Fonts“). Die Einbindung der Google Fonts erfolgt durch einen Serveraufruf bei Google (in der Regel in den USA). Die Datenschutzerklärung finden Sie hier: https://policies.google.com/privacy, Opt-Out: https://adssettings.google.com/authenticated -

-Videos der Plattform “YouTube” des Drittanbieters Google LLC, 1600 Amphitheatre Parkway, Mountain View, CA 94043, USA. Die Datenschutzerklärung finden Sie hier: https://policies.google.com/privacy, Opt-Out: https://adssettings.google.com/authenticated -

- - - -Stand: 01.10.2018 -

-
- -
-
- -@endsection \ No newline at end of file diff --git a/resources/views/web/templates/erreichbarkeit.blade.php b/resources/views/web/templates/erreichbarkeit.blade.php deleted file mode 100644 index deb70c9..0000000 --- a/resources/views/web/templates/erreichbarkeit.blade.php +++ /dev/null @@ -1,80 +0,0 @@ -@extends($user_shop ?'web.user.layouts.layout' : 'web.layouts.layout') - -@section('content') - - - - -
-
- -
- -
-

Erreichbarkeit mit Familie & Privatem

- -
- -
- service -

Nesciunt tofu stumptown aliqua, retro synth master cleanse.

-
- -
- - - - - - - - - - - - - - - - - - - - - -

Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.

Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.

Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.

Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.

Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.

-
-
- -
-
-
- -
-

Mache Menschen glücklich ....

-

Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.

- -
- - @include('web.templates._content_contact') -
- - - -
- @include('web.templates._bcategories') -
- - -
- -
-
- - -@endsection \ No newline at end of file diff --git a/resources/views/web/templates/impressum.blade.php b/resources/views/web/templates/impressum.blade.php deleted file mode 100644 index 2845500..0000000 --- a/resources/views/web/templates/impressum.blade.php +++ /dev/null @@ -1,44 +0,0 @@ -@extends($user_shop ?'web.user.layouts.layout' : 'web.layouts.layout') - -@section('content') -
-
- -
-

{{ __('website.impress') }}11

-
- -

- {{ __('website.contact_address') }}
- {{ __('website.phone_number') }}
- {{ __('website.email') }}: {{ __('website.email_address') }}
- - - -

Geschäftsinhaber:
Alois Ried

- - Registergericht:
Memmingen

- - Registernummer:
HRA 12236

- - USt-ID-Nr.:
DE 244162340

-
-

Support mivita:
- Telefon: +49 (0) 8333 946 17 67
- E-Mail:: info@mivita.care

- -
-
-

Nutzungshinweis: -
Eine unerlaubte Verwendung, Reproduktion, Weitergabe, Veröffentlichungen oder eine kommerzielle Nutzung ohne Genehmigung des Urhebers der auf dieser Website befindlichen Inhalte ist untersagt und wird sowohl straf- als auch zivilrechtlich verfolgt!

-
- Online-Streitbeilegung: -
gemäß Art. 14 Abs. 1 ODR-VO: Die Europäische Kommission stellt eine Plattform zur Online-Streitbeilegung (OS) bereit, die Sie hier finden http://ec.europa.eu/consumers/odr/. - -
- -
-
- - -@endsection \ No newline at end of file diff --git a/resources/views/web/templates/partner.blade.php b/resources/views/web/templates/partner.blade.php deleted file mode 100644 index 11a29ed..0000000 --- a/resources/views/web/templates/partner.blade.php +++ /dev/null @@ -1,85 +0,0 @@ -@extends($user_shop ?'web.user.layouts.layout' : 'web.layouts.layout') - -@section('content') - - - - - - - - - - -
-
-
-

Partner

-
-

Neben Studenten, Berufseinsteigern, jungen Eltern und alleinerziehenden Müttern bzw. Vätern besteht das MIVITA Vertriebsteam auch aus Unternehmern, die schon vor dem Schritt in den Direktvertrieb ihre Zukunft in die eigenen Hände gelegt haben. So liegt es nahe, dass wir mit diesen Dienstleistern, die unsere Arbeit und den Markt am besten verstehen, auch geschäftlich zusammenarbeiten. Ob Werbemittel wie Autobeschriftung, Flyer, Webdesign, Reisen etc. - wir bauen auch diese Infrastruktur weiter aus, so dass Du Zugriff auf die unterschiedlichsten Dienstleister hast, die Dir maßgeschneidert in Dein eigenes Business helfen.

- -
- -
- -
-
- MIVITA Fahrzeugbeschriftung -
-
-

Autobeschriftung vom Fachmann

-

Nutze Dein Auto als Werbefläche und mache auf Dich und Dein Produkt aufmerksam. Du möchtest das MIVITA Logo auf Deinem Auto oder hast eine ganz konkrete Vorstellung? Kein Problem. Kontaktiere unseren Vertriebspartner Stefan, der Dich gerne dazu berät:

- - DV Dienstleistungsservice
- Stefan Del Vecchio
- Steinstraße.33
- 51702 Bergneustadt -

- DV.Dienstleistungsservice@web.de
- Festnetz: +49 2261 912 36 26
- Mobil: +49 174 525 69 00 -



- -
-
-
-
- MIVITA Reisen by NETWORKTRIPS -
-
-

MIVITA Reisen by NETWORKTRIPS

-

Wir legen jedem Berater ans Herz, mit uns gemeinsam die Aloe Vera Schulung auf Mallorca zu erleben. Hierzu haben wir für Euch gemeinsam mit unserem Reise-Portal NETWORKTRIPS und angeschlossenem Reisebüro STERN TOURS in Berlin verschiedene Buchungsmöglichkeiten für

- - • Nur-Hotel
- • Hotel & Flug
- • Event-Package
-
- vorbereitet. Dieses Portal ist nicht öffentlich und eine Registrierung kann nur über einen Einladungslink erfolgen. Bitte fragt Euren Sponsor oder in einer Eurer WhatsApp Gruppen nach.

- - NETWORTRIPS
- Ansprechpartner: Thomas Krummel
- www.networktrips.agency
- support@networktrips.agency
- Festnetz: +49 2203 186 90 14
- Mobil: +49 162 251 48 71 -



- -
-
- - -
-
- - - -@endsection \ No newline at end of file diff --git a/resources/views/web/templates/ueber-uns.blade.php b/resources/views/web/templates/ueber-uns.blade.php deleted file mode 100644 index 97b44b5..0000000 --- a/resources/views/web/templates/ueber-uns.blade.php +++ /dev/null @@ -1,167 +0,0 @@ -@extends($user_shop ?'web.user.layouts.layout' : 'web.layouts.layout') - -@section('content') - - - - - - -
-
- -
- - -
- - -
-

Aloe Vera

-
- -

Die weltweit einmaligen und herausragenden Eigenschaften der Aloe Vera sind dem einzigartigen - Zusammenspiel und der Symbiose der unterschiedlichen Inhalts- und Wirkstoffe zu verdanken. Keine - andere bisher bekannte Pflanze verfügt über derart vielseitige Möglichkeiten der heilenden und - pflegenden Anwendung. Insgesamt sind in der medizinischen Literatur derzeit weit mehr als 250 - aktive Substanzen bekannt, und stetig werden neue entdeckt. Die Entschlüsselung des komplexen - Zusammenspiels aller Substanzen steht zwar erst ganz am Anfang, die Wirkungen sind inzwischen - aber sehr gut belegt.

- - -
- -
-
-

Herkunft unserer Aloe

-

Von des Deutschen liebster Urlaubsinsel

-
- -

Die Farm auf Mallorca hat eine Größe von etwa 40 Hektar. Dort werden die Aloe Vera - Pflanzen gezüchtet und gepflegt. Die 200.000 Pflanzen müssen mindestens 5 Jahre alt - sein, bis die Blätter geerntet werden können. Eine Pflanze benötigt mindestens 2.000 - Sonnenstunden im Jahr, um die wertvollen Nährstoffe für den Saft aufzubauen.

- - -
- -
-
-

100% BIO Qualität

-

Bio-zertifizierte Handarbeit aus Mallorca<

-
- -

Wir garantieren beste Qualität durch manuelle Produktion und biologische Inhaltsstoffe. - Das typische Klima von Mallorca fordert die Pflanzen heraus. Tests haben ergeben, dass - gerade dieses Klima optimal für eine perfekte Entwicklung der Pflanze ist.

- -
- -
- - -
- -
-

Mehrwerte?

-

why is different than any other template

-
-

Sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam - nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor - eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos - himenaeos. Nulla augue justo nibh ac diam.

- -
- -
-
    -
  • Nulla ipsum dolor lacus.
  • -
  • Quisque lorem tortor sed.
  • -
  • Aenean ligula non sagittis
  • -
  • Suspendisse a pellentesque.
  • -
  • Congue sodales nulla arcu.
  • -
-
- -
-
    -
  • Nulla ipsum dolor lacus.
  • -
  • Quisque lorem tortor sed.
  • -
  • Aenean ligula non sagittis
  • -
  • Suspendisse a pellentesque.
  • -
  • Congue sodales nulla arcu.
  • -
-
- -
-
    -
  • Nulla ipsum dolor lacus.
  • -
  • Quisque lorem tortor sed.
  • -
  • Aenean ligula non sagittis
  • -
  • Suspendisse a pellentesque.
  • -
  • Congue sodales nulla arcu.
  • -
-
- -
- -
- -
- - - -
- -
-
-

Auf einen Blick

-
-
    -
  • - - Surgery - lorem ipsum dolor sit amet -
  • -
  • - - Cardiology - lorem ipsum dolor sit amet -
  • -
  • - - Internal Medicine - lorem ipsum dolor sit amet -
  • -
  • - - Rehabilitation - lorem ipsum dolor sit amet -
  • -
- -
- -

Nullam id dolor id nibh ultricies vehicula ut id - elit. Integer posuere erat a ante venenatis.

-
- - -
- - -
- -
-
- - -@endsection \ No newline at end of file diff --git a/resources/views/web/user/layouts/includes/footer-checkout.blade.php b/resources/views/web/user/layouts/includes/footer-checkout.blade.php deleted file mode 100644 index 3d42b5b..0000000 --- a/resources/views/web/user/layouts/includes/footer-checkout.blade.php +++ /dev/null @@ -1,183 +0,0 @@ - -
-
-
-
-

- {{ __('website.sales_partner_or_questions') }} -

- @if(Util::isCheckout()) - @if(isset($order_reference)) -

- {{ __('payment.back_to_shop') }} -

- @else -

- {{ __('website.contact_now') }} : {{ __('website.to_contact') }} -

- @endif - @else -

- {{ __('website.contact_now') }} : {{ __('website.to_contact') }} -

- @endif -
-
-
-
- - - - - -
-
- -
-
-
-
-
-
- -
- -
- -
- -
- -
- -
- -
- -
- -
-
-
-
-
-
\ No newline at end of file diff --git a/resources/views/web/user/layouts/includes/footer-web.blade.php b/resources/views/web/user/layouts/includes/footer-web.blade.php deleted file mode 100644 index 3d42b5b..0000000 --- a/resources/views/web/user/layouts/includes/footer-web.blade.php +++ /dev/null @@ -1,183 +0,0 @@ - -
-
-
-
-

- {{ __('website.sales_partner_or_questions') }} -

- @if(Util::isCheckout()) - @if(isset($order_reference)) -

- {{ __('payment.back_to_shop') }} -

- @else -

- {{ __('website.contact_now') }} : {{ __('website.to_contact') }} -

- @endif - @else -

- {{ __('website.contact_now') }} : {{ __('website.to_contact') }} -

- @endif -
-
-
-
- - - - - -
-
- -
-
-
-
-
-
- -
- -
- -
- -
- -
- -
- -
- -
- -
-
-
-
-
-
\ No newline at end of file diff --git a/resources/views/web/user/layouts/includes/header-checkout.blade.php b/resources/views/web/user/layouts/includes/header-checkout.blade.php deleted file mode 100644 index 0ce1b4b..0000000 --- a/resources/views/web/user/layouts/includes/header-checkout.blade.php +++ /dev/null @@ -1,297 +0,0 @@ - - -{{-- -@dump(session()->all()) - -@dump(Auth::guard('customers')->check()) - -@dump(Auth::guard('customers')->user()) - -@dump(Auth::guard('user')->check()) - -@dump(Auth::guard('user')->user()) - --}} \ No newline at end of file diff --git a/resources/views/web/user/layouts/includes/header-web.blade.php b/resources/views/web/user/layouts/includes/header-web.blade.php deleted file mode 100644 index 0ce1b4b..0000000 --- a/resources/views/web/user/layouts/includes/header-web.blade.php +++ /dev/null @@ -1,297 +0,0 @@ - - -{{-- -@dump(session()->all()) - -@dump(Auth::guard('customers')->check()) - -@dump(Auth::guard('customers')->user()) - -@dump(Auth::guard('user')->check()) - -@dump(Auth::guard('user')->user()) - --}} \ No newline at end of file diff --git a/routes/domains/checkout.php b/routes/domains/checkout.php index 64c315a..3c2e2bf 100644 --- a/routes/domains/checkout.php +++ b/routes/domains/checkout.php @@ -19,6 +19,4 @@ Route::group(['middleware' => ['checkout']], function () { Route::get('/transaction/status/{status?}/{reference?}', 'Web\CheckoutController@transactionStatus')->name('checkout.transaction_status'); Route::post('/transaction/status/{status?}/{reference?}', 'Web\CheckoutController@transactionStatusPost')->name('checkout.transaction_status_post'); Route::get('/transaction/approved/{transactionId}/{reference}', 'Web\CheckoutController@transactionApproved')->name('checkout.transaction_approved'); - - // Catch-all Route für rechtliche Seiten wie /versandkosten, /zahlungsarten etc. }); \ No newline at end of file diff --git a/routes/domains/user-shop.php b/routes/domains/user-shop.php index 7293d96..aaef80d 100644 --- a/routes/domains/user-shop.php +++ b/routes/domains/user-shop.php @@ -5,15 +5,14 @@ | User-Shop Routes ({subdomain}.mivita.care) |-------------------------------------------------------------------------- */ -Route::get('/', 'Web\SiteController@index')->name('home'); -Route::get('/home', 'Web\SiteController@index')->name('home'); +Route::get('/', 'Web\SiteController@index')->name('user-shop.home'); +Route::get('/home', 'Web\SiteController@index')->name('user-shop.home.alt'); Route::get('/registrierung', 'Web\RegisterController@index')->name('user-shop.register_user'); Route::get('/reg/{member_id?}', 'Web\RegisterController@member')->name('user-shop.register_user_member'); Route::post('/registrierung', 'Web\RegisterController@register')->name('user-shop.register_user_post'); Route::get('/registrierung/finish', 'Web\RegisterController@finish')->name('user-shop.register_user_finish'); -Route::get('/', 'Web\SiteController@index')->name('user-shop.home'); Route::get('/user/card/add/{id}/{quantity?}/{product_slug?}', 'Web\CardController@addToCardGet')->name('user-shop.card_add_get'); Route::post('/user/card/add/{id}', 'Web\CardController@addToCardPost')->name('user-shop.card_add_post'); Route::get('/user/card/show', 'Web\CardController@showCard')->name('user-shop.card_show'); diff --git a/storage/debugbar/.gitignore b/storage/debugbar/.gitignore old mode 100644 new mode 100755 diff --git a/storage/fonts/Courier-Bold.afm.php b/storage/fonts/Courier-Bold.afm.php deleted file mode 100644 index 9257a5d..0000000 --- a/storage/fonts/Courier-Bold.afm.php +++ /dev/null @@ -1,572 +0,0 @@ - - array ( - 32 => 'space', - 160 => 'space', - 33 => 'exclam', - 34 => 'quotedbl', - 35 => 'numbersign', - 36 => 'dollar', - 37 => 'percent', - 38 => 'ampersand', - 146 => 'quoteright', - 40 => 'parenleft', - 41 => 'parenright', - 42 => 'asterisk', - 43 => 'plus', - 44 => 'comma', - 45 => 'hyphen', - 173 => 'hyphen', - 46 => 'period', - 47 => 'slash', - 48 => 'zero', - 49 => 'one', - 50 => 'two', - 51 => 'three', - 52 => 'four', - 53 => 'five', - 54 => 'six', - 55 => 'seven', - 56 => 'eight', - 57 => 'nine', - 58 => 'colon', - 59 => 'semicolon', - 60 => 'less', - 61 => 'equal', - 62 => 'greater', - 63 => 'question', - 64 => 'at', - 65 => 'A', - 66 => 'B', - 67 => 'C', - 68 => 'D', - 69 => 'E', - 70 => 'F', - 71 => 'G', - 72 => 'H', - 73 => 'I', - 74 => 'J', - 75 => 'K', - 76 => 'L', - 77 => 'M', - 78 => 'N', - 79 => 'O', - 80 => 'P', - 81 => 'Q', - 82 => 'R', - 83 => 'S', - 84 => 'T', - 85 => 'U', - 86 => 'V', - 87 => 'W', - 88 => 'X', - 89 => 'Y', - 90 => 'Z', - 91 => 'bracketleft', - 92 => 'backslash', - 93 => 'bracketright', - 94 => 'asciicircum', - 95 => 'underscore', - 145 => 'quoteleft', - 97 => 'a', - 98 => 'b', - 99 => 'c', - 100 => 'd', - 101 => 'e', - 102 => 'f', - 103 => 'g', - 104 => 'h', - 105 => 'i', - 106 => 'j', - 107 => 'k', - 108 => 'l', - 109 => 'm', - 110 => 'n', - 111 => 'o', - 112 => 'p', - 113 => 'q', - 114 => 'r', - 115 => 's', - 116 => 't', - 117 => 'u', - 118 => 'v', - 119 => 'w', - 120 => 'x', - 121 => 'y', - 122 => 'z', - 123 => 'braceleft', - 124 => 'bar', - 125 => 'braceright', - 126 => 'asciitilde', - 161 => 'exclamdown', - 162 => 'cent', - 163 => 'sterling', - 165 => 'yen', - 131 => 'florin', - 167 => 'section', - 164 => 'currency', - 39 => 'quotesingle', - 147 => 'quotedblleft', - 171 => 'guillemotleft', - 139 => 'guilsinglleft', - 155 => 'guilsinglright', - 150 => 'endash', - 134 => 'dagger', - 135 => 'daggerdbl', - 183 => 'periodcentered', - 182 => 'paragraph', - 149 => 'bullet', - 130 => 'quotesinglbase', - 132 => 'quotedblbase', - 148 => 'quotedblright', - 187 => 'guillemotright', - 133 => 'ellipsis', - 137 => 'perthousand', - 191 => 'questiondown', - 96 => 'grave', - 180 => 'acute', - 136 => 'circumflex', - 152 => 'tilde', - 175 => 'macron', - 168 => 'dieresis', - 184 => 'cedilla', - 151 => 'emdash', - 198 => 'AE', - 170 => 'ordfeminine', - 216 => 'Oslash', - 140 => 'OE', - 186 => 'ordmasculine', - 230 => 'ae', - 248 => 'oslash', - 156 => 'oe', - 223 => 'germandbls', - 207 => 'Idieresis', - 233 => 'eacute', - 159 => 'Ydieresis', - 247 => 'divide', - 221 => 'Yacute', - 194 => 'Acircumflex', - 225 => 'aacute', - 219 => 'Ucircumflex', - 253 => 'yacute', - 234 => 'ecircumflex', - 220 => 'Udieresis', - 218 => 'Uacute', - 203 => 'Edieresis', - 169 => 'copyright', - 229 => 'aring', - 224 => 'agrave', - 227 => 'atilde', - 154 => 'scaron', - 237 => 'iacute', - 251 => 'ucircumflex', - 226 => 'acircumflex', - 231 => 'ccedilla', - 222 => 'Thorn', - 179 => 'threesuperior', - 210 => 'Ograve', - 192 => 'Agrave', - 215 => 'multiply', - 250 => 'uacute', - 255 => 'ydieresis', - 238 => 'icircumflex', - 202 => 'Ecircumflex', - 228 => 'adieresis', - 235 => 'edieresis', - 205 => 'Iacute', - 177 => 'plusminus', - 166 => 'brokenbar', - 174 => 'registered', - 200 => 'Egrave', - 142 => 'Zcaron', - 208 => 'Eth', - 199 => 'Ccedilla', - 193 => 'Aacute', - 196 => 'Adieresis', - 232 => 'egrave', - 211 => 'Oacute', - 243 => 'oacute', - 239 => 'idieresis', - 212 => 'Ocircumflex', - 217 => 'Ugrave', - 254 => 'thorn', - 178 => 'twosuperior', - 214 => 'Odieresis', - 181 => 'mu', - 236 => 'igrave', - 190 => 'threequarters', - 153 => 'trademark', - 204 => 'Igrave', - 189 => 'onehalf', - 244 => 'ocircumflex', - 241 => 'ntilde', - 201 => 'Eacute', - 188 => 'onequarter', - 138 => 'Scaron', - 176 => 'degree', - 242 => 'ograve', - 249 => 'ugrave', - 209 => 'Ntilde', - 245 => 'otilde', - 195 => 'Atilde', - 197 => 'Aring', - 213 => 'Otilde', - 206 => 'Icircumflex', - 172 => 'logicalnot', - 246 => 'odieresis', - 252 => 'udieresis', - 240 => 'eth', - 158 => 'zcaron', - 185 => 'onesuperior', - 128 => 'Euro', - ), - 'isUnicode' => false, - 'FontName' => 'Courier-Bold', - 'FullName' => 'Courier Bold', - 'FamilyName' => 'Courier', - 'Weight' => 'Bold', - 'ItalicAngle' => '0', - 'IsFixedPitch' => 'true', - 'CharacterSet' => 'ExtendedRoman', - 'FontBBox' => - array ( - 0 => '-113', - 1 => '-250', - 2 => '749', - 3 => '801', - ), - 'UnderlinePosition' => '-100', - 'UnderlineThickness' => '50', - 'Version' => '003.000', - 'EncodingScheme' => 'WinAnsiEncoding', - 'CapHeight' => '562', - 'XHeight' => '439', - 'Ascender' => '629', - 'Descender' => '-157', - 'StdHW' => '84', - 'StdVW' => '106', - 'StartCharMetrics' => '317', - 'C' => - array ( - 32 => 600.0, - 160 => 600.0, - 33 => 600.0, - 34 => 600.0, - 35 => 600.0, - 36 => 600.0, - 37 => 600.0, - 38 => 600.0, - 146 => 600.0, - 40 => 600.0, - 41 => 600.0, - 42 => 600.0, - 43 => 600.0, - 44 => 600.0, - 45 => 600.0, - 173 => 600.0, - 46 => 600.0, - 47 => 600.0, - 48 => 600.0, - 49 => 600.0, - 50 => 600.0, - 51 => 600.0, - 52 => 600.0, - 53 => 600.0, - 54 => 600.0, - 55 => 600.0, - 56 => 600.0, - 57 => 600.0, - 58 => 600.0, - 59 => 600.0, - 60 => 600.0, - 61 => 600.0, - 62 => 600.0, - 63 => 600.0, - 64 => 600.0, - 65 => 600.0, - 66 => 600.0, - 67 => 600.0, - 68 => 600.0, - 69 => 600.0, - 70 => 600.0, - 71 => 600.0, - 72 => 600.0, - 73 => 600.0, - 74 => 600.0, - 75 => 600.0, - 76 => 600.0, - 77 => 600.0, - 78 => 600.0, - 79 => 600.0, - 80 => 600.0, - 81 => 600.0, - 82 => 600.0, - 83 => 600.0, - 84 => 600.0, - 85 => 600.0, - 86 => 600.0, - 87 => 600.0, - 88 => 600.0, - 89 => 600.0, - 90 => 600.0, - 91 => 600.0, - 92 => 600.0, - 93 => 600.0, - 94 => 600.0, - 95 => 600.0, - 145 => 600.0, - 97 => 600.0, - 98 => 600.0, - 99 => 600.0, - 100 => 600.0, - 101 => 600.0, - 102 => 600.0, - 103 => 600.0, - 104 => 600.0, - 105 => 600.0, - 106 => 600.0, - 107 => 600.0, - 108 => 600.0, - 109 => 600.0, - 110 => 600.0, - 111 => 600.0, - 112 => 600.0, - 113 => 600.0, - 114 => 600.0, - 115 => 600.0, - 116 => 600.0, - 117 => 600.0, - 118 => 600.0, - 119 => 600.0, - 120 => 600.0, - 121 => 600.0, - 122 => 600.0, - 123 => 600.0, - 124 => 600.0, - 125 => 600.0, - 126 => 600.0, - 161 => 600.0, - 162 => 600.0, - 163 => 600.0, - 'fraction' => 600.0, - 165 => 600.0, - 131 => 600.0, - 167 => 600.0, - 164 => 600.0, - 39 => 600.0, - 147 => 600.0, - 171 => 600.0, - 139 => 600.0, - 155 => 600.0, - 'fi' => 600.0, - 'fl' => 600.0, - 150 => 600.0, - 134 => 600.0, - 135 => 600.0, - 183 => 600.0, - 182 => 600.0, - 149 => 600.0, - 130 => 600.0, - 132 => 600.0, - 148 => 600.0, - 187 => 600.0, - 133 => 600.0, - 137 => 600.0, - 191 => 600.0, - 96 => 600.0, - 180 => 600.0, - 136 => 600.0, - 152 => 600.0, - 175 => 600.0, - 'breve' => 600.0, - 'dotaccent' => 600.0, - 168 => 600.0, - 'ring' => 600.0, - 184 => 600.0, - 'hungarumlaut' => 600.0, - 'ogonek' => 600.0, - 'caron' => 600.0, - 151 => 600.0, - 198 => 600.0, - 170 => 600.0, - 'Lslash' => 600.0, - 216 => 600.0, - 140 => 600.0, - 186 => 600.0, - 230 => 600.0, - 'dotlessi' => 600.0, - 'lslash' => 600.0, - 248 => 600.0, - 156 => 600.0, - 223 => 600.0, - 207 => 600.0, - 233 => 600.0, - 'abreve' => 600.0, - 'uhungarumlaut' => 600.0, - 'ecaron' => 600.0, - 159 => 600.0, - 247 => 600.0, - 221 => 600.0, - 194 => 600.0, - 225 => 600.0, - 219 => 600.0, - 253 => 600.0, - 'scommaaccent' => 600.0, - 234 => 600.0, - 'Uring' => 600.0, - 220 => 600.0, - 'aogonek' => 600.0, - 218 => 600.0, - 'uogonek' => 600.0, - 203 => 600.0, - 'Dcroat' => 600.0, - 'commaaccent' => 600.0, - 169 => 600.0, - 'Emacron' => 600.0, - 'ccaron' => 600.0, - 229 => 600.0, - 'Ncommaaccent' => 600.0, - 'lacute' => 600.0, - 224 => 600.0, - 'Tcommaaccent' => 600.0, - 'Cacute' => 600.0, - 227 => 600.0, - 'Edotaccent' => 600.0, - 154 => 600.0, - 'scedilla' => 600.0, - 237 => 600.0, - 'lozenge' => 600.0, - 'Rcaron' => 600.0, - 'Gcommaaccent' => 600.0, - 251 => 600.0, - 226 => 600.0, - 'Amacron' => 600.0, - 'rcaron' => 600.0, - 231 => 600.0, - 'Zdotaccent' => 600.0, - 222 => 600.0, - 'Omacron' => 600.0, - 'Racute' => 600.0, - 'Sacute' => 600.0, - 'dcaron' => 600.0, - 'Umacron' => 600.0, - 'uring' => 600.0, - 179 => 600.0, - 210 => 600.0, - 192 => 600.0, - 'Abreve' => 600.0, - 215 => 600.0, - 250 => 600.0, - 'Tcaron' => 600.0, - 'partialdiff' => 600.0, - 255 => 600.0, - 'Nacute' => 600.0, - 238 => 600.0, - 202 => 600.0, - 228 => 600.0, - 235 => 600.0, - 'cacute' => 600.0, - 'nacute' => 600.0, - 'umacron' => 600.0, - 'Ncaron' => 600.0, - 205 => 600.0, - 177 => 600.0, - 166 => 600.0, - 174 => 600.0, - 'Gbreve' => 600.0, - 'Idotaccent' => 600.0, - 'summation' => 600.0, - 200 => 600.0, - 'racute' => 600.0, - 'omacron' => 600.0, - 'Zacute' => 600.0, - 142 => 600.0, - 'greaterequal' => 600.0, - 208 => 600.0, - 199 => 600.0, - 'lcommaaccent' => 600.0, - 'tcaron' => 600.0, - 'eogonek' => 600.0, - 'Uogonek' => 600.0, - 193 => 600.0, - 196 => 600.0, - 232 => 600.0, - 'zacute' => 600.0, - 'iogonek' => 600.0, - 211 => 600.0, - 243 => 600.0, - 'amacron' => 600.0, - 'sacute' => 600.0, - 239 => 600.0, - 212 => 600.0, - 217 => 600.0, - 'Delta' => 600.0, - 254 => 600.0, - 178 => 600.0, - 214 => 600.0, - 181 => 600.0, - 236 => 600.0, - 'ohungarumlaut' => 600.0, - 'Eogonek' => 600.0, - 'dcroat' => 600.0, - 190 => 600.0, - 'Scedilla' => 600.0, - 'lcaron' => 600.0, - 'Kcommaaccent' => 600.0, - 'Lacute' => 600.0, - 153 => 600.0, - 'edotaccent' => 600.0, - 204 => 600.0, - 'Imacron' => 600.0, - 'Lcaron' => 600.0, - 189 => 600.0, - 'lessequal' => 600.0, - 244 => 600.0, - 241 => 600.0, - 'Uhungarumlaut' => 600.0, - 201 => 600.0, - 'emacron' => 600.0, - 'gbreve' => 600.0, - 188 => 600.0, - 138 => 600.0, - 'Scommaaccent' => 600.0, - 'Ohungarumlaut' => 600.0, - 176 => 600.0, - 242 => 600.0, - 'Ccaron' => 600.0, - 249 => 600.0, - 'radical' => 600.0, - 'Dcaron' => 600.0, - 'rcommaaccent' => 600.0, - 209 => 600.0, - 245 => 600.0, - 'Rcommaaccent' => 600.0, - 'Lcommaaccent' => 600.0, - 195 => 600.0, - 'Aogonek' => 600.0, - 197 => 600.0, - 213 => 600.0, - 'zdotaccent' => 600.0, - 'Ecaron' => 600.0, - 'Iogonek' => 600.0, - 'kcommaaccent' => 600.0, - 'minus' => 600.0, - 206 => 600.0, - 'ncaron' => 600.0, - 'tcommaaccent' => 600.0, - 172 => 600.0, - 246 => 600.0, - 252 => 600.0, - 'notequal' => 600.0, - 'gcommaaccent' => 600.0, - 240 => 600.0, - 158 => 600.0, - 'ncommaaccent' => 600.0, - 185 => 600.0, - 'imacron' => 600.0, - 128 => 600.0, - ), - 'CIDtoGID_Compressed' => true, - 'CIDtoGID' => 'eJwDAAAAAAE=', - '_version_' => 6, -); \ No newline at end of file diff --git a/storage/fonts/Courier.afm.php b/storage/fonts/Courier.afm.php deleted file mode 100644 index 6a0670c..0000000 --- a/storage/fonts/Courier.afm.php +++ /dev/null @@ -1,572 +0,0 @@ - - array ( - 32 => 'space', - 160 => 'space', - 33 => 'exclam', - 34 => 'quotedbl', - 35 => 'numbersign', - 36 => 'dollar', - 37 => 'percent', - 38 => 'ampersand', - 146 => 'quoteright', - 40 => 'parenleft', - 41 => 'parenright', - 42 => 'asterisk', - 43 => 'plus', - 44 => 'comma', - 45 => 'hyphen', - 173 => 'hyphen', - 46 => 'period', - 47 => 'slash', - 48 => 'zero', - 49 => 'one', - 50 => 'two', - 51 => 'three', - 52 => 'four', - 53 => 'five', - 54 => 'six', - 55 => 'seven', - 56 => 'eight', - 57 => 'nine', - 58 => 'colon', - 59 => 'semicolon', - 60 => 'less', - 61 => 'equal', - 62 => 'greater', - 63 => 'question', - 64 => 'at', - 65 => 'A', - 66 => 'B', - 67 => 'C', - 68 => 'D', - 69 => 'E', - 70 => 'F', - 71 => 'G', - 72 => 'H', - 73 => 'I', - 74 => 'J', - 75 => 'K', - 76 => 'L', - 77 => 'M', - 78 => 'N', - 79 => 'O', - 80 => 'P', - 81 => 'Q', - 82 => 'R', - 83 => 'S', - 84 => 'T', - 85 => 'U', - 86 => 'V', - 87 => 'W', - 88 => 'X', - 89 => 'Y', - 90 => 'Z', - 91 => 'bracketleft', - 92 => 'backslash', - 93 => 'bracketright', - 94 => 'asciicircum', - 95 => 'underscore', - 145 => 'quoteleft', - 97 => 'a', - 98 => 'b', - 99 => 'c', - 100 => 'd', - 101 => 'e', - 102 => 'f', - 103 => 'g', - 104 => 'h', - 105 => 'i', - 106 => 'j', - 107 => 'k', - 108 => 'l', - 109 => 'm', - 110 => 'n', - 111 => 'o', - 112 => 'p', - 113 => 'q', - 114 => 'r', - 115 => 's', - 116 => 't', - 117 => 'u', - 118 => 'v', - 119 => 'w', - 120 => 'x', - 121 => 'y', - 122 => 'z', - 123 => 'braceleft', - 124 => 'bar', - 125 => 'braceright', - 126 => 'asciitilde', - 161 => 'exclamdown', - 162 => 'cent', - 163 => 'sterling', - 165 => 'yen', - 131 => 'florin', - 167 => 'section', - 164 => 'currency', - 39 => 'quotesingle', - 147 => 'quotedblleft', - 171 => 'guillemotleft', - 139 => 'guilsinglleft', - 155 => 'guilsinglright', - 150 => 'endash', - 134 => 'dagger', - 135 => 'daggerdbl', - 183 => 'periodcentered', - 182 => 'paragraph', - 149 => 'bullet', - 130 => 'quotesinglbase', - 132 => 'quotedblbase', - 148 => 'quotedblright', - 187 => 'guillemotright', - 133 => 'ellipsis', - 137 => 'perthousand', - 191 => 'questiondown', - 96 => 'grave', - 180 => 'acute', - 136 => 'circumflex', - 152 => 'tilde', - 175 => 'macron', - 168 => 'dieresis', - 184 => 'cedilla', - 151 => 'emdash', - 198 => 'AE', - 170 => 'ordfeminine', - 216 => 'Oslash', - 140 => 'OE', - 186 => 'ordmasculine', - 230 => 'ae', - 248 => 'oslash', - 156 => 'oe', - 223 => 'germandbls', - 207 => 'Idieresis', - 233 => 'eacute', - 159 => 'Ydieresis', - 247 => 'divide', - 221 => 'Yacute', - 194 => 'Acircumflex', - 225 => 'aacute', - 219 => 'Ucircumflex', - 253 => 'yacute', - 234 => 'ecircumflex', - 220 => 'Udieresis', - 218 => 'Uacute', - 203 => 'Edieresis', - 169 => 'copyright', - 229 => 'aring', - 224 => 'agrave', - 227 => 'atilde', - 154 => 'scaron', - 237 => 'iacute', - 251 => 'ucircumflex', - 226 => 'acircumflex', - 231 => 'ccedilla', - 222 => 'Thorn', - 179 => 'threesuperior', - 210 => 'Ograve', - 192 => 'Agrave', - 215 => 'multiply', - 250 => 'uacute', - 255 => 'ydieresis', - 238 => 'icircumflex', - 202 => 'Ecircumflex', - 228 => 'adieresis', - 235 => 'edieresis', - 205 => 'Iacute', - 177 => 'plusminus', - 166 => 'brokenbar', - 174 => 'registered', - 200 => 'Egrave', - 142 => 'Zcaron', - 208 => 'Eth', - 199 => 'Ccedilla', - 193 => 'Aacute', - 196 => 'Adieresis', - 232 => 'egrave', - 211 => 'Oacute', - 243 => 'oacute', - 239 => 'idieresis', - 212 => 'Ocircumflex', - 217 => 'Ugrave', - 254 => 'thorn', - 178 => 'twosuperior', - 214 => 'Odieresis', - 181 => 'mu', - 236 => 'igrave', - 190 => 'threequarters', - 153 => 'trademark', - 204 => 'Igrave', - 189 => 'onehalf', - 244 => 'ocircumflex', - 241 => 'ntilde', - 201 => 'Eacute', - 188 => 'onequarter', - 138 => 'Scaron', - 176 => 'degree', - 242 => 'ograve', - 249 => 'ugrave', - 209 => 'Ntilde', - 245 => 'otilde', - 195 => 'Atilde', - 197 => 'Aring', - 213 => 'Otilde', - 206 => 'Icircumflex', - 172 => 'logicalnot', - 246 => 'odieresis', - 252 => 'udieresis', - 240 => 'eth', - 158 => 'zcaron', - 185 => 'onesuperior', - 128 => 'Euro', - ), - 'isUnicode' => false, - 'FontName' => 'Courier', - 'FullName' => 'Courier', - 'FamilyName' => 'Courier', - 'Weight' => 'Medium', - 'ItalicAngle' => '0', - 'IsFixedPitch' => 'true', - 'CharacterSet' => 'ExtendedRoman', - 'FontBBox' => - array ( - 0 => '-23', - 1 => '-250', - 2 => '715', - 3 => '805', - ), - 'UnderlinePosition' => '-100', - 'UnderlineThickness' => '50', - 'Version' => '003.000', - 'EncodingScheme' => 'WinAnsiEncoding', - 'CapHeight' => '562', - 'XHeight' => '426', - 'Ascender' => '629', - 'Descender' => '-157', - 'StdHW' => '51', - 'StdVW' => '51', - 'StartCharMetrics' => '317', - 'C' => - array ( - 32 => 600.0, - 160 => 600.0, - 33 => 600.0, - 34 => 600.0, - 35 => 600.0, - 36 => 600.0, - 37 => 600.0, - 38 => 600.0, - 146 => 600.0, - 40 => 600.0, - 41 => 600.0, - 42 => 600.0, - 43 => 600.0, - 44 => 600.0, - 45 => 600.0, - 173 => 600.0, - 46 => 600.0, - 47 => 600.0, - 48 => 600.0, - 49 => 600.0, - 50 => 600.0, - 51 => 600.0, - 52 => 600.0, - 53 => 600.0, - 54 => 600.0, - 55 => 600.0, - 56 => 600.0, - 57 => 600.0, - 58 => 600.0, - 59 => 600.0, - 60 => 600.0, - 61 => 600.0, - 62 => 600.0, - 63 => 600.0, - 64 => 600.0, - 65 => 600.0, - 66 => 600.0, - 67 => 600.0, - 68 => 600.0, - 69 => 600.0, - 70 => 600.0, - 71 => 600.0, - 72 => 600.0, - 73 => 600.0, - 74 => 600.0, - 75 => 600.0, - 76 => 600.0, - 77 => 600.0, - 78 => 600.0, - 79 => 600.0, - 80 => 600.0, - 81 => 600.0, - 82 => 600.0, - 83 => 600.0, - 84 => 600.0, - 85 => 600.0, - 86 => 600.0, - 87 => 600.0, - 88 => 600.0, - 89 => 600.0, - 90 => 600.0, - 91 => 600.0, - 92 => 600.0, - 93 => 600.0, - 94 => 600.0, - 95 => 600.0, - 145 => 600.0, - 97 => 600.0, - 98 => 600.0, - 99 => 600.0, - 100 => 600.0, - 101 => 600.0, - 102 => 600.0, - 103 => 600.0, - 104 => 600.0, - 105 => 600.0, - 106 => 600.0, - 107 => 600.0, - 108 => 600.0, - 109 => 600.0, - 110 => 600.0, - 111 => 600.0, - 112 => 600.0, - 113 => 600.0, - 114 => 600.0, - 115 => 600.0, - 116 => 600.0, - 117 => 600.0, - 118 => 600.0, - 119 => 600.0, - 120 => 600.0, - 121 => 600.0, - 122 => 600.0, - 123 => 600.0, - 124 => 600.0, - 125 => 600.0, - 126 => 600.0, - 161 => 600.0, - 162 => 600.0, - 163 => 600.0, - 'fraction' => 600.0, - 165 => 600.0, - 131 => 600.0, - 167 => 600.0, - 164 => 600.0, - 39 => 600.0, - 147 => 600.0, - 171 => 600.0, - 139 => 600.0, - 155 => 600.0, - 'fi' => 600.0, - 'fl' => 600.0, - 150 => 600.0, - 134 => 600.0, - 135 => 600.0, - 183 => 600.0, - 182 => 600.0, - 149 => 600.0, - 130 => 600.0, - 132 => 600.0, - 148 => 600.0, - 187 => 600.0, - 133 => 600.0, - 137 => 600.0, - 191 => 600.0, - 96 => 600.0, - 180 => 600.0, - 136 => 600.0, - 152 => 600.0, - 175 => 600.0, - 'breve' => 600.0, - 'dotaccent' => 600.0, - 168 => 600.0, - 'ring' => 600.0, - 184 => 600.0, - 'hungarumlaut' => 600.0, - 'ogonek' => 600.0, - 'caron' => 600.0, - 151 => 600.0, - 198 => 600.0, - 170 => 600.0, - 'Lslash' => 600.0, - 216 => 600.0, - 140 => 600.0, - 186 => 600.0, - 230 => 600.0, - 'dotlessi' => 600.0, - 'lslash' => 600.0, - 248 => 600.0, - 156 => 600.0, - 223 => 600.0, - 207 => 600.0, - 233 => 600.0, - 'abreve' => 600.0, - 'uhungarumlaut' => 600.0, - 'ecaron' => 600.0, - 159 => 600.0, - 247 => 600.0, - 221 => 600.0, - 194 => 600.0, - 225 => 600.0, - 219 => 600.0, - 253 => 600.0, - 'scommaaccent' => 600.0, - 234 => 600.0, - 'Uring' => 600.0, - 220 => 600.0, - 'aogonek' => 600.0, - 218 => 600.0, - 'uogonek' => 600.0, - 203 => 600.0, - 'Dcroat' => 600.0, - 'commaaccent' => 600.0, - 169 => 600.0, - 'Emacron' => 600.0, - 'ccaron' => 600.0, - 229 => 600.0, - 'Ncommaaccent' => 600.0, - 'lacute' => 600.0, - 224 => 600.0, - 'Tcommaaccent' => 600.0, - 'Cacute' => 600.0, - 227 => 600.0, - 'Edotaccent' => 600.0, - 154 => 600.0, - 'scedilla' => 600.0, - 237 => 600.0, - 'lozenge' => 600.0, - 'Rcaron' => 600.0, - 'Gcommaaccent' => 600.0, - 251 => 600.0, - 226 => 600.0, - 'Amacron' => 600.0, - 'rcaron' => 600.0, - 231 => 600.0, - 'Zdotaccent' => 600.0, - 222 => 600.0, - 'Omacron' => 600.0, - 'Racute' => 600.0, - 'Sacute' => 600.0, - 'dcaron' => 600.0, - 'Umacron' => 600.0, - 'uring' => 600.0, - 179 => 600.0, - 210 => 600.0, - 192 => 600.0, - 'Abreve' => 600.0, - 215 => 600.0, - 250 => 600.0, - 'Tcaron' => 600.0, - 'partialdiff' => 600.0, - 255 => 600.0, - 'Nacute' => 600.0, - 238 => 600.0, - 202 => 600.0, - 228 => 600.0, - 235 => 600.0, - 'cacute' => 600.0, - 'nacute' => 600.0, - 'umacron' => 600.0, - 'Ncaron' => 600.0, - 205 => 600.0, - 177 => 600.0, - 166 => 600.0, - 174 => 600.0, - 'Gbreve' => 600.0, - 'Idotaccent' => 600.0, - 'summation' => 600.0, - 200 => 600.0, - 'racute' => 600.0, - 'omacron' => 600.0, - 'Zacute' => 600.0, - 142 => 600.0, - 'greaterequal' => 600.0, - 208 => 600.0, - 199 => 600.0, - 'lcommaaccent' => 600.0, - 'tcaron' => 600.0, - 'eogonek' => 600.0, - 'Uogonek' => 600.0, - 193 => 600.0, - 196 => 600.0, - 232 => 600.0, - 'zacute' => 600.0, - 'iogonek' => 600.0, - 211 => 600.0, - 243 => 600.0, - 'amacron' => 600.0, - 'sacute' => 600.0, - 239 => 600.0, - 212 => 600.0, - 217 => 600.0, - 'Delta' => 600.0, - 254 => 600.0, - 178 => 600.0, - 214 => 600.0, - 181 => 600.0, - 236 => 600.0, - 'ohungarumlaut' => 600.0, - 'Eogonek' => 600.0, - 'dcroat' => 600.0, - 190 => 600.0, - 'Scedilla' => 600.0, - 'lcaron' => 600.0, - 'Kcommaaccent' => 600.0, - 'Lacute' => 600.0, - 153 => 600.0, - 'edotaccent' => 600.0, - 204 => 600.0, - 'Imacron' => 600.0, - 'Lcaron' => 600.0, - 189 => 600.0, - 'lessequal' => 600.0, - 244 => 600.0, - 241 => 600.0, - 'Uhungarumlaut' => 600.0, - 201 => 600.0, - 'emacron' => 600.0, - 'gbreve' => 600.0, - 188 => 600.0, - 138 => 600.0, - 'Scommaaccent' => 600.0, - 'Ohungarumlaut' => 600.0, - 176 => 600.0, - 242 => 600.0, - 'Ccaron' => 600.0, - 249 => 600.0, - 'radical' => 600.0, - 'Dcaron' => 600.0, - 'rcommaaccent' => 600.0, - 209 => 600.0, - 245 => 600.0, - 'Rcommaaccent' => 600.0, - 'Lcommaaccent' => 600.0, - 195 => 600.0, - 'Aogonek' => 600.0, - 197 => 600.0, - 213 => 600.0, - 'zdotaccent' => 600.0, - 'Ecaron' => 600.0, - 'Iogonek' => 600.0, - 'kcommaaccent' => 600.0, - 'minus' => 600.0, - 206 => 600.0, - 'ncaron' => 600.0, - 'tcommaaccent' => 600.0, - 172 => 600.0, - 246 => 600.0, - 252 => 600.0, - 'notequal' => 600.0, - 'gcommaaccent' => 600.0, - 240 => 600.0, - 158 => 600.0, - 'ncommaaccent' => 600.0, - 185 => 600.0, - 'imacron' => 600.0, - 128 => 600.0, - ), - 'CIDtoGID_Compressed' => true, - 'CIDtoGID' => 'eJwDAAAAAAE=', - '_version_' => 6, -); \ No newline at end of file diff --git a/storage/fonts/Helvetica-Oblique.afm.json b/storage/fonts/Helvetica-Oblique.afm.json deleted file mode 100644 index 4783828..0000000 --- a/storage/fonts/Helvetica-Oblique.afm.json +++ /dev/null @@ -1,569 +0,0 @@ -{ - "codeToName": { - "32": "space", - "160": "space", - "33": "exclam", - "34": "quotedbl", - "35": "numbersign", - "36": "dollar", - "37": "percent", - "38": "ampersand", - "146": "quoteright", - "40": "parenleft", - "41": "parenright", - "42": "asterisk", - "43": "plus", - "44": "comma", - "45": "hyphen", - "173": "hyphen", - "46": "period", - "47": "slash", - "48": "zero", - "49": "one", - "50": "two", - "51": "three", - "52": "four", - "53": "five", - "54": "six", - "55": "seven", - "56": "eight", - "57": "nine", - "58": "colon", - "59": "semicolon", - "60": "less", - "61": "equal", - "62": "greater", - "63": "question", - "64": "at", - "65": "A", - "66": "B", - "67": "C", - "68": "D", - "69": "E", - "70": "F", - "71": "G", - "72": "H", - "73": "I", - "74": "J", - "75": "K", - "76": "L", - "77": "M", - "78": "N", - "79": "O", - "80": "P", - "81": "Q", - "82": "R", - "83": "S", - "84": "T", - "85": "U", - "86": "V", - "87": "W", - "88": "X", - "89": "Y", - "90": "Z", - "91": "bracketleft", - "92": "backslash", - "93": "bracketright", - "94": "asciicircum", - "95": "underscore", - "145": "quoteleft", - "97": "a", - "98": "b", - "99": "c", - "100": "d", - "101": "e", - "102": "f", - "103": "g", - "104": "h", - "105": "i", - "106": "j", - "107": "k", - "108": "l", - "109": "m", - "110": "n", - "111": "o", - "112": "p", - "113": "q", - "114": "r", - "115": "s", - "116": "t", - "117": "u", - "118": "v", - "119": "w", - "120": "x", - "121": "y", - "122": "z", - "123": "braceleft", - "124": "bar", - "125": "braceright", - "126": "asciitilde", - "161": "exclamdown", - "162": "cent", - "163": "sterling", - "165": "yen", - "131": "florin", - "167": "section", - "164": "currency", - "39": "quotesingle", - "147": "quotedblleft", - "171": "guillemotleft", - "139": "guilsinglleft", - "155": "guilsinglright", - "150": "endash", - "134": "dagger", - "135": "daggerdbl", - "183": "periodcentered", - "182": "paragraph", - "149": "bullet", - "130": "quotesinglbase", - "132": "quotedblbase", - "148": "quotedblright", - "187": "guillemotright", - "133": "ellipsis", - "137": "perthousand", - "191": "questiondown", - "96": "grave", - "180": "acute", - "136": "circumflex", - "152": "tilde", - "175": "macron", - "168": "dieresis", - "184": "cedilla", - "151": "emdash", - "198": "AE", - "170": "ordfeminine", - "216": "Oslash", - "140": "OE", - "186": "ordmasculine", - "230": "ae", - "248": "oslash", - "156": "oe", - "223": "germandbls", - "207": "Idieresis", - "233": "eacute", - "159": "Ydieresis", - "247": "divide", - "221": "Yacute", - "194": "Acircumflex", - "225": "aacute", - "219": "Ucircumflex", - "253": "yacute", - "234": "ecircumflex", - "220": "Udieresis", - "218": "Uacute", - "203": "Edieresis", - "169": "copyright", - "229": "aring", - "224": "agrave", - "227": "atilde", - "154": "scaron", - "237": "iacute", - "251": "ucircumflex", - "226": "acircumflex", - "231": "ccedilla", - "222": "Thorn", - "179": "threesuperior", - "210": "Ograve", - "192": "Agrave", - "215": "multiply", - "250": "uacute", - "255": "ydieresis", - "238": "icircumflex", - "202": "Ecircumflex", - "228": "adieresis", - "235": "edieresis", - "205": "Iacute", - "177": "plusminus", - "166": "brokenbar", - "174": "registered", - "200": "Egrave", - "142": "Zcaron", - "208": "Eth", - "199": "Ccedilla", - "193": "Aacute", - "196": "Adieresis", - "232": "egrave", - "211": "Oacute", - "243": "oacute", - "239": "idieresis", - "212": "Ocircumflex", - "217": "Ugrave", - "254": "thorn", - "178": "twosuperior", - "214": "Odieresis", - "181": "mu", - "236": "igrave", - "190": "threequarters", - "153": "trademark", - "204": "Igrave", - "189": "onehalf", - "244": "ocircumflex", - "241": "ntilde", - "201": "Eacute", - "188": "onequarter", - "138": "Scaron", - "176": "degree", - "242": "ograve", - "249": "ugrave", - "209": "Ntilde", - "245": "otilde", - "195": "Atilde", - "197": "Aring", - "213": "Otilde", - "206": "Icircumflex", - "172": "logicalnot", - "246": "odieresis", - "252": "udieresis", - "240": "eth", - "158": "zcaron", - "185": "onesuperior", - "128": "Euro" - }, - "isUnicode": false, - "FontName": "Helvetica-Oblique", - "FullName": "Helvetica Oblique", - "FamilyName": "Helvetica", - "Weight": "Medium", - "ItalicAngle": "-12", - "IsFixedPitch": "false", - "CharacterSet": "ExtendedRoman", - "FontBBox": [ - "-170", - "-225", - "1116", - "931" - ], - "UnderlinePosition": "-100", - "UnderlineThickness": "50", - "Version": "002.000", - "EncodingScheme": "WinAnsiEncoding", - "CapHeight": "718", - "XHeight": "523", - "Ascender": "718", - "Descender": "-207", - "StdHW": "76", - "StdVW": "88", - "StartCharMetrics": "317", - "C": { - "32": 278, - "160": 278, - "33": 278, - "34": 355, - "35": 556, - "36": 556, - "37": 889, - "38": 667, - "146": 222, - "40": 333, - "41": 333, - "42": 389, - "43": 584, - "44": 278, - "45": 333, - "173": 333, - "46": 278, - "47": 278, - "48": 556, - "49": 556, - "50": 556, - "51": 556, - "52": 556, - "53": 556, - "54": 556, - "55": 556, - "56": 556, - "57": 556, - "58": 278, - "59": 278, - "60": 584, - "61": 584, - "62": 584, - "63": 556, - "64": 1015, - "65": 667, - "66": 667, - "67": 722, - "68": 722, - "69": 667, - "70": 611, - "71": 778, - "72": 722, - "73": 278, - "74": 500, - "75": 667, - "76": 556, - "77": 833, - "78": 722, - "79": 778, - "80": 667, - "81": 778, - "82": 722, - "83": 667, - "84": 611, - "85": 722, - "86": 667, - "87": 944, - "88": 667, - "89": 667, - "90": 611, - "91": 278, - "92": 278, - "93": 278, - "94": 469, - "95": 556, - "145": 222, - "97": 556, - "98": 556, - "99": 500, - "100": 556, - "101": 556, - "102": 278, - "103": 556, - "104": 556, - "105": 222, - "106": 222, - "107": 500, - "108": 222, - "109": 833, - "110": 556, - "111": 556, - "112": 556, - "113": 556, - "114": 333, - "115": 500, - "116": 278, - "117": 556, - "118": 500, - "119": 722, - "120": 500, - "121": 500, - "122": 500, - "123": 334, - "124": 260, - "125": 334, - "126": 584, - "161": 333, - "162": 556, - "163": 556, - "fraction": 167, - "165": 556, - "131": 556, - "167": 556, - "164": 556, - "39": 191, - "147": 333, - "171": 556, - "139": 333, - "155": 333, - "fi": 500, - "fl": 500, - "150": 556, - "134": 556, - "135": 556, - "183": 278, - "182": 537, - "149": 350, - "130": 222, - "132": 333, - "148": 333, - "187": 556, - "133": 1000, - "137": 1000, - "191": 611, - "96": 333, - "180": 333, - "136": 333, - "152": 333, - "175": 333, - "breve": 333, - "dotaccent": 333, - "168": 333, - "ring": 333, - "184": 333, - "hungarumlaut": 333, - "ogonek": 333, - "caron": 333, - "151": 1000, - "198": 1000, - "170": 370, - "Lslash": 556, - "216": 778, - "140": 1000, - "186": 365, - "230": 889, - "dotlessi": 278, - "lslash": 222, - "248": 611, - "156": 944, - "223": 611, - "207": 278, - "233": 556, - "abreve": 556, - "uhungarumlaut": 556, - "ecaron": 556, - "159": 667, - "247": 584, - "221": 667, - "194": 667, - "225": 556, - "219": 722, - "253": 500, - "scommaaccent": 500, - "234": 556, - "Uring": 722, - "220": 722, - "aogonek": 556, - "218": 722, - "uogonek": 556, - "203": 667, - "Dcroat": 722, - "commaaccent": 250, - "169": 737, - "Emacron": 667, - "ccaron": 500, - "229": 556, - "Ncommaaccent": 722, - "lacute": 222, - "224": 556, - "Tcommaaccent": 611, - "Cacute": 722, - "227": 556, - "Edotaccent": 667, - "154": 500, - "scedilla": 500, - "237": 278, - "lozenge": 471, - "Rcaron": 722, - "Gcommaaccent": 778, - "251": 556, - "226": 556, - "Amacron": 667, - "rcaron": 333, - "231": 500, - "Zdotaccent": 611, - "222": 667, - "Omacron": 778, - "Racute": 722, - "Sacute": 667, - "dcaron": 643, - "Umacron": 722, - "uring": 556, - "179": 333, - "210": 778, - "192": 667, - "Abreve": 667, - "215": 584, - "250": 556, - "Tcaron": 611, - "partialdiff": 476, - "255": 500, - "Nacute": 722, - "238": 278, - "202": 667, - "228": 556, - "235": 556, - "cacute": 500, - "nacute": 556, - "umacron": 556, - "Ncaron": 722, - "205": 278, - "177": 584, - "166": 260, - "174": 737, - "Gbreve": 778, - "Idotaccent": 278, - "summation": 600, - "200": 667, - "racute": 333, - "omacron": 556, - "Zacute": 611, - "142": 611, - "greaterequal": 549, - "208": 722, - "199": 722, - "lcommaaccent": 222, - "tcaron": 317, - "eogonek": 556, - "Uogonek": 722, - "193": 667, - "196": 667, - "232": 556, - "zacute": 500, - "iogonek": 222, - "211": 778, - "243": 556, - "amacron": 556, - "sacute": 500, - "239": 278, - "212": 778, - "217": 722, - "Delta": 612, - "254": 556, - "178": 333, - "214": 778, - "181": 556, - "236": 278, - "ohungarumlaut": 556, - "Eogonek": 667, - "dcroat": 556, - "190": 834, - "Scedilla": 667, - "lcaron": 299, - "Kcommaaccent": 667, - "Lacute": 556, - "153": 1000, - "edotaccent": 556, - "204": 278, - "Imacron": 278, - "Lcaron": 556, - "189": 834, - "lessequal": 549, - "244": 556, - "241": 556, - "Uhungarumlaut": 722, - "201": 667, - "emacron": 556, - "gbreve": 556, - "188": 834, - "138": 667, - "Scommaaccent": 667, - "Ohungarumlaut": 778, - "176": 400, - "242": 556, - "Ccaron": 722, - "249": 556, - "radical": 453, - "Dcaron": 722, - "rcommaaccent": 333, - "209": 722, - "245": 556, - "Rcommaaccent": 722, - "Lcommaaccent": 556, - "195": 667, - "Aogonek": 667, - "197": 667, - "213": 778, - "zdotaccent": 500, - "Ecaron": 667, - "Iogonek": 278, - "kcommaaccent": 500, - "minus": 584, - "206": 278, - "ncaron": 556, - "tcommaaccent": 278, - "172": 584, - "246": 556, - "252": 556, - "notequal": 549, - "gcommaaccent": 556, - "240": 556, - "158": 500, - "ncommaaccent": 556, - "185": 333, - "imacron": 278, - "128": 556 - }, - "CIDtoGID_Compressed": true, - "CIDtoGID": "eJwDAAAAAAE=", - "_version_": 6 -} \ No newline at end of file diff --git a/storage/fonts/Helvetica-Oblique.afm.php b/storage/fonts/Helvetica-Oblique.afm.php old mode 100644 new mode 100755 diff --git a/storage/fonts/Times-Bold.afm.json b/storage/fonts/Times-Bold.afm.json deleted file mode 100644 index 33d0c90..0000000 --- a/storage/fonts/Times-Bold.afm.json +++ /dev/null @@ -1,569 +0,0 @@ -{ - "codeToName": { - "32": "space", - "160": "space", - "33": "exclam", - "34": "quotedbl", - "35": "numbersign", - "36": "dollar", - "37": "percent", - "38": "ampersand", - "146": "quoteright", - "40": "parenleft", - "41": "parenright", - "42": "asterisk", - "43": "plus", - "44": "comma", - "45": "hyphen", - "173": "hyphen", - "46": "period", - "47": "slash", - "48": "zero", - "49": "one", - "50": "two", - "51": "three", - "52": "four", - "53": "five", - "54": "six", - "55": "seven", - "56": "eight", - "57": "nine", - "58": "colon", - "59": "semicolon", - "60": "less", - "61": "equal", - "62": "greater", - "63": "question", - "64": "at", - "65": "A", - "66": "B", - "67": "C", - "68": "D", - "69": "E", - "70": "F", - "71": "G", - "72": "H", - "73": "I", - "74": "J", - "75": "K", - "76": "L", - "77": "M", - "78": "N", - "79": "O", - "80": "P", - "81": "Q", - "82": "R", - "83": "S", - "84": "T", - "85": "U", - "86": "V", - "87": "W", - "88": "X", - "89": "Y", - "90": "Z", - "91": "bracketleft", - "92": "backslash", - "93": "bracketright", - "94": "asciicircum", - "95": "underscore", - "145": "quoteleft", - "97": "a", - "98": "b", - "99": "c", - "100": "d", - "101": "e", - "102": "f", - "103": "g", - "104": "h", - "105": "i", - "106": "j", - "107": "k", - "108": "l", - "109": "m", - "110": "n", - "111": "o", - "112": "p", - "113": "q", - "114": "r", - "115": "s", - "116": "t", - "117": "u", - "118": "v", - "119": "w", - "120": "x", - "121": "y", - "122": "z", - "123": "braceleft", - "124": "bar", - "125": "braceright", - "126": "asciitilde", - "161": "exclamdown", - "162": "cent", - "163": "sterling", - "165": "yen", - "131": "florin", - "167": "section", - "164": "currency", - "39": "quotesingle", - "147": "quotedblleft", - "171": "guillemotleft", - "139": "guilsinglleft", - "155": "guilsinglright", - "150": "endash", - "134": "dagger", - "135": "daggerdbl", - "183": "periodcentered", - "182": "paragraph", - "149": "bullet", - "130": "quotesinglbase", - "132": "quotedblbase", - "148": "quotedblright", - "187": "guillemotright", - "133": "ellipsis", - "137": "perthousand", - "191": "questiondown", - "96": "grave", - "180": "acute", - "136": "circumflex", - "152": "tilde", - "175": "macron", - "168": "dieresis", - "184": "cedilla", - "151": "emdash", - "198": "AE", - "170": "ordfeminine", - "216": "Oslash", - "140": "OE", - "186": "ordmasculine", - "230": "ae", - "248": "oslash", - "156": "oe", - "223": "germandbls", - "207": "Idieresis", - "233": "eacute", - "159": "Ydieresis", - "247": "divide", - "221": "Yacute", - "194": "Acircumflex", - "225": "aacute", - "219": "Ucircumflex", - "253": "yacute", - "234": "ecircumflex", - "220": "Udieresis", - "218": "Uacute", - "203": "Edieresis", - "169": "copyright", - "229": "aring", - "224": "agrave", - "227": "atilde", - "154": "scaron", - "237": "iacute", - "251": "ucircumflex", - "226": "acircumflex", - "231": "ccedilla", - "222": "Thorn", - "179": "threesuperior", - "210": "Ograve", - "192": "Agrave", - "215": "multiply", - "250": "uacute", - "255": "ydieresis", - "238": "icircumflex", - "202": "Ecircumflex", - "228": "adieresis", - "235": "edieresis", - "205": "Iacute", - "177": "plusminus", - "166": "brokenbar", - "174": "registered", - "200": "Egrave", - "142": "Zcaron", - "208": "Eth", - "199": "Ccedilla", - "193": "Aacute", - "196": "Adieresis", - "232": "egrave", - "211": "Oacute", - "243": "oacute", - "239": "idieresis", - "212": "Ocircumflex", - "217": "Ugrave", - "254": "thorn", - "178": "twosuperior", - "214": "Odieresis", - "181": "mu", - "236": "igrave", - "190": "threequarters", - "153": "trademark", - "204": "Igrave", - "189": "onehalf", - "244": "ocircumflex", - "241": "ntilde", - "201": "Eacute", - "188": "onequarter", - "138": "Scaron", - "176": "degree", - "242": "ograve", - "249": "ugrave", - "209": "Ntilde", - "245": "otilde", - "195": "Atilde", - "197": "Aring", - "213": "Otilde", - "206": "Icircumflex", - "172": "logicalnot", - "246": "odieresis", - "252": "udieresis", - "240": "eth", - "158": "zcaron", - "185": "onesuperior", - "128": "Euro" - }, - "isUnicode": false, - "FontName": "Times-Bold", - "FullName": "Times Bold", - "FamilyName": "Times", - "Weight": "Bold", - "ItalicAngle": "0", - "IsFixedPitch": "false", - "CharacterSet": "ExtendedRoman", - "FontBBox": [ - "-168", - "-218", - "1000", - "935" - ], - "UnderlinePosition": "-100", - "UnderlineThickness": "50", - "Version": "002.000", - "EncodingScheme": "WinAnsiEncoding", - "CapHeight": "676", - "XHeight": "461", - "Ascender": "683", - "Descender": "-217", - "StdHW": "44", - "StdVW": "139", - "StartCharMetrics": "317", - "C": { - "32": 250, - "160": 250, - "33": 333, - "34": 555, - "35": 500, - "36": 500, - "37": 1000, - "38": 833, - "146": 333, - "40": 333, - "41": 333, - "42": 500, - "43": 570, - "44": 250, - "45": 333, - "173": 333, - "46": 250, - "47": 278, - "48": 500, - "49": 500, - "50": 500, - "51": 500, - "52": 500, - "53": 500, - "54": 500, - "55": 500, - "56": 500, - "57": 500, - "58": 333, - "59": 333, - "60": 570, - "61": 570, - "62": 570, - "63": 500, - "64": 930, - "65": 722, - "66": 667, - "67": 722, - "68": 722, - "69": 667, - "70": 611, - "71": 778, - "72": 778, - "73": 389, - "74": 500, - "75": 778, - "76": 667, - "77": 944, - "78": 722, - "79": 778, - "80": 611, - "81": 778, - "82": 722, - "83": 556, - "84": 667, - "85": 722, - "86": 722, - "87": 1000, - "88": 722, - "89": 722, - "90": 667, - "91": 333, - "92": 278, - "93": 333, - "94": 581, - "95": 500, - "145": 333, - "97": 500, - "98": 556, - "99": 444, - "100": 556, - "101": 444, - "102": 333, - "103": 500, - "104": 556, - "105": 278, - "106": 333, - "107": 556, - "108": 278, - "109": 833, - "110": 556, - "111": 500, - "112": 556, - "113": 556, - "114": 444, - "115": 389, - "116": 333, - "117": 556, - "118": 500, - "119": 722, - "120": 500, - "121": 500, - "122": 444, - "123": 394, - "124": 220, - "125": 394, - "126": 520, - "161": 333, - "162": 500, - "163": 500, - "fraction": 167, - "165": 500, - "131": 500, - "167": 500, - "164": 500, - "39": 278, - "147": 500, - "171": 500, - "139": 333, - "155": 333, - "fi": 556, - "fl": 556, - "150": 500, - "134": 500, - "135": 500, - "183": 250, - "182": 540, - "149": 350, - "130": 333, - "132": 500, - "148": 500, - "187": 500, - "133": 1000, - "137": 1000, - "191": 500, - "96": 333, - "180": 333, - "136": 333, - "152": 333, - "175": 333, - "breve": 333, - "dotaccent": 333, - "168": 333, - "ring": 333, - "184": 333, - "hungarumlaut": 333, - "ogonek": 333, - "caron": 333, - "151": 1000, - "198": 1000, - "170": 300, - "Lslash": 667, - "216": 778, - "140": 1000, - "186": 330, - "230": 722, - "dotlessi": 278, - "lslash": 278, - "248": 500, - "156": 722, - "223": 556, - "207": 389, - "233": 444, - "abreve": 500, - "uhungarumlaut": 556, - "ecaron": 444, - "159": 722, - "247": 570, - "221": 722, - "194": 722, - "225": 500, - "219": 722, - "253": 500, - "scommaaccent": 389, - "234": 444, - "Uring": 722, - "220": 722, - "aogonek": 500, - "218": 722, - "uogonek": 556, - "203": 667, - "Dcroat": 722, - "commaaccent": 250, - "169": 747, - "Emacron": 667, - "ccaron": 444, - "229": 500, - "Ncommaaccent": 722, - "lacute": 278, - "224": 500, - "Tcommaaccent": 667, - "Cacute": 722, - "227": 500, - "Edotaccent": 667, - "154": 389, - "scedilla": 389, - "237": 278, - "lozenge": 494, - "Rcaron": 722, - "Gcommaaccent": 778, - "251": 556, - "226": 500, - "Amacron": 722, - "rcaron": 444, - "231": 444, - "Zdotaccent": 667, - "222": 611, - "Omacron": 778, - "Racute": 722, - "Sacute": 556, - "dcaron": 672, - "Umacron": 722, - "uring": 556, - "179": 300, - "210": 778, - "192": 722, - "Abreve": 722, - "215": 570, - "250": 556, - "Tcaron": 667, - "partialdiff": 494, - "255": 500, - "Nacute": 722, - "238": 278, - "202": 667, - "228": 500, - "235": 444, - "cacute": 444, - "nacute": 556, - "umacron": 556, - "Ncaron": 722, - "205": 389, - "177": 570, - "166": 220, - "174": 747, - "Gbreve": 778, - "Idotaccent": 389, - "summation": 600, - "200": 667, - "racute": 444, - "omacron": 500, - "Zacute": 667, - "142": 667, - "greaterequal": 549, - "208": 722, - "199": 722, - "lcommaaccent": 278, - "tcaron": 416, - "eogonek": 444, - "Uogonek": 722, - "193": 722, - "196": 722, - "232": 444, - "zacute": 444, - "iogonek": 278, - "211": 778, - "243": 500, - "amacron": 500, - "sacute": 389, - "239": 278, - "212": 778, - "217": 722, - "Delta": 612, - "254": 556, - "178": 300, - "214": 778, - "181": 556, - "236": 278, - "ohungarumlaut": 500, - "Eogonek": 667, - "dcroat": 556, - "190": 750, - "Scedilla": 556, - "lcaron": 394, - "Kcommaaccent": 778, - "Lacute": 667, - "153": 1000, - "edotaccent": 444, - "204": 389, - "Imacron": 389, - "Lcaron": 667, - "189": 750, - "lessequal": 549, - "244": 500, - "241": 556, - "Uhungarumlaut": 722, - "201": 667, - "emacron": 444, - "gbreve": 500, - "188": 750, - "138": 556, - "Scommaaccent": 556, - "Ohungarumlaut": 778, - "176": 400, - "242": 500, - "Ccaron": 722, - "249": 556, - "radical": 549, - "Dcaron": 722, - "rcommaaccent": 444, - "209": 722, - "245": 500, - "Rcommaaccent": 722, - "Lcommaaccent": 667, - "195": 722, - "Aogonek": 722, - "197": 722, - "213": 778, - "zdotaccent": 444, - "Ecaron": 667, - "Iogonek": 389, - "kcommaaccent": 556, - "minus": 570, - "206": 389, - "ncaron": 556, - "tcommaaccent": 333, - "172": 570, - "246": 500, - "252": 556, - "notequal": 549, - "gcommaaccent": 500, - "240": 500, - "158": 444, - "ncommaaccent": 556, - "185": 300, - "imacron": 278, - "128": 500 - }, - "CIDtoGID_Compressed": true, - "CIDtoGID": "eJwDAAAAAAE=", - "_version_": 6 -} \ No newline at end of file diff --git a/storage/fonts/Times-Italic.afm.json b/storage/fonts/Times-Italic.afm.json deleted file mode 100644 index b94fe1f..0000000 --- a/storage/fonts/Times-Italic.afm.json +++ /dev/null @@ -1,569 +0,0 @@ -{ - "codeToName": { - "32": "space", - "160": "space", - "33": "exclam", - "34": "quotedbl", - "35": "numbersign", - "36": "dollar", - "37": "percent", - "38": "ampersand", - "146": "quoteright", - "40": "parenleft", - "41": "parenright", - "42": "asterisk", - "43": "plus", - "44": "comma", - "45": "hyphen", - "173": "hyphen", - "46": "period", - "47": "slash", - "48": "zero", - "49": "one", - "50": "two", - "51": "three", - "52": "four", - "53": "five", - "54": "six", - "55": "seven", - "56": "eight", - "57": "nine", - "58": "colon", - "59": "semicolon", - "60": "less", - "61": "equal", - "62": "greater", - "63": "question", - "64": "at", - "65": "A", - "66": "B", - "67": "C", - "68": "D", - "69": "E", - "70": "F", - "71": "G", - "72": "H", - "73": "I", - "74": "J", - "75": "K", - "76": "L", - "77": "M", - "78": "N", - "79": "O", - "80": "P", - "81": "Q", - "82": "R", - "83": "S", - "84": "T", - "85": "U", - "86": "V", - "87": "W", - "88": "X", - "89": "Y", - "90": "Z", - "91": "bracketleft", - "92": "backslash", - "93": "bracketright", - "94": "asciicircum", - "95": "underscore", - "145": "quoteleft", - "97": "a", - "98": "b", - "99": "c", - "100": "d", - "101": "e", - "102": "f", - "103": "g", - "104": "h", - "105": "i", - "106": "j", - "107": "k", - "108": "l", - "109": "m", - "110": "n", - "111": "o", - "112": "p", - "113": "q", - "114": "r", - "115": "s", - "116": "t", - "117": "u", - "118": "v", - "119": "w", - "120": "x", - "121": "y", - "122": "z", - "123": "braceleft", - "124": "bar", - "125": "braceright", - "126": "asciitilde", - "161": "exclamdown", - "162": "cent", - "163": "sterling", - "165": "yen", - "131": "florin", - "167": "section", - "164": "currency", - "39": "quotesingle", - "147": "quotedblleft", - "171": "guillemotleft", - "139": "guilsinglleft", - "155": "guilsinglright", - "150": "endash", - "134": "dagger", - "135": "daggerdbl", - "183": "periodcentered", - "182": "paragraph", - "149": "bullet", - "130": "quotesinglbase", - "132": "quotedblbase", - "148": "quotedblright", - "187": "guillemotright", - "133": "ellipsis", - "137": "perthousand", - "191": "questiondown", - "96": "grave", - "180": "acute", - "136": "circumflex", - "152": "tilde", - "175": "macron", - "168": "dieresis", - "184": "cedilla", - "151": "emdash", - "198": "AE", - "170": "ordfeminine", - "216": "Oslash", - "140": "OE", - "186": "ordmasculine", - "230": "ae", - "248": "oslash", - "156": "oe", - "223": "germandbls", - "207": "Idieresis", - "233": "eacute", - "159": "Ydieresis", - "247": "divide", - "221": "Yacute", - "194": "Acircumflex", - "225": "aacute", - "219": "Ucircumflex", - "253": "yacute", - "234": "ecircumflex", - "220": "Udieresis", - "218": "Uacute", - "203": "Edieresis", - "169": "copyright", - "229": "aring", - "224": "agrave", - "227": "atilde", - "154": "scaron", - "237": "iacute", - "251": "ucircumflex", - "226": "acircumflex", - "231": "ccedilla", - "222": "Thorn", - "179": "threesuperior", - "210": "Ograve", - "192": "Agrave", - "215": "multiply", - "250": "uacute", - "255": "ydieresis", - "238": "icircumflex", - "202": "Ecircumflex", - "228": "adieresis", - "235": "edieresis", - "205": "Iacute", - "177": "plusminus", - "166": "brokenbar", - "174": "registered", - "200": "Egrave", - "142": "Zcaron", - "208": "Eth", - "199": "Ccedilla", - "193": "Aacute", - "196": "Adieresis", - "232": "egrave", - "211": "Oacute", - "243": "oacute", - "239": "idieresis", - "212": "Ocircumflex", - "217": "Ugrave", - "254": "thorn", - "178": "twosuperior", - "214": "Odieresis", - "181": "mu", - "236": "igrave", - "190": "threequarters", - "153": "trademark", - "204": "Igrave", - "189": "onehalf", - "244": "ocircumflex", - "241": "ntilde", - "201": "Eacute", - "188": "onequarter", - "138": "Scaron", - "176": "degree", - "242": "ograve", - "249": "ugrave", - "209": "Ntilde", - "245": "otilde", - "195": "Atilde", - "197": "Aring", - "213": "Otilde", - "206": "Icircumflex", - "172": "logicalnot", - "246": "odieresis", - "252": "udieresis", - "240": "eth", - "158": "zcaron", - "185": "onesuperior", - "128": "Euro" - }, - "isUnicode": false, - "FontName": "Times-Italic", - "FullName": "Times Italic", - "FamilyName": "Times", - "Weight": "Medium", - "ItalicAngle": "-15.5", - "IsFixedPitch": "false", - "CharacterSet": "ExtendedRoman", - "FontBBox": [ - "-169", - "-217", - "1010", - "883" - ], - "UnderlinePosition": "-100", - "UnderlineThickness": "50", - "Version": "002.000", - "EncodingScheme": "WinAnsiEncoding", - "CapHeight": "653", - "XHeight": "441", - "Ascender": "683", - "Descender": "-217", - "StdHW": "32", - "StdVW": "76", - "StartCharMetrics": "317", - "C": { - "32": 250, - "160": 250, - "33": 333, - "34": 420, - "35": 500, - "36": 500, - "37": 833, - "38": 778, - "146": 333, - "40": 333, - "41": 333, - "42": 500, - "43": 675, - "44": 250, - "45": 333, - "173": 333, - "46": 250, - "47": 278, - "48": 500, - "49": 500, - "50": 500, - "51": 500, - "52": 500, - "53": 500, - "54": 500, - "55": 500, - "56": 500, - "57": 500, - "58": 333, - "59": 333, - "60": 675, - "61": 675, - "62": 675, - "63": 500, - "64": 920, - "65": 611, - "66": 611, - "67": 667, - "68": 722, - "69": 611, - "70": 611, - "71": 722, - "72": 722, - "73": 333, - "74": 444, - "75": 667, - "76": 556, - "77": 833, - "78": 667, - "79": 722, - "80": 611, - "81": 722, - "82": 611, - "83": 500, - "84": 556, - "85": 722, - "86": 611, - "87": 833, - "88": 611, - "89": 556, - "90": 556, - "91": 389, - "92": 278, - "93": 389, - "94": 422, - "95": 500, - "145": 333, - "97": 500, - "98": 500, - "99": 444, - "100": 500, - "101": 444, - "102": 278, - "103": 500, - "104": 500, - "105": 278, - "106": 278, - "107": 444, - "108": 278, - "109": 722, - "110": 500, - "111": 500, - "112": 500, - "113": 500, - "114": 389, - "115": 389, - "116": 278, - "117": 500, - "118": 444, - "119": 667, - "120": 444, - "121": 444, - "122": 389, - "123": 400, - "124": 275, - "125": 400, - "126": 541, - "161": 389, - "162": 500, - "163": 500, - "fraction": 167, - "165": 500, - "131": 500, - "167": 500, - "164": 500, - "39": 214, - "147": 556, - "171": 500, - "139": 333, - "155": 333, - "fi": 500, - "fl": 500, - "150": 500, - "134": 500, - "135": 500, - "183": 250, - "182": 523, - "149": 350, - "130": 333, - "132": 556, - "148": 556, - "187": 500, - "133": 889, - "137": 1000, - "191": 500, - "96": 333, - "180": 333, - "136": 333, - "152": 333, - "175": 333, - "breve": 333, - "dotaccent": 333, - "168": 333, - "ring": 333, - "184": 333, - "hungarumlaut": 333, - "ogonek": 333, - "caron": 333, - "151": 889, - "198": 889, - "170": 276, - "Lslash": 556, - "216": 722, - "140": 944, - "186": 310, - "230": 667, - "dotlessi": 278, - "lslash": 278, - "248": 500, - "156": 667, - "223": 500, - "207": 333, - "233": 444, - "abreve": 500, - "uhungarumlaut": 500, - "ecaron": 444, - "159": 556, - "247": 675, - "221": 556, - "194": 611, - "225": 500, - "219": 722, - "253": 444, - "scommaaccent": 389, - "234": 444, - "Uring": 722, - "220": 722, - "aogonek": 500, - "218": 722, - "uogonek": 500, - "203": 611, - "Dcroat": 722, - "commaaccent": 250, - "169": 760, - "Emacron": 611, - "ccaron": 444, - "229": 500, - "Ncommaaccent": 667, - "lacute": 278, - "224": 500, - "Tcommaaccent": 556, - "Cacute": 667, - "227": 500, - "Edotaccent": 611, - "154": 389, - "scedilla": 389, - "237": 278, - "lozenge": 471, - "Rcaron": 611, - "Gcommaaccent": 722, - "251": 500, - "226": 500, - "Amacron": 611, - "rcaron": 389, - "231": 444, - "Zdotaccent": 556, - "222": 611, - "Omacron": 722, - "Racute": 611, - "Sacute": 500, - "dcaron": 544, - "Umacron": 722, - "uring": 500, - "179": 300, - "210": 722, - "192": 611, - "Abreve": 611, - "215": 675, - "250": 500, - "Tcaron": 556, - "partialdiff": 476, - "255": 444, - "Nacute": 667, - "238": 278, - "202": 611, - "228": 500, - "235": 444, - "cacute": 444, - "nacute": 500, - "umacron": 500, - "Ncaron": 667, - "205": 333, - "177": 675, - "166": 275, - "174": 760, - "Gbreve": 722, - "Idotaccent": 333, - "summation": 600, - "200": 611, - "racute": 389, - "omacron": 500, - "Zacute": 556, - "142": 556, - "greaterequal": 549, - "208": 722, - "199": 667, - "lcommaaccent": 278, - "tcaron": 300, - "eogonek": 444, - "Uogonek": 722, - "193": 611, - "196": 611, - "232": 444, - "zacute": 389, - "iogonek": 278, - "211": 722, - "243": 500, - "amacron": 500, - "sacute": 389, - "239": 278, - "212": 722, - "217": 722, - "Delta": 612, - "254": 500, - "178": 300, - "214": 722, - "181": 500, - "236": 278, - "ohungarumlaut": 500, - "Eogonek": 611, - "dcroat": 500, - "190": 750, - "Scedilla": 500, - "lcaron": 300, - "Kcommaaccent": 667, - "Lacute": 556, - "153": 980, - "edotaccent": 444, - "204": 333, - "Imacron": 333, - "Lcaron": 611, - "189": 750, - "lessequal": 549, - "244": 500, - "241": 500, - "Uhungarumlaut": 722, - "201": 611, - "emacron": 444, - "gbreve": 500, - "188": 750, - "138": 500, - "Scommaaccent": 500, - "Ohungarumlaut": 722, - "176": 400, - "242": 500, - "Ccaron": 667, - "249": 500, - "radical": 453, - "Dcaron": 722, - "rcommaaccent": 389, - "209": 667, - "245": 500, - "Rcommaaccent": 611, - "Lcommaaccent": 556, - "195": 611, - "Aogonek": 611, - "197": 611, - "213": 722, - "zdotaccent": 389, - "Ecaron": 611, - "Iogonek": 333, - "kcommaaccent": 444, - "minus": 675, - "206": 333, - "ncaron": 500, - "tcommaaccent": 278, - "172": 675, - "246": 500, - "252": 500, - "notequal": 549, - "gcommaaccent": 500, - "240": 500, - "158": 389, - "ncommaaccent": 500, - "185": 300, - "imacron": 278, - "128": 500 - }, - "CIDtoGID_Compressed": true, - "CIDtoGID": "eJwDAAAAAAE=", - "_version_": 6 -} \ No newline at end of file diff --git a/storage/fonts/dompdf_font_family_cache.php b/storage/fonts/dompdf_font_family_cache.php old mode 100644 new mode 100755 index 581d4c0..b8e3fcc --- a/storage/fonts/dompdf_font_family_cache.php +++ b/storage/fonts/dompdf_font_family_cache.php @@ -79,10 +79,10 @@ return array ( 'normal' => $rootDir . '/lib/fonts/DejaVuSerif', ), 'roboto' => array( - '300' => $fontDir . '/roboto_300_86a9f54c2ccfbd31b9782b15d2d9345a', - 'normal' => $fontDir . '/roboto_normal_0b05025fa87afc0a2692736d55437e3e', - '500' => $fontDir . '/roboto_500_ea0fdb6a5a091a75340659ff9fb153c5', - 'bold' => $fontDir . '/roboto_bold_99297763247149b794ebaeda781037cd', + '300' => $fontDir . '/roboto_300_4367a01ee3518367111dfcda6c2027e6', + 'normal' => $fontDir . '/roboto_normal_75cc3fda36c0aa28c6afd265b6da53c3', + '500' => $fontDir . '/roboto_500_6661968338896d5d67dd0ed0f94fa51c', + 'bold' => $fontDir . '/roboto_bold_d8a5500bace8c7ad9b0027b9450cfc52', ), ); }; ?> \ No newline at end of file diff --git a/storage/fonts/installed-fonts.json b/storage/fonts/installed-fonts.json old mode 100644 new mode 100755 index 9c5524e..4f785da --- a/storage/fonts/installed-fonts.json +++ b/storage/fonts/installed-fonts.json @@ -1,8 +1,8 @@ { "roboto": { - "300": "\/Users\/kadmin\/Websites\/mivita.care\/storage\/fonts\/roboto_300_ab4f9b52de0081f7a06074da2fb3b569", - "normal": "\/Users\/kadmin\/Websites\/mivita.care\/storage\/fonts\/roboto_normal_db728720271025e5118179e1b242240f", - "500": "\/Users\/kadmin\/Websites\/mivita.care\/storage\/fonts\/roboto_500_67ddb0ca36aac651541deb7fa6dc71ab", - "bold": "roboto_bold_b915e443d033da031927fe8f39b8b856" + "300": "roboto_300_4367a01ee3518367111dfcda6c2027e6", + "normal": "roboto_normal_75cc3fda36c0aa28c6afd265b6da53c3", + "500": "roboto_500_6661968338896d5d67dd0ed0f94fa51c", + "bold": "roboto_bold_d8a5500bace8c7ad9b0027b9450cfc52" } } \ No newline at end of file diff --git a/storage/fonts/roboto/roboto-v20-latin-300.eot b/storage/fonts/roboto/roboto-v20-latin-300.eot old mode 100644 new mode 100755 diff --git a/storage/fonts/roboto/roboto-v20-latin-300.svg b/storage/fonts/roboto/roboto-v20-latin-300.svg old mode 100644 new mode 100755 diff --git a/storage/fonts/roboto/roboto-v20-latin-300.ttf b/storage/fonts/roboto/roboto-v20-latin-300.ttf old mode 100644 new mode 100755 diff --git a/storage/fonts/roboto/roboto-v20-latin-300.woff b/storage/fonts/roboto/roboto-v20-latin-300.woff old mode 100644 new mode 100755 diff --git a/storage/fonts/roboto/roboto-v20-latin-300.woff2 b/storage/fonts/roboto/roboto-v20-latin-300.woff2 old mode 100644 new mode 100755 diff --git a/storage/fonts/roboto/roboto-v20-latin-300italic.eot b/storage/fonts/roboto/roboto-v20-latin-300italic.eot old mode 100644 new mode 100755 diff --git a/storage/fonts/roboto/roboto-v20-latin-300italic.svg b/storage/fonts/roboto/roboto-v20-latin-300italic.svg old mode 100644 new mode 100755 diff --git a/storage/fonts/roboto/roboto-v20-latin-300italic.ttf b/storage/fonts/roboto/roboto-v20-latin-300italic.ttf old mode 100644 new mode 100755 diff --git a/storage/fonts/roboto/roboto-v20-latin-300italic.woff b/storage/fonts/roboto/roboto-v20-latin-300italic.woff old mode 100644 new mode 100755 diff --git a/storage/fonts/roboto/roboto-v20-latin-300italic.woff2 b/storage/fonts/roboto/roboto-v20-latin-300italic.woff2 old mode 100644 new mode 100755 diff --git a/storage/fonts/roboto/roboto-v20-latin-500.eot b/storage/fonts/roboto/roboto-v20-latin-500.eot old mode 100644 new mode 100755 diff --git a/storage/fonts/roboto/roboto-v20-latin-500.svg b/storage/fonts/roboto/roboto-v20-latin-500.svg old mode 100644 new mode 100755 diff --git a/storage/fonts/roboto/roboto-v20-latin-500.ttf b/storage/fonts/roboto/roboto-v20-latin-500.ttf old mode 100644 new mode 100755 diff --git a/storage/fonts/roboto/roboto-v20-latin-500.woff b/storage/fonts/roboto/roboto-v20-latin-500.woff old mode 100644 new mode 100755 diff --git a/storage/fonts/roboto/roboto-v20-latin-500.woff2 b/storage/fonts/roboto/roboto-v20-latin-500.woff2 old mode 100644 new mode 100755 diff --git a/storage/fonts/roboto/roboto-v20-latin-500italic.eot b/storage/fonts/roboto/roboto-v20-latin-500italic.eot old mode 100644 new mode 100755 diff --git a/storage/fonts/roboto/roboto-v20-latin-500italic.svg b/storage/fonts/roboto/roboto-v20-latin-500italic.svg old mode 100644 new mode 100755 diff --git a/storage/fonts/roboto/roboto-v20-latin-500italic.ttf b/storage/fonts/roboto/roboto-v20-latin-500italic.ttf old mode 100644 new mode 100755 diff --git a/storage/fonts/roboto/roboto-v20-latin-500italic.woff b/storage/fonts/roboto/roboto-v20-latin-500italic.woff old mode 100644 new mode 100755 diff --git a/storage/fonts/roboto/roboto-v20-latin-500italic.woff2 b/storage/fonts/roboto/roboto-v20-latin-500italic.woff2 old mode 100644 new mode 100755 diff --git a/storage/fonts/roboto/roboto-v20-latin-700.eot b/storage/fonts/roboto/roboto-v20-latin-700.eot old mode 100644 new mode 100755 diff --git a/storage/fonts/roboto/roboto-v20-latin-700.svg b/storage/fonts/roboto/roboto-v20-latin-700.svg old mode 100644 new mode 100755 diff --git a/storage/fonts/roboto/roboto-v20-latin-700.ttf b/storage/fonts/roboto/roboto-v20-latin-700.ttf old mode 100644 new mode 100755 diff --git a/storage/fonts/roboto/roboto-v20-latin-700.woff b/storage/fonts/roboto/roboto-v20-latin-700.woff old mode 100644 new mode 100755 diff --git a/storage/fonts/roboto/roboto-v20-latin-700.woff2 b/storage/fonts/roboto/roboto-v20-latin-700.woff2 old mode 100644 new mode 100755 diff --git a/storage/fonts/roboto/roboto-v20-latin-700italic.eot b/storage/fonts/roboto/roboto-v20-latin-700italic.eot old mode 100644 new mode 100755 diff --git a/storage/fonts/roboto/roboto-v20-latin-700italic.svg b/storage/fonts/roboto/roboto-v20-latin-700italic.svg old mode 100644 new mode 100755 diff --git a/storage/fonts/roboto/roboto-v20-latin-700italic.ttf b/storage/fonts/roboto/roboto-v20-latin-700italic.ttf old mode 100644 new mode 100755 diff --git a/storage/fonts/roboto/roboto-v20-latin-700italic.woff b/storage/fonts/roboto/roboto-v20-latin-700italic.woff old mode 100644 new mode 100755 diff --git a/storage/fonts/roboto/roboto-v20-latin-700italic.woff2 b/storage/fonts/roboto/roboto-v20-latin-700italic.woff2 old mode 100644 new mode 100755 diff --git a/storage/fonts/roboto/roboto-v20-latin-900.eot b/storage/fonts/roboto/roboto-v20-latin-900.eot old mode 100644 new mode 100755 diff --git a/storage/fonts/roboto/roboto-v20-latin-900.svg b/storage/fonts/roboto/roboto-v20-latin-900.svg old mode 100644 new mode 100755 diff --git a/storage/fonts/roboto/roboto-v20-latin-900.ttf b/storage/fonts/roboto/roboto-v20-latin-900.ttf old mode 100644 new mode 100755 diff --git a/storage/fonts/roboto/roboto-v20-latin-900.woff b/storage/fonts/roboto/roboto-v20-latin-900.woff old mode 100644 new mode 100755 diff --git a/storage/fonts/roboto/roboto-v20-latin-900.woff2 b/storage/fonts/roboto/roboto-v20-latin-900.woff2 old mode 100644 new mode 100755 diff --git a/storage/fonts/roboto/roboto-v20-latin-italic.eot b/storage/fonts/roboto/roboto-v20-latin-italic.eot old mode 100644 new mode 100755 diff --git a/storage/fonts/roboto/roboto-v20-latin-italic.svg b/storage/fonts/roboto/roboto-v20-latin-italic.svg old mode 100644 new mode 100755 diff --git a/storage/fonts/roboto/roboto-v20-latin-italic.ttf b/storage/fonts/roboto/roboto-v20-latin-italic.ttf old mode 100644 new mode 100755 diff --git a/storage/fonts/roboto/roboto-v20-latin-italic.woff b/storage/fonts/roboto/roboto-v20-latin-italic.woff old mode 100644 new mode 100755 diff --git a/storage/fonts/roboto/roboto-v20-latin-italic.woff2 b/storage/fonts/roboto/roboto-v20-latin-italic.woff2 old mode 100644 new mode 100755 diff --git a/storage/fonts/roboto/roboto-v20-latin-regular.eot b/storage/fonts/roboto/roboto-v20-latin-regular.eot old mode 100644 new mode 100755 diff --git a/storage/fonts/roboto/roboto-v20-latin-regular.svg b/storage/fonts/roboto/roboto-v20-latin-regular.svg old mode 100644 new mode 100755 diff --git a/storage/fonts/roboto/roboto-v20-latin-regular.ttf b/storage/fonts/roboto/roboto-v20-latin-regular.ttf old mode 100644 new mode 100755 diff --git a/storage/fonts/roboto/roboto-v20-latin-regular.woff b/storage/fonts/roboto/roboto-v20-latin-regular.woff old mode 100644 new mode 100755 diff --git a/storage/fonts/roboto/roboto-v20-latin-regular.woff2 b/storage/fonts/roboto/roboto-v20-latin-regular.woff2 old mode 100644 new mode 100755 diff --git a/storage/fonts/roboto_300_86a9f54c2ccfbd31b9782b15d2d9345a.ttf b/storage/fonts/roboto_300_4367a01ee3518367111dfcda6c2027e6.ttf old mode 100644 new mode 100755 similarity index 100% rename from storage/fonts/roboto_300_86a9f54c2ccfbd31b9782b15d2d9345a.ttf rename to storage/fonts/roboto_300_4367a01ee3518367111dfcda6c2027e6.ttf diff --git a/storage/fonts/roboto_300_86a9f54c2ccfbd31b9782b15d2d9345a.ufm b/storage/fonts/roboto_300_4367a01ee3518367111dfcda6c2027e6.ufm old mode 100644 new mode 100755 similarity index 100% rename from storage/fonts/roboto_300_86a9f54c2ccfbd31b9782b15d2d9345a.ufm rename to storage/fonts/roboto_300_4367a01ee3518367111dfcda6c2027e6.ufm diff --git a/storage/fonts/roboto_300_ab4f9b52de0081f7a06074da2fb3b569.ttf b/storage/fonts/roboto_300_ab4f9b52de0081f7a06074da2fb3b569.ttf deleted file mode 100644 index 57a24e8..0000000 Binary files a/storage/fonts/roboto_300_ab4f9b52de0081f7a06074da2fb3b569.ttf and /dev/null differ diff --git a/storage/fonts/roboto_300_ab4f9b52de0081f7a06074da2fb3b569.ufm b/storage/fonts/roboto_300_ab4f9b52de0081f7a06074da2fb3b569.ufm deleted file mode 100644 index 2eb3b27..0000000 --- a/storage/fonts/roboto_300_ab4f9b52de0081f7a06074da2fb3b569.ufm +++ /dev/null @@ -1,248 +0,0 @@ -StartFontMetrics 4.1 -Notice Converted by PHP-font-lib -Comment https://github.com/PhenX/php-font-lib -EncodingScheme FontSpecific -Copyright Copyright 2011 Google Inc. All Rights Reserved. -FontName Roboto Light -FontSubfamily Regular -UniqueID Roboto Light -FullName Roboto Light -Version Version 2.137; 2017 -PostScriptName Roboto-Light -LicenseURL http://www.apache.org/licenses/LICENSE-2.0 -Weight Medium -ItalicAngle 0 -IsFixedPitch false -UnderlineThickness 49 -UnderlinePosition -73 -FontHeightOffset 0 -Ascender 928 -Descender -244 -FontBBox -734 -271 1138 1056 -StartCharMetrics 248 -U 0 ; WX 0 ; N uni0000 ; G 1 -U 13 ; WX 243 ; N uni000d ; G 3 -U 32 ; WX 243 ; N uni0020 ; G 4 -U 33 ; WX 226 ; N uni0021 ; G 5 -U 34 ; WX 287 ; N uni0022 ; G 6 -U 35 ; WX 582 ; N uni0023 ; G 7 -U 36 ; WX 554 ; N uni0024 ; G 8 -U 37 ; WX 739 ; N uni0025 ; G 9 -U 38 ; WX 615 ; N uni0026 ; G 10 -U 39 ; WX 170 ; N uni0027 ; G 11 -U 40 ; WX 319 ; N uni0028 ; G 12 -U 41 ; WX 326 ; N uni0029 ; G 13 -U 42 ; WX 424 ; N uni002a ; G 14 -U 43 ; WX 564 ; N uni002b ; G 15 -U 44 ; WX 191 ; N uni002c ; G 16 -U 45 ; WX 286 ; N uni002d ; G 17 -U 46 ; WX 239 ; N uni002e ; G 18 -U 47 ; WX 397 ; N uni002f ; G 19 -U 48 ; WX 554 ; N uni0030 ; G 20 -U 49 ; WX 554 ; N uni0031 ; G 21 -U 50 ; WX 554 ; N uni0032 ; G 22 -U 51 ; WX 554 ; N uni0033 ; G 23 -U 52 ; WX 554 ; N uni0034 ; G 24 -U 53 ; WX 554 ; N uni0035 ; G 25 -U 54 ; WX 554 ; N uni0036 ; G 26 -U 55 ; WX 554 ; N uni0037 ; G 27 -U 56 ; WX 554 ; N uni0038 ; G 28 -U 57 ; WX 554 ; N uni0039 ; G 29 -U 58 ; WX 210 ; N uni003a ; G 30 -U 59 ; WX 195 ; N uni003b ; G 31 -U 60 ; WX 511 ; N uni003c ; G 32 -U 61 ; WX 553 ; N uni003d ; G 33 -U 62 ; WX 518 ; N uni003e ; G 34 -U 63 ; WX 454 ; N uni003f ; G 35 -U 64 ; WX 913 ; N uni0040 ; G 36 -U 65 ; WX 625 ; N uni0041 ; G 37 -U 66 ; WX 613 ; N uni0042 ; G 38 -U 67 ; WX 649 ; N uni0043 ; G 39 -U 68 ; WX 655 ; N uni0044 ; G 40 -U 69 ; WX 569 ; N uni0045 ; G 41 -U 70 ; WX 563 ; N uni0046 ; G 42 -U 71 ; WX 684 ; N uni0047 ; G 43 -U 72 ; WX 708 ; N uni0048 ; G 44 -U 73 ; WX 266 ; N uni0049 ; G 45 -U 74 ; WX 550 ; N uni004a ; G 46 -U 75 ; WX 631 ; N uni004b ; G 47 -U 76 ; WX 527 ; N uni004c ; G 48 -U 77 ; WX 865 ; N uni004d ; G 49 -U 78 ; WX 710 ; N uni004e ; G 50 -U 79 ; WX 677 ; N uni004f ; G 51 -U 80 ; WX 616 ; N uni0050 ; G 52 -U 81 ; WX 677 ; N uni0051 ; G 53 -U 82 ; WX 635 ; N uni0052 ; G 54 -U 83 ; WX 592 ; N uni0053 ; G 55 -U 84 ; WX 597 ; N uni0054 ; G 56 -U 85 ; WX 657 ; N uni0055 ; G 57 -U 86 ; WX 617 ; N uni0056 ; G 58 -U 87 ; WX 896 ; N uni0057 ; G 59 -U 88 ; WX 612 ; N uni0058 ; G 60 -U 89 ; WX 599 ; N uni0059 ; G 61 -U 90 ; WX 598 ; N uni005a ; G 62 -U 91 ; WX 240 ; N uni005b ; G 63 -U 92 ; WX 394 ; N uni005c ; G 64 -U 93 ; WX 240 ; N uni005d ; G 65 -U 94 ; WX 416 ; N uni005e ; G 66 -U 95 ; WX 432 ; N uni005f ; G 67 -U 96 ; WX 286 ; N uni0060 ; G 68 -U 97 ; WX 536 ; N uni0061 ; G 69 -U 98 ; WX 554 ; N uni0062 ; G 70 -U 99 ; WX 515 ; N uni0063 ; G 71 -U 100 ; WX 556 ; N uni0064 ; G 72 -U 101 ; WX 517 ; N uni0065 ; G 73 -U 102 ; WX 331 ; N uni0066 ; G 74 -U 103 ; WX 555 ; N uni0067 ; G 75 -U 104 ; WX 549 ; N uni0068 ; G 76 -U 105 ; WX 224 ; N uni0069 ; G 77 -U 106 ; WX 228 ; N uni006a ; G 78 -U 107 ; WX 490 ; N uni006b ; G 79 -U 108 ; WX 224 ; N uni006c ; G 80 -U 109 ; WX 886 ; N uni006d ; G 81 -U 110 ; WX 549 ; N uni006e ; G 82 -U 111 ; WX 560 ; N uni006f ; G 83 -U 112 ; WX 554 ; N uni0070 ; G 84 -U 113 ; WX 558 ; N uni0071 ; G 85 -U 114 ; WX 336 ; N uni0072 ; G 86 -U 115 ; WX 506 ; N uni0073 ; G 87 -U 116 ; WX 321 ; N uni0074 ; G 88 -U 117 ; WX 549 ; N uni0075 ; G 89 -U 118 ; WX 481 ; N uni0076 ; G 90 -U 119 ; WX 754 ; N uni0077 ; G 91 -U 120 ; WX 486 ; N uni0078 ; G 92 -U 121 ; WX 475 ; N uni0079 ; G 93 -U 122 ; WX 486 ; N uni007a ; G 94 -U 123 ; WX 330 ; N uni007b ; G 95 -U 124 ; WX 221 ; N uni007c ; G 96 -U 125 ; WX 330 ; N uni007d ; G 97 -U 126 ; WX 685 ; N uni007e ; G 98 -U 160 ; WX 243 ; N uni00a0 ; G 189 -U 161 ; WX 221 ; N uni00a1 ; G 99 -U 162 ; WX 544 ; N uni00a2 ; G 100 -U 163 ; WX 571 ; N uni00a3 ; G 101 -U 164 ; WX 723 ; N uni00a4 ; G 102 -U 165 ; WX 516 ; N uni00a5 ; G 103 -U 166 ; WX 217 ; N uni00a6 ; G 104 -U 167 ; WX 605 ; N uni00a7 ; G 105 -U 168 ; WX 430 ; N uni00a8 ; G 106 -U 169 ; WX 799 ; N uni00a9 ; G 107 -U 170 ; WX 442 ; N uni00aa ; G 108 -U 171 ; WX 456 ; N uni00ab ; G 109 -U 172 ; WX 545 ; N uni00ac ; G 110 -U 173 ; WX 286 ; N uni00ad ; G 190 -U 174 ; WX 802 ; N uni00ae ; G 111 -U 175 ; WX 427 ; N uni00af ; G 112 -U 176 ; WX 378 ; N uni00b0 ; G 113 -U 177 ; WX 530 ; N uni00b1 ; G 114 -U 178 ; WX 361 ; N uni00b2 ; G 115 -U 179 ; WX 361 ; N uni00b3 ; G 116 -U 180 ; WX 281 ; N uni00b4 ; G 117 -U 181 ; WX 557 ; N uni00b5 ; G 118 -U 182 ; WX 475 ; N uni00b6 ; G 119 -U 183 ; WX 246 ; N uni00b7 ; G 120 -U 184 ; WX 243 ; N uni00b8 ; G 121 -U 185 ; WX 361 ; N uni00b9 ; G 122 -U 186 ; WX 450 ; N uni00ba ; G 123 -U 187 ; WX 453 ; N uni00bb ; G 124 -U 188 ; WX 725 ; N uni00bc ; G 125 -U 189 ; WX 756 ; N uni00bd ; G 126 -U 190 ; WX 776 ; N uni00be ; G 127 -U 191 ; WX 459 ; N uni00bf ; G 128 -U 192 ; WX 625 ; N uni00c0 ; G 192 -U 193 ; WX 625 ; N uni00c1 ; G 193 -U 194 ; WX 625 ; N uni00c2 ; G 194 -U 195 ; WX 625 ; N uni00c3 ; G 195 -U 196 ; WX 625 ; N uni00c4 ; G 196 -U 197 ; WX 625 ; N uni00c5 ; G 197 -U 198 ; WX 911 ; N uni00c6 ; G 129 -U 199 ; WX 649 ; N uni00c7 ; G 198 -U 200 ; WX 569 ; N uni00c8 ; G 199 -U 201 ; WX 569 ; N uni00c9 ; G 200 -U 202 ; WX 569 ; N uni00ca ; G 201 -U 203 ; WX 569 ; N uni00cb ; G 202 -U 204 ; WX 266 ; N uni00cc ; G 203 -U 205 ; WX 266 ; N uni00cd ; G 204 -U 206 ; WX 266 ; N uni00ce ; G 205 -U 207 ; WX 266 ; N uni00cf ; G 206 -U 208 ; WX 669 ; N uni00d0 ; G 191 -U 209 ; WX 710 ; N uni00d1 ; G 207 -U 210 ; WX 677 ; N uni00d2 ; G 208 -U 211 ; WX 677 ; N uni00d3 ; G 209 -U 212 ; WX 677 ; N uni00d4 ; G 210 -U 213 ; WX 677 ; N uni00d5 ; G 211 -U 214 ; WX 677 ; N uni00d6 ; G 212 -U 215 ; WX 523 ; N uni00d7 ; G 130 -U 216 ; WX 677 ; N uni00d8 ; G 131 -U 217 ; WX 657 ; N uni00d9 ; G 213 -U 218 ; WX 657 ; N uni00da ; G 214 -U 219 ; WX 657 ; N uni00db ; G 215 -U 220 ; WX 657 ; N uni00dc ; G 216 -U 221 ; WX 599 ; N uni00dd ; G 217 -U 222 ; WX 593 ; N uni00de ; G 132 -U 223 ; WX 586 ; N uni00df ; G 133 -U 224 ; WX 536 ; N uni00e0 ; G 218 -U 225 ; WX 536 ; N uni00e1 ; G 219 -U 226 ; WX 536 ; N uni00e2 ; G 220 -U 227 ; WX 536 ; N uni00e3 ; G 221 -U 228 ; WX 536 ; N uni00e4 ; G 222 -U 229 ; WX 536 ; N uni00e5 ; G 223 -U 230 ; WX 846 ; N uni00e6 ; G 134 -U 231 ; WX 515 ; N uni00e7 ; G 224 -U 232 ; WX 517 ; N uni00e8 ; G 225 -U 233 ; WX 517 ; N uni00e9 ; G 226 -U 234 ; WX 517 ; N uni00ea ; G 227 -U 235 ; WX 517 ; N uni00eb ; G 228 -U 236 ; WX 223 ; N uni00ec ; G 229 -U 237 ; WX 223 ; N uni00ed ; G 230 -U 238 ; WX 223 ; N uni00ee ; G 231 -U 239 ; WX 223 ; N uni00ef ; G 232 -U 240 ; WX 582 ; N uni00f0 ; G 135 -U 241 ; WX 549 ; N uni00f1 ; G 233 -U 242 ; WX 560 ; N uni00f2 ; G 234 -U 243 ; WX 560 ; N uni00f3 ; G 235 -U 244 ; WX 560 ; N uni00f4 ; G 236 -U 245 ; WX 560 ; N uni00f5 ; G 237 -U 246 ; WX 560 ; N uni00f6 ; G 238 -U 247 ; WX 568 ; N uni00f7 ; G 136 -U 248 ; WX 557 ; N uni00f8 ; G 137 -U 249 ; WX 549 ; N uni00f9 ; G 239 -U 250 ; WX 549 ; N uni00fa ; G 240 -U 251 ; WX 549 ; N uni00fb ; G 241 -U 252 ; WX 549 ; N uni00fc ; G 242 -U 253 ; WX 475 ; N uni00fd ; G 243 -U 254 ; WX 562 ; N uni00fe ; G 138 -U 255 ; WX 475 ; N uni00ff ; G 244 -U 305 ; WX 223 ; N uni0131 ; G 139 -U 338 ; WX 934 ; N uni0152 ; G 140 -U 339 ; WX 924 ; N uni0153 ; G 141 -U 700 ; WX 178 ; N uni02bc ; G 247 -U 710 ; WX 430 ; N uni02c6 ; G 142 -U 730 ; WX 310 ; N uni02da ; G 143 -U 732 ; WX 435 ; N uni02dc ; G 144 -U 8194 ; WX 510 ; N uni2002 ; G 145 -U 8201 ; WX 204 ; N uni2009 ; G 146 -U 8203 ; WX 0 ; N uni200b ; G 148 -U 8211 ; WX 651 ; N uni2013 ; G 149 -U 8212 ; WX 771 ; N uni2014 ; G 150 -U 8216 ; WX 178 ; N uni2018 ; G 151 -U 8217 ; WX 178 ; N uni2019 ; G 152 -U 8218 ; WX 172 ; N uni201a ; G 153 -U 8220 ; WX 299 ; N uni201c ; G 154 -U 8221 ; WX 301 ; N uni201d ; G 155 -U 8222 ; WX 290 ; N uni201e ; G 156 -U 8226 ; WX 323 ; N uni2022 ; G 157 -U 8230 ; WX 641 ; N uni2026 ; G 158 -U 8242 ; WX 170 ; N uni2032 ; G 245 -U 8243 ; WX 287 ; N uni2033 ; G 246 -U 8249 ; WX 297 ; N uni2039 ; G 159 -U 8250 ; WX 297 ; N uni203a ; G 160 -U 8260 ; WX 448 ; N uni2044 ; G 161 -U 8308 ; WX 361 ; N uni2074 ; G 162 -U 8364 ; WX 554 ; N uni20ac ; G 163 -U 8482 ; WX 617 ; N uni2122 ; G 164 -U 8722 ; WX 570 ; N uni2212 ; G 165 -U 65279 ; WX 0 ; N unifeff ; G 170 -U 65533 ; WX 1026 ; N unifffd ; G 171 -EndCharMetrics -EndFontMetrics diff --git a/storage/fonts/roboto_500_67ddb0ca36aac651541deb7fa6dc71ab.ttf b/storage/fonts/roboto_500_6661968338896d5d67dd0ed0f94fa51c.ttf old mode 100644 new mode 100755 similarity index 100% rename from storage/fonts/roboto_500_67ddb0ca36aac651541deb7fa6dc71ab.ttf rename to storage/fonts/roboto_500_6661968338896d5d67dd0ed0f94fa51c.ttf diff --git a/storage/fonts/roboto_500_67ddb0ca36aac651541deb7fa6dc71ab.ufm b/storage/fonts/roboto_500_6661968338896d5d67dd0ed0f94fa51c.ufm old mode 100644 new mode 100755 similarity index 100% rename from storage/fonts/roboto_500_67ddb0ca36aac651541deb7fa6dc71ab.ufm rename to storage/fonts/roboto_500_6661968338896d5d67dd0ed0f94fa51c.ufm diff --git a/storage/fonts/roboto_500_67ddb0ca36aac651541deb7fa6dc71ab.ufm.json b/storage/fonts/roboto_500_67ddb0ca36aac651541deb7fa6dc71ab.ufm.json deleted file mode 100644 index 5e24037..0000000 --- a/storage/fonts/roboto_500_67ddb0ca36aac651541deb7fa6dc71ab.ufm.json +++ /dev/null @@ -1,478 +0,0 @@ -{ - "codeToName": { - "0": "uni0000", - "13": "uni000d", - "32": "uni0020", - "33": "uni0021", - "34": "uni0022", - "35": "uni0023", - "36": "uni0024", - "37": "uni0025", - "38": "uni0026", - "39": "uni0027", - "40": "uni0028", - "41": "uni0029", - "42": "uni002a", - "43": "uni002b", - "44": "uni002c", - "45": "uni002d", - "46": "uni002e", - "47": "uni002f", - "48": "uni0030", - "49": "uni0031", - "50": "uni0032", - "51": "uni0033", - "52": "uni0034", - "53": "uni0035", - "54": "uni0036", - "55": "uni0037", - "56": "uni0038", - "57": "uni0039", - "58": "uni003a", - "59": "uni003b", - "60": "uni003c", - "61": "uni003d", - "62": "uni003e", - "63": "uni003f", - "64": "uni0040", - "65": "uni0041", - "66": "uni0042", - "67": "uni0043", - "68": "uni0044", - "69": "uni0045", - "70": "uni0046", - "71": "uni0047", - "72": "uni0048", - "73": "uni0049", - "74": "uni004a", - "75": "uni004b", - "76": "uni004c", - "77": "uni004d", - "78": "uni004e", - "79": "uni004f", - "80": "uni0050", - "81": "uni0051", - "82": "uni0052", - "83": "uni0053", - "84": "uni0054", - "85": "uni0055", - "86": "uni0056", - "87": "uni0057", - "88": "uni0058", - "89": "uni0059", - "90": "uni005a", - "91": "uni005b", - "92": "uni005c", - "93": "uni005d", - "94": "uni005e", - "95": "uni005f", - "96": "uni0060", - "97": "uni0061", - "98": "uni0062", - "99": "uni0063", - "100": "uni0064", - "101": "uni0065", - "102": "uni0066", - "103": "uni0067", - "104": "uni0068", - "105": "uni0069", - "106": "uni006a", - "107": "uni006b", - "108": "uni006c", - "109": "uni006d", - "110": "uni006e", - "111": "uni006f", - "112": "uni0070", - "113": "uni0071", - "114": "uni0072", - "115": "uni0073", - "116": "uni0074", - "117": "uni0075", - "118": "uni0076", - "119": "uni0077", - "120": "uni0078", - "121": "uni0079", - "122": "uni007a", - "123": "uni007b", - "124": "uni007c", - "125": "uni007d", - "126": "uni007e", - "160": "uni00a0", - "161": "uni00a1", - "162": "uni00a2", - "163": "uni00a3", - "164": "uni00a4", - "165": "uni00a5", - "166": "uni00a6", - "167": "uni00a7", - "168": "uni00a8", - "169": "uni00a9", - "170": "uni00aa", - "171": "uni00ab", - "172": "uni00ac", - "173": "uni00ad", - "174": "uni00ae", - "175": "uni00af", - "176": "uni00b0", - "177": "uni00b1", - "178": "uni00b2", - "179": "uni00b3", - "180": "uni00b4", - "181": "uni00b5", - "182": "uni00b6", - "183": "uni00b7", - "184": "uni00b8", - "185": "uni00b9", - "186": "uni00ba", - "187": "uni00bb", - "188": "uni00bc", - "189": "uni00bd", - "190": "uni00be", - "191": "uni00bf", - "192": "uni00c0", - "193": "uni00c1", - "194": "uni00c2", - "195": "uni00c3", - "196": "uni00c4", - "197": "uni00c5", - "198": "uni00c6", - "199": "uni00c7", - "200": "uni00c8", - "201": "uni00c9", - "202": "uni00ca", - "203": "uni00cb", - "204": "uni00cc", - "205": "uni00cd", - "206": "uni00ce", - "207": "uni00cf", - "208": "uni00d0", - "209": "uni00d1", - "210": "uni00d2", - "211": "uni00d3", - "212": "uni00d4", - "213": "uni00d5", - "214": "uni00d6", - "215": "uni00d7", - "216": "uni00d8", - "217": "uni00d9", - "218": "uni00da", - "219": "uni00db", - "220": "uni00dc", - "221": "uni00dd", - "222": "uni00de", - "223": "uni00df", - "224": "uni00e0", - "225": "uni00e1", - "226": "uni00e2", - "227": "uni00e3", - "228": "uni00e4", - "229": "uni00e5", - "230": "uni00e6", - "231": "uni00e7", - "232": "uni00e8", - "233": "uni00e9", - "234": "uni00ea", - "235": "uni00eb", - "236": "uni00ec", - "237": "uni00ed", - "238": "uni00ee", - "239": "uni00ef", - "240": "uni00f0", - "241": "uni00f1", - "242": "uni00f2", - "243": "uni00f3", - "244": "uni00f4", - "245": "uni00f5", - "246": "uni00f6", - "247": "uni00f7", - "248": "uni00f8", - "249": "uni00f9", - "250": "uni00fa", - "251": "uni00fb", - "252": "uni00fc", - "253": "uni00fd", - "254": "uni00fe", - "255": "uni00ff", - "305": "uni0131", - "338": "uni0152", - "339": "uni0153", - "700": "uni02bc", - "710": "uni02c6", - "730": "uni02da", - "732": "uni02dc", - "8194": "uni2002", - "8201": "uni2009", - "8203": "uni200b", - "8211": "uni2013", - "8212": "uni2014", - "8216": "uni2018", - "8217": "uni2019", - "8218": "uni201a", - "8220": "uni201c", - "8221": "uni201d", - "8222": "uni201e", - "8226": "uni2022", - "8230": "uni2026", - "8242": "uni2032", - "8243": "uni2033", - "8249": "uni2039", - "8250": "uni203a", - "8260": "uni2044", - "8308": "uni2074", - "8364": "uni20ac", - "8482": "uni2122", - "8722": "uni2212", - "65279": "unifeff", - "65533": "unifffd" - }, - "isUnicode": true, - "EncodingScheme": "FontSpecific", - "FontName": "Roboto Medium", - "FullName": "Roboto Medium", - "Version": "Version 2.137; 2017", - "PostScriptName": "Roboto-Medium", - "Weight": "Bold", - "ItalicAngle": "0", - "IsFixedPitch": "false", - "UnderlineThickness": "49", - "UnderlinePosition": "-73", - "FontHeightOffset": "0", - "Ascender": "928", - "Descender": "-244", - "FontBBox": [ - "-732", - "-271", - "1170", - "1056" - ], - "StartCharMetrics": "248", - "C": { - "0": 0, - "13": 249, - "32": 249, - "33": 268, - "34": 324, - "35": 610, - "36": 568, - "37": 734, - "38": 639, - "39": 169, - "40": 349, - "41": 353, - "42": 442, - "43": 557, - "44": 220, - "45": 328, - "46": 279, - "47": 396, - "48": 568, - "49": 568, - "50": 568, - "51": 568, - "52": 568, - "53": 568, - "54": 568, - "55": 568, - "56": 568, - "57": 568, - "58": 265, - "59": 238, - "60": 508, - "61": 560, - "62": 521, - "63": 486, - "64": 895, - "65": 666, - "66": 631, - "67": 653, - "68": 653, - "69": 565, - "70": 549, - "71": 681, - "72": 710, - "73": 282, - "74": 555, - "75": 630, - "76": 541, - "77": 875, - "78": 710, - "79": 690, - "80": 639, - "81": 690, - "82": 624, - "83": 604, - "84": 607, - "85": 652, - "86": 647, - "87": 880, - "88": 633, - "89": 609, - "90": 602, - "91": 274, - "92": 418, - "93": 274, - "94": 427, - "95": 451, - "96": 322, - "97": 541, - "98": 563, - "99": 523, - "100": 564, - "101": 537, - "102": 354, - "103": 567, - "104": 555, - "105": 255, - "106": 250, - "107": 522, - "108": 255, - "109": 870, - "110": 556, - "111": 569, - "112": 563, - "113": 568, - "114": 352, - "115": 516, - "116": 333, - "117": 556, - "118": 495, - "119": 743, - "120": 503, - "121": 487, - "122": 503, - "123": 335, - "124": 251, - "125": 335, - "126": 665, - "160": 249, - "161": 265, - "162": 561, - "163": 588, - "164": 702, - "165": 531, - "166": 248, - "167": 621, - "168": 440, - "169": 783, - "170": 446, - "171": 485, - "172": 553, - "173": 328, - "174": 783, - "175": 482, - "176": 380, - "177": 536, - "178": 370, - "179": 370, - "180": 326, - "181": 591, - "182": 491, - "183": 282, - "184": 258, - "185": 370, - "186": 457, - "187": 485, - "188": 727, - "189": 771, - "190": 792, - "191": 486, - "192": 666, - "193": 666, - "194": 666, - "195": 666, - "196": 666, - "197": 666, - "198": 940, - "199": 653, - "200": 565, - "201": 565, - "202": 565, - "203": 565, - "204": 282, - "205": 282, - "206": 282, - "207": 282, - "208": 668, - "209": 710, - "210": 690, - "211": 690, - "212": 690, - "213": 690, - "214": 690, - "215": 533, - "216": 689, - "217": 652, - "218": 652, - "219": 652, - "220": 652, - "221": 609, - "222": 599, - "223": 613, - "224": 541, - "225": 541, - "226": 541, - "227": 541, - "228": 541, - "229": 541, - "230": 844, - "231": 523, - "232": 537, - "233": 537, - "234": 537, - "235": 537, - "236": 263, - "237": 263, - "238": 263, - "239": 263, - "240": 582, - "241": 556, - "242": 569, - "243": 569, - "244": 569, - "245": 569, - "246": 569, - "247": 571, - "248": 566, - "249": 556, - "250": 556, - "251": 556, - "252": 556, - "253": 487, - "254": 574, - "255": 487, - "305": 263, - "338": 963, - "339": 903, - "700": 217, - "710": 487, - "730": 337, - "732": 480, - "8194": 510, - "8201": 204, - "8203": 0, - "8211": 645, - "8212": 773, - "8216": 219, - "8217": 217, - "8218": 226, - "8220": 385, - "8221": 388, - "8222": 379, - "8226": 349, - "8230": 706, - "8242": 169, - "8243": 324, - "8249": 306, - "8250": 301, - "8260": 451, - "8308": 370, - "8364": 568, - "8482": 629, - "8722": 564, - "65279": 0, - "65533": 1026 - }, - "CIDtoGID_Compressed": true, - "CIDtoGID": "eJzt0FPPYGcYhtGrqW3btm3btm3bZmrzpP0NtW3btk47TeZgOplpJ+1MvyZdK3n362ffezdawzP6cHeGNEZjNlZjN07jNl7jN0ETNlETN0mTNlmTN0VTNlVTN03TNl3TN0MzNlMzN0uzNluzN0dzNldzN0\/zNl\/zt0ALtlALt0iLtliLt0RLtlRLt0zLtlzLt0IrtlIrt0qrtlqrt0ZrtlZrt07rtl7rt0EbtlEbt0mbtlmbt0VbtlVbt03btl3bt0M7tlM7t0u7ttsIfeGfu7vd26M926u926d926\/9O6ADO6h7OrhDOrTDOrwjOrKjOrpjOrbjOr4TOrGTOrlTuq\/7e6AHe6iHO7VHerTHerwnerKnerpnurdne67ne6EXe6nTOr2Xe6VXe63XO6Mze6M3e6u3e6d3O6v3er8P+rCP+rhP+rTPOrvP+6Iv+6qv+6ZzOrdv+67v+6EfO6+fRsIf+Cvn\/+MKF3ThSMgB\/x2\/DmPtohG8e\/GgdsnIiwIAAAAAAAAAAAAAAAAAwH\/MpX+YXTaoXT7UiSu6cvDoqq7umkH9tV3X9YPXbhjc3zic+j\/3yxCzm7p5GGduGeG0f8+to7j+0G77l983kG4f6ACMUncMdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\/mfuHOgADJi7fn\/8Bsu+aH4=", - "_version_": 6 -} \ No newline at end of file diff --git a/storage/fonts/roboto_500_ea0fdb6a5a091a75340659ff9fb153c5.ttf b/storage/fonts/roboto_500_ea0fdb6a5a091a75340659ff9fb153c5.ttf deleted file mode 100644 index dd04ff1..0000000 Binary files a/storage/fonts/roboto_500_ea0fdb6a5a091a75340659ff9fb153c5.ttf and /dev/null differ diff --git a/storage/fonts/roboto_500_ea0fdb6a5a091a75340659ff9fb153c5.ufm b/storage/fonts/roboto_500_ea0fdb6a5a091a75340659ff9fb153c5.ufm deleted file mode 100644 index 0cfa4e5..0000000 --- a/storage/fonts/roboto_500_ea0fdb6a5a091a75340659ff9fb153c5.ufm +++ /dev/null @@ -1,248 +0,0 @@ -StartFontMetrics 4.1 -Notice Converted by PHP-font-lib -Comment https://github.com/PhenX/php-font-lib -EncodingScheme FontSpecific -Copyright Copyright 2011 Google Inc. All Rights Reserved. -FontName Roboto Medium -FontSubfamily Regular -UniqueID Roboto Medium -FullName Roboto Medium -Version Version 2.137; 2017 -PostScriptName Roboto-Medium -LicenseURL http://www.apache.org/licenses/LICENSE-2.0 -Weight Bold -ItalicAngle 0 -IsFixedPitch false -UnderlineThickness 49 -UnderlinePosition -73 -FontHeightOffset 0 -Ascender 928 -Descender -244 -FontBBox -732 -271 1170 1056 -StartCharMetrics 248 -U 0 ; WX 0 ; N uni0000 ; G 1 -U 13 ; WX 249 ; N uni000d ; G 3 -U 32 ; WX 249 ; N uni0020 ; G 4 -U 33 ; WX 268 ; N uni0021 ; G 5 -U 34 ; WX 324 ; N uni0022 ; G 6 -U 35 ; WX 610 ; N uni0023 ; G 7 -U 36 ; WX 568 ; N uni0024 ; G 8 -U 37 ; WX 734 ; N uni0025 ; G 9 -U 38 ; WX 639 ; N uni0026 ; G 10 -U 39 ; WX 169 ; N uni0027 ; G 11 -U 40 ; WX 349 ; N uni0028 ; G 12 -U 41 ; WX 353 ; N uni0029 ; G 13 -U 42 ; WX 442 ; N uni002a ; G 14 -U 43 ; WX 557 ; N uni002b ; G 15 -U 44 ; WX 220 ; N uni002c ; G 16 -U 45 ; WX 328 ; N uni002d ; G 17 -U 46 ; WX 279 ; N uni002e ; G 18 -U 47 ; WX 396 ; N uni002f ; G 19 -U 48 ; WX 568 ; N uni0030 ; G 20 -U 49 ; WX 568 ; N uni0031 ; G 21 -U 50 ; WX 568 ; N uni0032 ; G 22 -U 51 ; WX 568 ; N uni0033 ; G 23 -U 52 ; WX 568 ; N uni0034 ; G 24 -U 53 ; WX 568 ; N uni0035 ; G 25 -U 54 ; WX 568 ; N uni0036 ; G 26 -U 55 ; WX 568 ; N uni0037 ; G 27 -U 56 ; WX 568 ; N uni0038 ; G 28 -U 57 ; WX 568 ; N uni0039 ; G 29 -U 58 ; WX 265 ; N uni003a ; G 30 -U 59 ; WX 238 ; N uni003b ; G 31 -U 60 ; WX 508 ; N uni003c ; G 32 -U 61 ; WX 560 ; N uni003d ; G 33 -U 62 ; WX 521 ; N uni003e ; G 34 -U 63 ; WX 486 ; N uni003f ; G 35 -U 64 ; WX 895 ; N uni0040 ; G 36 -U 65 ; WX 666 ; N uni0041 ; G 37 -U 66 ; WX 631 ; N uni0042 ; G 38 -U 67 ; WX 653 ; N uni0043 ; G 39 -U 68 ; WX 653 ; N uni0044 ; G 40 -U 69 ; WX 565 ; N uni0045 ; G 41 -U 70 ; WX 549 ; N uni0046 ; G 42 -U 71 ; WX 681 ; N uni0047 ; G 43 -U 72 ; WX 710 ; N uni0048 ; G 44 -U 73 ; WX 282 ; N uni0049 ; G 45 -U 74 ; WX 555 ; N uni004a ; G 46 -U 75 ; WX 630 ; N uni004b ; G 47 -U 76 ; WX 541 ; N uni004c ; G 48 -U 77 ; WX 875 ; N uni004d ; G 49 -U 78 ; WX 710 ; N uni004e ; G 50 -U 79 ; WX 690 ; N uni004f ; G 51 -U 80 ; WX 639 ; N uni0050 ; G 52 -U 81 ; WX 690 ; N uni0051 ; G 53 -U 82 ; WX 624 ; N uni0052 ; G 54 -U 83 ; WX 604 ; N uni0053 ; G 55 -U 84 ; WX 607 ; N uni0054 ; G 56 -U 85 ; WX 652 ; N uni0055 ; G 57 -U 86 ; WX 647 ; N uni0056 ; G 58 -U 87 ; WX 880 ; N uni0057 ; G 59 -U 88 ; WX 633 ; N uni0058 ; G 60 -U 89 ; WX 609 ; N uni0059 ; G 61 -U 90 ; WX 602 ; N uni005a ; G 62 -U 91 ; WX 274 ; N uni005b ; G 63 -U 92 ; WX 418 ; N uni005c ; G 64 -U 93 ; WX 274 ; N uni005d ; G 65 -U 94 ; WX 427 ; N uni005e ; G 66 -U 95 ; WX 451 ; N uni005f ; G 67 -U 96 ; WX 322 ; N uni0060 ; G 68 -U 97 ; WX 541 ; N uni0061 ; G 69 -U 98 ; WX 563 ; N uni0062 ; G 70 -U 99 ; WX 523 ; N uni0063 ; G 71 -U 100 ; WX 564 ; N uni0064 ; G 72 -U 101 ; WX 537 ; N uni0065 ; G 73 -U 102 ; WX 354 ; N uni0066 ; G 74 -U 103 ; WX 567 ; N uni0067 ; G 75 -U 104 ; WX 555 ; N uni0068 ; G 76 -U 105 ; WX 255 ; N uni0069 ; G 77 -U 106 ; WX 250 ; N uni006a ; G 78 -U 107 ; WX 522 ; N uni006b ; G 79 -U 108 ; WX 255 ; N uni006c ; G 80 -U 109 ; WX 870 ; N uni006d ; G 81 -U 110 ; WX 556 ; N uni006e ; G 82 -U 111 ; WX 569 ; N uni006f ; G 83 -U 112 ; WX 563 ; N uni0070 ; G 84 -U 113 ; WX 568 ; N uni0071 ; G 85 -U 114 ; WX 352 ; N uni0072 ; G 86 -U 115 ; WX 516 ; N uni0073 ; G 87 -U 116 ; WX 333 ; N uni0074 ; G 88 -U 117 ; WX 556 ; N uni0075 ; G 89 -U 118 ; WX 495 ; N uni0076 ; G 90 -U 119 ; WX 743 ; N uni0077 ; G 91 -U 120 ; WX 503 ; N uni0078 ; G 92 -U 121 ; WX 487 ; N uni0079 ; G 93 -U 122 ; WX 503 ; N uni007a ; G 94 -U 123 ; WX 335 ; N uni007b ; G 95 -U 124 ; WX 251 ; N uni007c ; G 96 -U 125 ; WX 335 ; N uni007d ; G 97 -U 126 ; WX 665 ; N uni007e ; G 98 -U 160 ; WX 249 ; N uni00a0 ; G 189 -U 161 ; WX 265 ; N uni00a1 ; G 99 -U 162 ; WX 561 ; N uni00a2 ; G 100 -U 163 ; WX 588 ; N uni00a3 ; G 101 -U 164 ; WX 702 ; N uni00a4 ; G 102 -U 165 ; WX 531 ; N uni00a5 ; G 103 -U 166 ; WX 248 ; N uni00a6 ; G 104 -U 167 ; WX 621 ; N uni00a7 ; G 105 -U 168 ; WX 440 ; N uni00a8 ; G 106 -U 169 ; WX 783 ; N uni00a9 ; G 107 -U 170 ; WX 446 ; N uni00aa ; G 108 -U 171 ; WX 485 ; N uni00ab ; G 109 -U 172 ; WX 553 ; N uni00ac ; G 110 -U 173 ; WX 328 ; N uni00ad ; G 190 -U 174 ; WX 783 ; N uni00ae ; G 111 -U 175 ; WX 482 ; N uni00af ; G 112 -U 176 ; WX 380 ; N uni00b0 ; G 113 -U 177 ; WX 536 ; N uni00b1 ; G 114 -U 178 ; WX 370 ; N uni00b2 ; G 115 -U 179 ; WX 370 ; N uni00b3 ; G 116 -U 180 ; WX 326 ; N uni00b4 ; G 117 -U 181 ; WX 591 ; N uni00b5 ; G 118 -U 182 ; WX 491 ; N uni00b6 ; G 119 -U 183 ; WX 282 ; N uni00b7 ; G 120 -U 184 ; WX 258 ; N uni00b8 ; G 121 -U 185 ; WX 370 ; N uni00b9 ; G 122 -U 186 ; WX 457 ; N uni00ba ; G 123 -U 187 ; WX 485 ; N uni00bb ; G 124 -U 188 ; WX 727 ; N uni00bc ; G 125 -U 189 ; WX 771 ; N uni00bd ; G 126 -U 190 ; WX 792 ; N uni00be ; G 127 -U 191 ; WX 486 ; N uni00bf ; G 128 -U 192 ; WX 666 ; N uni00c0 ; G 192 -U 193 ; WX 666 ; N uni00c1 ; G 193 -U 194 ; WX 666 ; N uni00c2 ; G 194 -U 195 ; WX 666 ; N uni00c3 ; G 195 -U 196 ; WX 666 ; N uni00c4 ; G 196 -U 197 ; WX 666 ; N uni00c5 ; G 197 -U 198 ; WX 940 ; N uni00c6 ; G 129 -U 199 ; WX 653 ; N uni00c7 ; G 198 -U 200 ; WX 565 ; N uni00c8 ; G 199 -U 201 ; WX 565 ; N uni00c9 ; G 200 -U 202 ; WX 565 ; N uni00ca ; G 201 -U 203 ; WX 565 ; N uni00cb ; G 202 -U 204 ; WX 282 ; N uni00cc ; G 203 -U 205 ; WX 282 ; N uni00cd ; G 204 -U 206 ; WX 282 ; N uni00ce ; G 205 -U 207 ; WX 282 ; N uni00cf ; G 206 -U 208 ; WX 668 ; N uni00d0 ; G 191 -U 209 ; WX 710 ; N uni00d1 ; G 207 -U 210 ; WX 690 ; N uni00d2 ; G 208 -U 211 ; WX 690 ; N uni00d3 ; G 209 -U 212 ; WX 690 ; N uni00d4 ; G 210 -U 213 ; WX 690 ; N uni00d5 ; G 211 -U 214 ; WX 690 ; N uni00d6 ; G 212 -U 215 ; WX 533 ; N uni00d7 ; G 130 -U 216 ; WX 689 ; N uni00d8 ; G 131 -U 217 ; WX 652 ; N uni00d9 ; G 213 -U 218 ; WX 652 ; N uni00da ; G 214 -U 219 ; WX 652 ; N uni00db ; G 215 -U 220 ; WX 652 ; N uni00dc ; G 216 -U 221 ; WX 609 ; N uni00dd ; G 217 -U 222 ; WX 599 ; N uni00de ; G 132 -U 223 ; WX 613 ; N uni00df ; G 133 -U 224 ; WX 541 ; N uni00e0 ; G 218 -U 225 ; WX 541 ; N uni00e1 ; G 219 -U 226 ; WX 541 ; N uni00e2 ; G 220 -U 227 ; WX 541 ; N uni00e3 ; G 221 -U 228 ; WX 541 ; N uni00e4 ; G 222 -U 229 ; WX 541 ; N uni00e5 ; G 223 -U 230 ; WX 844 ; N uni00e6 ; G 134 -U 231 ; WX 523 ; N uni00e7 ; G 224 -U 232 ; WX 537 ; N uni00e8 ; G 225 -U 233 ; WX 537 ; N uni00e9 ; G 226 -U 234 ; WX 537 ; N uni00ea ; G 227 -U 235 ; WX 537 ; N uni00eb ; G 228 -U 236 ; WX 263 ; N uni00ec ; G 229 -U 237 ; WX 263 ; N uni00ed ; G 230 -U 238 ; WX 263 ; N uni00ee ; G 231 -U 239 ; WX 263 ; N uni00ef ; G 232 -U 240 ; WX 582 ; N uni00f0 ; G 135 -U 241 ; WX 556 ; N uni00f1 ; G 233 -U 242 ; WX 569 ; N uni00f2 ; G 234 -U 243 ; WX 569 ; N uni00f3 ; G 235 -U 244 ; WX 569 ; N uni00f4 ; G 236 -U 245 ; WX 569 ; N uni00f5 ; G 237 -U 246 ; WX 569 ; N uni00f6 ; G 238 -U 247 ; WX 571 ; N uni00f7 ; G 136 -U 248 ; WX 566 ; N uni00f8 ; G 137 -U 249 ; WX 556 ; N uni00f9 ; G 239 -U 250 ; WX 556 ; N uni00fa ; G 240 -U 251 ; WX 556 ; N uni00fb ; G 241 -U 252 ; WX 556 ; N uni00fc ; G 242 -U 253 ; WX 487 ; N uni00fd ; G 243 -U 254 ; WX 574 ; N uni00fe ; G 138 -U 255 ; WX 487 ; N uni00ff ; G 244 -U 305 ; WX 263 ; N uni0131 ; G 139 -U 338 ; WX 963 ; N uni0152 ; G 140 -U 339 ; WX 903 ; N uni0153 ; G 141 -U 700 ; WX 217 ; N uni02bc ; G 247 -U 710 ; WX 487 ; N uni02c6 ; G 142 -U 730 ; WX 337 ; N uni02da ; G 143 -U 732 ; WX 480 ; N uni02dc ; G 144 -U 8194 ; WX 510 ; N uni2002 ; G 145 -U 8201 ; WX 204 ; N uni2009 ; G 146 -U 8203 ; WX 0 ; N uni200b ; G 148 -U 8211 ; WX 645 ; N uni2013 ; G 149 -U 8212 ; WX 773 ; N uni2014 ; G 150 -U 8216 ; WX 219 ; N uni2018 ; G 151 -U 8217 ; WX 217 ; N uni2019 ; G 152 -U 8218 ; WX 226 ; N uni201a ; G 153 -U 8220 ; WX 385 ; N uni201c ; G 154 -U 8221 ; WX 388 ; N uni201d ; G 155 -U 8222 ; WX 379 ; N uni201e ; G 156 -U 8226 ; WX 349 ; N uni2022 ; G 157 -U 8230 ; WX 706 ; N uni2026 ; G 158 -U 8242 ; WX 169 ; N uni2032 ; G 245 -U 8243 ; WX 324 ; N uni2033 ; G 246 -U 8249 ; WX 306 ; N uni2039 ; G 159 -U 8250 ; WX 301 ; N uni203a ; G 160 -U 8260 ; WX 451 ; N uni2044 ; G 161 -U 8308 ; WX 370 ; N uni2074 ; G 162 -U 8364 ; WX 568 ; N uni20ac ; G 163 -U 8482 ; WX 629 ; N uni2122 ; G 164 -U 8722 ; WX 564 ; N uni2212 ; G 165 -U 65279 ; WX 0 ; N unifeff ; G 170 -U 65533 ; WX 1026 ; N unifffd ; G 171 -EndCharMetrics -EndFontMetrics diff --git a/storage/fonts/roboto_bold_b915e443d033da031927fe8f39b8b856.ttf b/storage/fonts/roboto_bold_b915e443d033da031927fe8f39b8b856.ttf deleted file mode 100644 index ea06a63..0000000 Binary files a/storage/fonts/roboto_bold_b915e443d033da031927fe8f39b8b856.ttf and /dev/null differ diff --git a/storage/fonts/roboto_bold_b915e443d033da031927fe8f39b8b856.ufm b/storage/fonts/roboto_bold_b915e443d033da031927fe8f39b8b856.ufm deleted file mode 100644 index 981d2f6..0000000 --- a/storage/fonts/roboto_bold_b915e443d033da031927fe8f39b8b856.ufm +++ /dev/null @@ -1,248 +0,0 @@ -StartFontMetrics 4.1 -Notice Converted by PHP-font-lib -Comment https://github.com/PhenX/php-font-lib -EncodingScheme FontSpecific -Copyright Copyright 2011 Google Inc. All Rights Reserved. -FontName Roboto -FontSubfamily Bold -UniqueID Roboto Bold -FullName Roboto Bold -Version Version 2.137; 2017 -PostScriptName Roboto-Bold -LicenseURL http://www.apache.org/licenses/LICENSE-2.0 -Weight Bold -ItalicAngle 0 -IsFixedPitch false -UnderlineThickness 49 -UnderlinePosition -73 -FontHeightOffset 0 -Ascender 928 -Descender -244 -FontBBox -727 -271 1191 1056 -StartCharMetrics 248 -U 0 ; WX 0 ; N uni0000 ; G 1 -U 13 ; WX 249 ; N uni000d ; G 3 -U 32 ; WX 249 ; N uni0020 ; G 4 -U 33 ; WX 272 ; N uni0021 ; G 5 -U 34 ; WX 321 ; N uni0022 ; G 6 -U 35 ; WX 596 ; N uni0023 ; G 7 -U 36 ; WX 574 ; N uni0024 ; G 8 -U 37 ; WX 738 ; N uni0025 ; G 9 -U 38 ; WX 656 ; N uni0026 ; G 10 -U 39 ; WX 162 ; N uni0027 ; G 11 -U 40 ; WX 351 ; N uni0028 ; G 12 -U 41 ; WX 353 ; N uni0029 ; G 13 -U 42 ; WX 453 ; N uni002a ; G 14 -U 43 ; WX 546 ; N uni002b ; G 15 -U 44 ; WX 244 ; N uni002c ; G 16 -U 45 ; WX 388 ; N uni002d ; G 17 -U 46 ; WX 291 ; N uni002e ; G 18 -U 47 ; WX 374 ; N uni002f ; G 19 -U 48 ; WX 574 ; N uni0030 ; G 20 -U 49 ; WX 574 ; N uni0031 ; G 21 -U 50 ; WX 574 ; N uni0032 ; G 22 -U 51 ; WX 574 ; N uni0033 ; G 23 -U 52 ; WX 574 ; N uni0034 ; G 24 -U 53 ; WX 574 ; N uni0035 ; G 25 -U 54 ; WX 574 ; N uni0036 ; G 26 -U 55 ; WX 574 ; N uni0037 ; G 27 -U 56 ; WX 574 ; N uni0038 ; G 28 -U 57 ; WX 574 ; N uni0039 ; G 29 -U 58 ; WX 282 ; N uni003a ; G 30 -U 59 ; WX 262 ; N uni003b ; G 31 -U 60 ; WX 509 ; N uni003c ; G 32 -U 61 ; WX 572 ; N uni003d ; G 33 -U 62 ; WX 517 ; N uni003e ; G 34 -U 63 ; WX 498 ; N uni003f ; G 35 -U 64 ; WX 895 ; N uni0040 ; G 36 -U 65 ; WX 673 ; N uni0041 ; G 37 -U 66 ; WX 638 ; N uni0042 ; G 38 -U 67 ; WX 654 ; N uni0043 ; G 39 -U 68 ; WX 650 ; N uni0044 ; G 40 -U 69 ; WX 563 ; N uni0045 ; G 41 -U 70 ; WX 548 ; N uni0046 ; G 42 -U 71 ; WX 681 ; N uni0047 ; G 43 -U 72 ; WX 707 ; N uni0048 ; G 44 -U 73 ; WX 292 ; N uni0049 ; G 45 -U 74 ; WX 559 ; N uni004a ; G 46 -U 75 ; WX 635 ; N uni004b ; G 47 -U 76 ; WX 542 ; N uni004c ; G 48 -U 77 ; WX 876 ; N uni004d ; G 49 -U 78 ; WX 706 ; N uni004e ; G 50 -U 79 ; WX 690 ; N uni004f ; G 51 -U 80 ; WX 645 ; N uni0050 ; G 52 -U 81 ; WX 690 ; N uni0051 ; G 53 -U 82 ; WX 638 ; N uni0052 ; G 54 -U 83 ; WX 615 ; N uni0053 ; G 55 -U 84 ; WX 619 ; N uni0054 ; G 56 -U 85 ; WX 658 ; N uni0055 ; G 57 -U 86 ; WX 654 ; N uni0056 ; G 58 -U 87 ; WX 875 ; N uni0057 ; G 59 -U 88 ; WX 635 ; N uni0058 ; G 60 -U 89 ; WX 618 ; N uni0059 ; G 61 -U 90 ; WX 606 ; N uni005a ; G 62 -U 91 ; WX 278 ; N uni005b ; G 63 -U 92 ; WX 422 ; N uni005c ; G 64 -U 93 ; WX 278 ; N uni005d ; G 65 -U 94 ; WX 437 ; N uni005e ; G 66 -U 95 ; WX 446 ; N uni005f ; G 67 -U 96 ; WX 331 ; N uni0060 ; G 68 -U 97 ; WX 536 ; N uni0061 ; G 69 -U 98 ; WX 563 ; N uni0062 ; G 70 -U 99 ; WX 521 ; N uni0063 ; G 71 -U 100 ; WX 563 ; N uni0064 ; G 72 -U 101 ; WX 541 ; N uni0065 ; G 73 -U 102 ; WX 358 ; N uni0066 ; G 74 -U 103 ; WX 571 ; N uni0067 ; G 75 -U 104 ; WX 560 ; N uni0068 ; G 76 -U 105 ; WX 265 ; N uni0069 ; G 77 -U 106 ; WX 260 ; N uni006a ; G 78 -U 107 ; WX 534 ; N uni006b ; G 79 -U 108 ; WX 265 ; N uni006c ; G 80 -U 109 ; WX 866 ; N uni006d ; G 81 -U 110 ; WX 560 ; N uni006e ; G 82 -U 111 ; WX 565 ; N uni006f ; G 83 -U 112 ; WX 563 ; N uni0070 ; G 84 -U 113 ; WX 565 ; N uni0071 ; G 85 -U 114 ; WX 365 ; N uni0072 ; G 86 -U 115 ; WX 514 ; N uni0073 ; G 87 -U 116 ; WX 338 ; N uni0074 ; G 88 -U 117 ; WX 560 ; N uni0075 ; G 89 -U 118 ; WX 505 ; N uni0076 ; G 90 -U 119 ; WX 735 ; N uni0077 ; G 91 -U 120 ; WX 509 ; N uni0078 ; G 92 -U 121 ; WX 502 ; N uni0079 ; G 93 -U 122 ; WX 509 ; N uni007a ; G 94 -U 123 ; WX 330 ; N uni007b ; G 95 -U 124 ; WX 253 ; N uni007c ; G 96 -U 125 ; WX 330 ; N uni007d ; G 97 -U 126 ; WX 648 ; N uni007e ; G 98 -U 160 ; WX 249 ; N uni00a0 ; G 189 -U 161 ; WX 282 ; N uni00a1 ; G 99 -U 162 ; WX 575 ; N uni00a2 ; G 100 -U 163 ; WX 594 ; N uni00a3 ; G 101 -U 164 ; WX 692 ; N uni00a4 ; G 102 -U 165 ; WX 536 ; N uni00a5 ; G 103 -U 166 ; WX 252 ; N uni00a6 ; G 104 -U 167 ; WX 628 ; N uni00a7 ; G 105 -U 168 ; WX 467 ; N uni00a8 ; G 106 -U 169 ; WX 784 ; N uni00a9 ; G 107 -U 170 ; WX 444 ; N uni00aa ; G 108 -U 171 ; WX 500 ; N uni00ab ; G 109 -U 172 ; WX 551 ; N uni00ac ; G 110 -U 173 ; WX 388 ; N uni00ad ; G 190 -U 174 ; WX 784 ; N uni00ae ; G 111 -U 175 ; WX 501 ; N uni00af ; G 112 -U 176 ; WX 388 ; N uni00b0 ; G 113 -U 177 ; WX 537 ; N uni00b1 ; G 114 -U 178 ; WX 373 ; N uni00b2 ; G 115 -U 179 ; WX 373 ; N uni00b3 ; G 116 -U 180 ; WX 332 ; N uni00b4 ; G 117 -U 181 ; WX 616 ; N uni00b5 ; G 118 -U 182 ; WX 490 ; N uni00b6 ; G 119 -U 183 ; WX 301 ; N uni00b7 ; G 120 -U 184 ; WX 268 ; N uni00b8 ; G 121 -U 185 ; WX 373 ; N uni00b9 ; G 122 -U 186 ; WX 457 ; N uni00ba ; G 123 -U 187 ; WX 500 ; N uni00bb ; G 124 -U 188 ; WX 718 ; N uni00bc ; G 125 -U 189 ; WX 761 ; N uni00bd ; G 126 -U 190 ; WX 808 ; N uni00be ; G 127 -U 191 ; WX 498 ; N uni00bf ; G 128 -U 192 ; WX 673 ; N uni00c0 ; G 192 -U 193 ; WX 673 ; N uni00c1 ; G 193 -U 194 ; WX 673 ; N uni00c2 ; G 194 -U 195 ; WX 673 ; N uni00c3 ; G 195 -U 196 ; WX 673 ; N uni00c4 ; G 196 -U 197 ; WX 673 ; N uni00c5 ; G 197 -U 198 ; WX 940 ; N uni00c6 ; G 129 -U 199 ; WX 654 ; N uni00c7 ; G 198 -U 200 ; WX 563 ; N uni00c8 ; G 199 -U 201 ; WX 563 ; N uni00c9 ; G 200 -U 202 ; WX 563 ; N uni00ca ; G 201 -U 203 ; WX 563 ; N uni00cb ; G 202 -U 204 ; WX 292 ; N uni00cc ; G 203 -U 205 ; WX 292 ; N uni00cd ; G 204 -U 206 ; WX 292 ; N uni00ce ; G 205 -U 207 ; WX 292 ; N uni00cf ; G 206 -U 208 ; WX 665 ; N uni00d0 ; G 191 -U 209 ; WX 706 ; N uni00d1 ; G 207 -U 210 ; WX 690 ; N uni00d2 ; G 208 -U 211 ; WX 690 ; N uni00d3 ; G 209 -U 212 ; WX 690 ; N uni00d4 ; G 210 -U 213 ; WX 690 ; N uni00d5 ; G 211 -U 214 ; WX 690 ; N uni00d6 ; G 212 -U 215 ; WX 531 ; N uni00d7 ; G 130 -U 216 ; WX 689 ; N uni00d8 ; G 131 -U 217 ; WX 658 ; N uni00d9 ; G 213 -U 218 ; WX 658 ; N uni00da ; G 214 -U 219 ; WX 658 ; N uni00db ; G 215 -U 220 ; WX 658 ; N uni00dc ; G 216 -U 221 ; WX 618 ; N uni00dd ; G 217 -U 222 ; WX 608 ; N uni00de ; G 132 -U 223 ; WX 631 ; N uni00df ; G 133 -U 224 ; WX 536 ; N uni00e0 ; G 218 -U 225 ; WX 536 ; N uni00e1 ; G 219 -U 226 ; WX 536 ; N uni00e2 ; G 220 -U 227 ; WX 536 ; N uni00e3 ; G 221 -U 228 ; WX 536 ; N uni00e4 ; G 222 -U 229 ; WX 536 ; N uni00e5 ; G 223 -U 230 ; WX 844 ; N uni00e6 ; G 134 -U 231 ; WX 521 ; N uni00e7 ; G 224 -U 232 ; WX 541 ; N uni00e8 ; G 225 -U 233 ; WX 541 ; N uni00e9 ; G 226 -U 234 ; WX 541 ; N uni00ea ; G 227 -U 235 ; WX 541 ; N uni00eb ; G 228 -U 236 ; WX 274 ; N uni00ec ; G 229 -U 237 ; WX 274 ; N uni00ed ; G 230 -U 238 ; WX 274 ; N uni00ee ; G 231 -U 239 ; WX 274 ; N uni00ef ; G 232 -U 240 ; WX 575 ; N uni00f0 ; G 135 -U 241 ; WX 560 ; N uni00f1 ; G 233 -U 242 ; WX 565 ; N uni00f2 ; G 234 -U 243 ; WX 565 ; N uni00f3 ; G 235 -U 244 ; WX 565 ; N uni00f4 ; G 236 -U 245 ; WX 565 ; N uni00f5 ; G 237 -U 246 ; WX 565 ; N uni00f6 ; G 238 -U 247 ; WX 570 ; N uni00f7 ; G 136 -U 248 ; WX 564 ; N uni00f8 ; G 137 -U 249 ; WX 560 ; N uni00f9 ; G 239 -U 250 ; WX 560 ; N uni00fa ; G 240 -U 251 ; WX 560 ; N uni00fb ; G 241 -U 252 ; WX 560 ; N uni00fc ; G 242 -U 253 ; WX 502 ; N uni00fd ; G 243 -U 254 ; WX 567 ; N uni00fe ; G 138 -U 255 ; WX 502 ; N uni00ff ; G 244 -U 305 ; WX 274 ; N uni0131 ; G 139 -U 338 ; WX 968 ; N uni0152 ; G 140 -U 339 ; WX 902 ; N uni0153 ; G 141 -U 700 ; WX 229 ; N uni02bc ; G 247 -U 710 ; WX 496 ; N uni02c6 ; G 142 -U 730 ; WX 333 ; N uni02da ; G 143 -U 732 ; WX 481 ; N uni02dc ; G 144 -U 8194 ; WX 510 ; N uni2002 ; G 145 -U 8201 ; WX 204 ; N uni2009 ; G 146 -U 8203 ; WX 0 ; N uni200b ; G 148 -U 8211 ; WX 632 ; N uni2013 ; G 149 -U 8212 ; WX 763 ; N uni2014 ; G 150 -U 8216 ; WX 234 ; N uni2018 ; G 151 -U 8217 ; WX 229 ; N uni2019 ; G 152 -U 8218 ; WX 248 ; N uni201a ; G 153 -U 8220 ; WX 406 ; N uni201c ; G 154 -U 8221 ; WX 409 ; N uni201d ; G 155 -U 8222 ; WX 403 ; N uni201e ; G 156 -U 8226 ; WX 359 ; N uni2022 ; G 157 -U 8230 ; WX 740 ; N uni2026 ; G 158 -U 8242 ; WX 162 ; N uni2032 ; G 245 -U 8243 ; WX 321 ; N uni2033 ; G 246 -U 8249 ; WX 312 ; N uni2039 ; G 159 -U 8250 ; WX 302 ; N uni203a ; G 160 -U 8260 ; WX 446 ; N uni2044 ; G 161 -U 8308 ; WX 373 ; N uni2074 ; G 162 -U 8364 ; WX 574 ; N uni20ac ; G 163 -U 8482 ; WX 631 ; N uni2122 ; G 164 -U 8722 ; WX 556 ; N uni2212 ; G 165 -U 65279 ; WX 0 ; N unifeff ; G 170 -U 65533 ; WX 1026 ; N unifffd ; G 171 -EndCharMetrics -EndFontMetrics diff --git a/storage/fonts/roboto_bold_b915e443d033da031927fe8f39b8b856.ufm.json b/storage/fonts/roboto_bold_b915e443d033da031927fe8f39b8b856.ufm.json deleted file mode 100644 index fd4fd83..0000000 --- a/storage/fonts/roboto_bold_b915e443d033da031927fe8f39b8b856.ufm.json +++ /dev/null @@ -1,478 +0,0 @@ -{ - "codeToName": { - "0": "uni0000", - "13": "uni000d", - "32": "uni0020", - "33": "uni0021", - "34": "uni0022", - "35": "uni0023", - "36": "uni0024", - "37": "uni0025", - "38": "uni0026", - "39": "uni0027", - "40": "uni0028", - "41": "uni0029", - "42": "uni002a", - "43": "uni002b", - "44": "uni002c", - "45": "uni002d", - "46": "uni002e", - "47": "uni002f", - "48": "uni0030", - "49": "uni0031", - "50": "uni0032", - "51": "uni0033", - "52": "uni0034", - "53": "uni0035", - "54": "uni0036", - "55": "uni0037", - "56": "uni0038", - "57": "uni0039", - "58": "uni003a", - "59": "uni003b", - "60": "uni003c", - "61": "uni003d", - "62": "uni003e", - "63": "uni003f", - "64": "uni0040", - "65": "uni0041", - "66": "uni0042", - "67": "uni0043", - "68": "uni0044", - "69": "uni0045", - "70": "uni0046", - "71": "uni0047", - "72": "uni0048", - "73": "uni0049", - "74": "uni004a", - "75": "uni004b", - "76": "uni004c", - "77": "uni004d", - "78": "uni004e", - "79": "uni004f", - "80": "uni0050", - "81": "uni0051", - "82": "uni0052", - "83": "uni0053", - "84": "uni0054", - "85": "uni0055", - "86": "uni0056", - "87": "uni0057", - "88": "uni0058", - "89": "uni0059", - "90": "uni005a", - "91": "uni005b", - "92": "uni005c", - "93": "uni005d", - "94": "uni005e", - "95": "uni005f", - "96": "uni0060", - "97": "uni0061", - "98": "uni0062", - "99": "uni0063", - "100": "uni0064", - "101": "uni0065", - "102": "uni0066", - "103": "uni0067", - "104": "uni0068", - "105": "uni0069", - "106": "uni006a", - "107": "uni006b", - "108": "uni006c", - "109": "uni006d", - "110": "uni006e", - "111": "uni006f", - "112": "uni0070", - "113": "uni0071", - "114": "uni0072", - "115": "uni0073", - "116": "uni0074", - "117": "uni0075", - "118": "uni0076", - "119": "uni0077", - "120": "uni0078", - "121": "uni0079", - "122": "uni007a", - "123": "uni007b", - "124": "uni007c", - "125": "uni007d", - "126": "uni007e", - "160": "uni00a0", - "161": "uni00a1", - "162": "uni00a2", - "163": "uni00a3", - "164": "uni00a4", - "165": "uni00a5", - "166": "uni00a6", - "167": "uni00a7", - "168": "uni00a8", - "169": "uni00a9", - "170": "uni00aa", - "171": "uni00ab", - "172": "uni00ac", - "173": "uni00ad", - "174": "uni00ae", - "175": "uni00af", - "176": "uni00b0", - "177": "uni00b1", - "178": "uni00b2", - "179": "uni00b3", - "180": "uni00b4", - "181": "uni00b5", - "182": "uni00b6", - "183": "uni00b7", - "184": "uni00b8", - "185": "uni00b9", - "186": "uni00ba", - "187": "uni00bb", - "188": "uni00bc", - "189": "uni00bd", - "190": "uni00be", - "191": "uni00bf", - "192": "uni00c0", - "193": "uni00c1", - "194": "uni00c2", - "195": "uni00c3", - "196": "uni00c4", - "197": "uni00c5", - "198": "uni00c6", - "199": "uni00c7", - "200": "uni00c8", - "201": "uni00c9", - "202": "uni00ca", - "203": "uni00cb", - "204": "uni00cc", - "205": "uni00cd", - "206": "uni00ce", - "207": "uni00cf", - "208": "uni00d0", - "209": "uni00d1", - "210": "uni00d2", - "211": "uni00d3", - "212": "uni00d4", - "213": "uni00d5", - "214": "uni00d6", - "215": "uni00d7", - "216": "uni00d8", - "217": "uni00d9", - "218": "uni00da", - "219": "uni00db", - "220": "uni00dc", - "221": "uni00dd", - "222": "uni00de", - "223": "uni00df", - "224": "uni00e0", - "225": "uni00e1", - "226": "uni00e2", - "227": "uni00e3", - "228": "uni00e4", - "229": "uni00e5", - "230": "uni00e6", - "231": "uni00e7", - "232": "uni00e8", - "233": "uni00e9", - "234": "uni00ea", - "235": "uni00eb", - "236": "uni00ec", - "237": "uni00ed", - "238": "uni00ee", - "239": "uni00ef", - "240": "uni00f0", - "241": "uni00f1", - "242": "uni00f2", - "243": "uni00f3", - "244": "uni00f4", - "245": "uni00f5", - "246": "uni00f6", - "247": "uni00f7", - "248": "uni00f8", - "249": "uni00f9", - "250": "uni00fa", - "251": "uni00fb", - "252": "uni00fc", - "253": "uni00fd", - "254": "uni00fe", - "255": "uni00ff", - "305": "uni0131", - "338": "uni0152", - "339": "uni0153", - "700": "uni02bc", - "710": "uni02c6", - "730": "uni02da", - "732": "uni02dc", - "8194": "uni2002", - "8201": "uni2009", - "8203": "uni200b", - "8211": "uni2013", - "8212": "uni2014", - "8216": "uni2018", - "8217": "uni2019", - "8218": "uni201a", - "8220": "uni201c", - "8221": "uni201d", - "8222": "uni201e", - "8226": "uni2022", - "8230": "uni2026", - "8242": "uni2032", - "8243": "uni2033", - "8249": "uni2039", - "8250": "uni203a", - "8260": "uni2044", - "8308": "uni2074", - "8364": "uni20ac", - "8482": "uni2122", - "8722": "uni2212", - "65279": "unifeff", - "65533": "unifffd" - }, - "isUnicode": true, - "EncodingScheme": "FontSpecific", - "FontName": "Roboto", - "FullName": "Roboto Bold", - "Version": "Version 2.137; 2017", - "PostScriptName": "Roboto-Bold", - "Weight": "Bold", - "ItalicAngle": "0", - "IsFixedPitch": "false", - "UnderlineThickness": "49", - "UnderlinePosition": "-73", - "FontHeightOffset": "0", - "Ascender": "928", - "Descender": "-244", - "FontBBox": [ - "-727", - "-271", - "1191", - "1056" - ], - "StartCharMetrics": "248", - "C": { - "0": 0, - "13": 249, - "32": 249, - "33": 272, - "34": 321, - "35": 596, - "36": 574, - "37": 738, - "38": 656, - "39": 162, - "40": 351, - "41": 353, - "42": 453, - "43": 546, - "44": 244, - "45": 388, - "46": 291, - "47": 374, - "48": 574, - "49": 574, - "50": 574, - "51": 574, - "52": 574, - "53": 574, - "54": 574, - "55": 574, - "56": 574, - "57": 574, - "58": 282, - "59": 262, - "60": 509, - "61": 572, - "62": 517, - "63": 498, - "64": 895, - "65": 673, - "66": 638, - "67": 654, - "68": 650, - "69": 563, - "70": 548, - "71": 681, - "72": 707, - "73": 292, - "74": 559, - "75": 635, - "76": 542, - "77": 876, - "78": 706, - "79": 690, - "80": 645, - "81": 690, - "82": 638, - "83": 615, - "84": 619, - "85": 658, - "86": 654, - "87": 875, - "88": 635, - "89": 618, - "90": 606, - "91": 278, - "92": 422, - "93": 278, - "94": 437, - "95": 446, - "96": 331, - "97": 536, - "98": 563, - "99": 521, - "100": 563, - "101": 541, - "102": 358, - "103": 571, - "104": 560, - "105": 265, - "106": 260, - "107": 534, - "108": 265, - "109": 866, - "110": 560, - "111": 565, - "112": 563, - "113": 565, - "114": 365, - "115": 514, - "116": 338, - "117": 560, - "118": 505, - "119": 735, - "120": 509, - "121": 502, - "122": 509, - "123": 330, - "124": 253, - "125": 330, - "126": 648, - "160": 249, - "161": 282, - "162": 575, - "163": 594, - "164": 692, - "165": 536, - "166": 252, - "167": 628, - "168": 467, - "169": 784, - "170": 444, - "171": 500, - "172": 551, - "173": 388, - "174": 784, - "175": 501, - "176": 388, - "177": 537, - "178": 373, - "179": 373, - "180": 332, - "181": 616, - "182": 490, - "183": 301, - "184": 268, - "185": 373, - "186": 457, - "187": 500, - "188": 718, - "189": 761, - "190": 808, - "191": 498, - "192": 673, - "193": 673, - "194": 673, - "195": 673, - "196": 673, - "197": 673, - "198": 940, - "199": 654, - "200": 563, - "201": 563, - "202": 563, - "203": 563, - "204": 292, - "205": 292, - "206": 292, - "207": 292, - "208": 665, - "209": 706, - "210": 690, - "211": 690, - "212": 690, - "213": 690, - "214": 690, - "215": 531, - "216": 689, - "217": 658, - "218": 658, - "219": 658, - "220": 658, - "221": 618, - "222": 608, - "223": 631, - "224": 536, - "225": 536, - "226": 536, - "227": 536, - "228": 536, - "229": 536, - "230": 844, - "231": 521, - "232": 541, - "233": 541, - "234": 541, - "235": 541, - "236": 274, - "237": 274, - "238": 274, - "239": 274, - "240": 575, - "241": 560, - "242": 565, - "243": 565, - "244": 565, - "245": 565, - "246": 565, - "247": 570, - "248": 564, - "249": 560, - "250": 560, - "251": 560, - "252": 560, - "253": 502, - "254": 567, - "255": 502, - "305": 274, - "338": 968, - "339": 902, - "700": 229, - "710": 496, - "730": 333, - "732": 481, - "8194": 510, - "8201": 204, - "8203": 0, - "8211": 632, - "8212": 763, - "8216": 234, - "8217": 229, - "8218": 248, - "8220": 406, - "8221": 409, - "8222": 403, - "8226": 359, - "8230": 740, - "8242": 162, - "8243": 321, - "8249": 312, - "8250": 302, - "8260": 446, - "8308": 373, - "8364": 574, - "8482": 631, - "8722": 556, - "65279": 0, - "65533": 1026 - }, - "CIDtoGID_Compressed": true, - "CIDtoGID": "eJzt0FPPYGcYhtGrqW3btm3btm3bZmrzpP0NtW3btk47TeZgOplpJ+1MvyZdK3n362ffezdawzP6cHeGNEZjNlZjN07jNl7jN0ETNlETN0mTNlmTN0VTNlVTN03TNl3TN0MzNlMzN0uzNluzN0dzNldzN0\/zNl\/zt0ALtlALt0iLtliLt0RLtlRLt0zLtlzLt0IrtlIrt0qrtlqrt0ZrtlZrt07rtl7rt0EbtlEbt0mbtlmbt0VbtlVbt03btl3bt0M7tlM7t0u7ttsIfeGfu7vd26M926u926d926\/9O6ADO6h7OrhDOrTDOrwjOrKjOrpjOrbjOr4TOrGTOrlTuq\/7e6AHe6iHO7VHerTHerwnerKnerpnurdne67ne6EXe6nTOr2Xe6VXe63XO6Mze6M3e6u3e6d3O6v3er8P+rCP+rhP+rTPOrvP+6Iv+6qv+6ZzOrdv+67v+6EfO6+fRsIf+Cvn\/+MKF3ThSMgB\/x2\/DmPtohG8e\/GgdsnIiwIAAAAAAAAAAAAAAAAAwH\/MpX+YXTaoXT7UiSu6cvDoqq7umkH9tV3X9YPXbhjc3zic+j\/3yxCzm7p5GGduGeG0f8+to7j+0G77l983kG4f6ACMUncMdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\/mfuHOgADJi7fn\/8Bsu+aH4=", - "_version_": 6 -} \ No newline at end of file diff --git a/storage/fonts/roboto_bold_99297763247149b794ebaeda781037cd.ttf b/storage/fonts/roboto_bold_d8a5500bace8c7ad9b0027b9450cfc52.ttf old mode 100644 new mode 100755 similarity index 100% rename from storage/fonts/roboto_bold_99297763247149b794ebaeda781037cd.ttf rename to storage/fonts/roboto_bold_d8a5500bace8c7ad9b0027b9450cfc52.ttf diff --git a/storage/fonts/roboto_bold_99297763247149b794ebaeda781037cd.ufm b/storage/fonts/roboto_bold_d8a5500bace8c7ad9b0027b9450cfc52.ufm old mode 100644 new mode 100755 similarity index 100% rename from storage/fonts/roboto_bold_99297763247149b794ebaeda781037cd.ufm rename to storage/fonts/roboto_bold_d8a5500bace8c7ad9b0027b9450cfc52.ufm diff --git a/storage/fonts/roboto_bold_99297763247149b794ebaeda781037cd.ufm.php b/storage/fonts/roboto_bold_d8a5500bace8c7ad9b0027b9450cfc52.ufm.php old mode 100644 new mode 100755 similarity index 100% rename from storage/fonts/roboto_bold_99297763247149b794ebaeda781037cd.ufm.php rename to storage/fonts/roboto_bold_d8a5500bace8c7ad9b0027b9450cfc52.ufm.php diff --git a/storage/fonts/roboto_normal_0b05025fa87afc0a2692736d55437e3e.ttf b/storage/fonts/roboto_normal_75cc3fda36c0aa28c6afd265b6da53c3.ttf old mode 100644 new mode 100755 similarity index 100% rename from storage/fonts/roboto_normal_0b05025fa87afc0a2692736d55437e3e.ttf rename to storage/fonts/roboto_normal_75cc3fda36c0aa28c6afd265b6da53c3.ttf diff --git a/storage/fonts/roboto_normal_0b05025fa87afc0a2692736d55437e3e.ufm b/storage/fonts/roboto_normal_75cc3fda36c0aa28c6afd265b6da53c3.ufm old mode 100644 new mode 100755 similarity index 100% rename from storage/fonts/roboto_normal_0b05025fa87afc0a2692736d55437e3e.ufm rename to storage/fonts/roboto_normal_75cc3fda36c0aa28c6afd265b6da53c3.ufm diff --git a/storage/fonts/roboto_normal_0b05025fa87afc0a2692736d55437e3e.ufm.php b/storage/fonts/roboto_normal_75cc3fda36c0aa28c6afd265b6da53c3.ufm.php old mode 100644 new mode 100755 similarity index 100% rename from storage/fonts/roboto_normal_0b05025fa87afc0a2692736d55437e3e.ufm.php rename to storage/fonts/roboto_normal_75cc3fda36c0aa28c6afd265b6da53c3.ufm.php diff --git a/storage/fonts/roboto_normal_db728720271025e5118179e1b242240f.ttf b/storage/fonts/roboto_normal_db728720271025e5118179e1b242240f.ttf deleted file mode 100644 index a97385d..0000000 Binary files a/storage/fonts/roboto_normal_db728720271025e5118179e1b242240f.ttf and /dev/null differ diff --git a/storage/fonts/roboto_normal_db728720271025e5118179e1b242240f.ufm b/storage/fonts/roboto_normal_db728720271025e5118179e1b242240f.ufm deleted file mode 100644 index 7c0be08..0000000 --- a/storage/fonts/roboto_normal_db728720271025e5118179e1b242240f.ufm +++ /dev/null @@ -1,248 +0,0 @@ -StartFontMetrics 4.1 -Notice Converted by PHP-font-lib -Comment https://github.com/PhenX/php-font-lib -EncodingScheme FontSpecific -Copyright Copyright 2011 Google Inc. All Rights Reserved. -FontName Roboto -FontSubfamily Regular -UniqueID Roboto -FullName Roboto -Version Version 2.137; 2017 -PostScriptName Roboto-Regular -LicenseURL http://www.apache.org/licenses/LICENSE-2.0 -Weight Medium -ItalicAngle 0 -IsFixedPitch false -UnderlineThickness 49 -UnderlinePosition -73 -FontHeightOffset 0 -Ascender 928 -Descender -244 -FontBBox -737 -271 1148 1056 -StartCharMetrics 248 -U 0 ; WX 0 ; N uni0000 ; G 1 -U 13 ; WX 248 ; N uni000d ; G 3 -U 32 ; WX 248 ; N uni0020 ; G 4 -U 33 ; WX 257 ; N uni0021 ; G 5 -U 34 ; WX 320 ; N uni0022 ; G 6 -U 35 ; WX 616 ; N uni0023 ; G 7 -U 36 ; WX 562 ; N uni0024 ; G 8 -U 37 ; WX 732 ; N uni0025 ; G 9 -U 38 ; WX 622 ; N uni0026 ; G 10 -U 39 ; WX 174 ; N uni0027 ; G 11 -U 40 ; WX 342 ; N uni0028 ; G 12 -U 41 ; WX 348 ; N uni0029 ; G 13 -U 42 ; WX 431 ; N uni002a ; G 14 -U 43 ; WX 567 ; N uni002b ; G 15 -U 44 ; WX 196 ; N uni002c ; G 16 -U 45 ; WX 276 ; N uni002d ; G 17 -U 46 ; WX 263 ; N uni002e ; G 18 -U 47 ; WX 412 ; N uni002f ; G 19 -U 48 ; WX 562 ; N uni0030 ; G 20 -U 49 ; WX 562 ; N uni0031 ; G 21 -U 50 ; WX 562 ; N uni0032 ; G 22 -U 51 ; WX 562 ; N uni0033 ; G 23 -U 52 ; WX 562 ; N uni0034 ; G 24 -U 53 ; WX 562 ; N uni0035 ; G 25 -U 54 ; WX 562 ; N uni0036 ; G 26 -U 55 ; WX 562 ; N uni0037 ; G 27 -U 56 ; WX 562 ; N uni0038 ; G 28 -U 57 ; WX 562 ; N uni0039 ; G 29 -U 58 ; WX 242 ; N uni003a ; G 30 -U 59 ; WX 211 ; N uni003b ; G 31 -U 60 ; WX 508 ; N uni003c ; G 32 -U 61 ; WX 549 ; N uni003d ; G 33 -U 62 ; WX 522 ; N uni003e ; G 34 -U 63 ; WX 472 ; N uni003f ; G 35 -U 64 ; WX 898 ; N uni0040 ; G 36 -U 65 ; WX 652 ; N uni0041 ; G 37 -U 66 ; WX 623 ; N uni0042 ; G 38 -U 67 ; WX 651 ; N uni0043 ; G 39 -U 68 ; WX 656 ; N uni0044 ; G 40 -U 69 ; WX 568 ; N uni0045 ; G 41 -U 70 ; WX 553 ; N uni0046 ; G 42 -U 71 ; WX 681 ; N uni0047 ; G 43 -U 72 ; WX 713 ; N uni0048 ; G 44 -U 73 ; WX 272 ; N uni0049 ; G 45 -U 74 ; WX 552 ; N uni004a ; G 46 -U 75 ; WX 627 ; N uni004b ; G 47 -U 76 ; WX 538 ; N uni004c ; G 48 -U 77 ; WX 873 ; N uni004d ; G 49 -U 78 ; WX 713 ; N uni004e ; G 50 -U 79 ; WX 688 ; N uni004f ; G 51 -U 80 ; WX 631 ; N uni0050 ; G 52 -U 81 ; WX 688 ; N uni0051 ; G 53 -U 82 ; WX 616 ; N uni0052 ; G 54 -U 83 ; WX 593 ; N uni0053 ; G 55 -U 84 ; WX 597 ; N uni0054 ; G 56 -U 85 ; WX 648 ; N uni0055 ; G 57 -U 86 ; WX 636 ; N uni0056 ; G 58 -U 87 ; WX 887 ; N uni0057 ; G 59 -U 88 ; WX 627 ; N uni0058 ; G 60 -U 89 ; WX 601 ; N uni0059 ; G 61 -U 90 ; WX 599 ; N uni005a ; G 62 -U 91 ; WX 265 ; N uni005b ; G 63 -U 92 ; WX 410 ; N uni005c ; G 64 -U 93 ; WX 265 ; N uni005d ; G 65 -U 94 ; WX 418 ; N uni005e ; G 66 -U 95 ; WX 451 ; N uni005f ; G 67 -U 96 ; WX 309 ; N uni0060 ; G 68 -U 97 ; WX 544 ; N uni0061 ; G 69 -U 98 ; WX 561 ; N uni0062 ; G 70 -U 99 ; WX 523 ; N uni0063 ; G 71 -U 100 ; WX 564 ; N uni0064 ; G 72 -U 101 ; WX 530 ; N uni0065 ; G 73 -U 102 ; WX 347 ; N uni0066 ; G 74 -U 103 ; WX 561 ; N uni0067 ; G 75 -U 104 ; WX 551 ; N uni0068 ; G 76 -U 105 ; WX 243 ; N uni0069 ; G 77 -U 106 ; WX 239 ; N uni006a ; G 78 -U 107 ; WX 507 ; N uni006b ; G 79 -U 108 ; WX 243 ; N uni006c ; G 80 -U 109 ; WX 876 ; N uni006d ; G 81 -U 110 ; WX 552 ; N uni006e ; G 82 -U 111 ; WX 570 ; N uni006f ; G 83 -U 112 ; WX 561 ; N uni0070 ; G 84 -U 113 ; WX 568 ; N uni0071 ; G 85 -U 114 ; WX 338 ; N uni0072 ; G 86 -U 115 ; WX 516 ; N uni0073 ; G 87 -U 116 ; WX 327 ; N uni0074 ; G 88 -U 117 ; WX 551 ; N uni0075 ; G 89 -U 118 ; WX 484 ; N uni0076 ; G 90 -U 119 ; WX 751 ; N uni0077 ; G 91 -U 120 ; WX 496 ; N uni0078 ; G 92 -U 121 ; WX 473 ; N uni0079 ; G 93 -U 122 ; WX 496 ; N uni007a ; G 94 -U 123 ; WX 338 ; N uni007b ; G 95 -U 124 ; WX 244 ; N uni007c ; G 96 -U 125 ; WX 338 ; N uni007d ; G 97 -U 126 ; WX 680 ; N uni007e ; G 98 -U 160 ; WX 248 ; N uni00a0 ; G 189 -U 161 ; WX 244 ; N uni00a1 ; G 99 -U 162 ; WX 547 ; N uni00a2 ; G 100 -U 163 ; WX 581 ; N uni00a3 ; G 101 -U 164 ; WX 713 ; N uni00a4 ; G 102 -U 165 ; WX 525 ; N uni00a5 ; G 103 -U 166 ; WX 240 ; N uni00a6 ; G 104 -U 167 ; WX 613 ; N uni00a7 ; G 105 -U 168 ; WX 418 ; N uni00a8 ; G 106 -U 169 ; WX 786 ; N uni00a9 ; G 107 -U 170 ; WX 447 ; N uni00aa ; G 108 -U 171 ; WX 469 ; N uni00ab ; G 109 -U 172 ; WX 554 ; N uni00ac ; G 110 -U 173 ; WX 276 ; N uni00ad ; G 190 -U 174 ; WX 786 ; N uni00ae ; G 111 -U 175 ; WX 458 ; N uni00af ; G 112 -U 176 ; WX 374 ; N uni00b0 ; G 113 -U 177 ; WX 534 ; N uni00b1 ; G 114 -U 178 ; WX 367 ; N uni00b2 ; G 115 -U 179 ; WX 367 ; N uni00b3 ; G 116 -U 180 ; WX 313 ; N uni00b4 ; G 117 -U 181 ; WX 566 ; N uni00b5 ; G 118 -U 182 ; WX 489 ; N uni00b6 ; G 119 -U 183 ; WX 261 ; N uni00b7 ; G 120 -U 184 ; WX 248 ; N uni00b8 ; G 121 -U 185 ; WX 367 ; N uni00b9 ; G 122 -U 186 ; WX 455 ; N uni00ba ; G 123 -U 187 ; WX 469 ; N uni00bb ; G 124 -U 188 ; WX 732 ; N uni00bc ; G 125 -U 189 ; WX 776 ; N uni00bd ; G 126 -U 190 ; WX 778 ; N uni00be ; G 127 -U 191 ; WX 473 ; N uni00bf ; G 128 -U 192 ; WX 652 ; N uni00c0 ; G 192 -U 193 ; WX 652 ; N uni00c1 ; G 193 -U 194 ; WX 652 ; N uni00c2 ; G 194 -U 195 ; WX 652 ; N uni00c3 ; G 195 -U 196 ; WX 652 ; N uni00c4 ; G 196 -U 197 ; WX 652 ; N uni00c5 ; G 197 -U 198 ; WX 935 ; N uni00c6 ; G 129 -U 199 ; WX 651 ; N uni00c7 ; G 198 -U 200 ; WX 568 ; N uni00c8 ; G 199 -U 201 ; WX 568 ; N uni00c9 ; G 200 -U 202 ; WX 568 ; N uni00ca ; G 201 -U 203 ; WX 568 ; N uni00cb ; G 202 -U 204 ; WX 272 ; N uni00cc ; G 203 -U 205 ; WX 272 ; N uni00cd ; G 204 -U 206 ; WX 272 ; N uni00ce ; G 205 -U 207 ; WX 272 ; N uni00cf ; G 206 -U 208 ; WX 670 ; N uni00d0 ; G 191 -U 209 ; WX 713 ; N uni00d1 ; G 207 -U 210 ; WX 688 ; N uni00d2 ; G 208 -U 211 ; WX 688 ; N uni00d3 ; G 209 -U 212 ; WX 688 ; N uni00d4 ; G 210 -U 213 ; WX 688 ; N uni00d5 ; G 211 -U 214 ; WX 688 ; N uni00d6 ; G 212 -U 215 ; WX 533 ; N uni00d7 ; G 130 -U 216 ; WX 688 ; N uni00d8 ; G 131 -U 217 ; WX 648 ; N uni00d9 ; G 213 -U 218 ; WX 648 ; N uni00da ; G 214 -U 219 ; WX 648 ; N uni00db ; G 215 -U 220 ; WX 648 ; N uni00dc ; G 216 -U 221 ; WX 601 ; N uni00dd ; G 217 -U 222 ; WX 591 ; N uni00de ; G 132 -U 223 ; WX 595 ; N uni00df ; G 133 -U 224 ; WX 544 ; N uni00e0 ; G 218 -U 225 ; WX 544 ; N uni00e1 ; G 219 -U 226 ; WX 544 ; N uni00e2 ; G 220 -U 227 ; WX 544 ; N uni00e3 ; G 221 -U 228 ; WX 544 ; N uni00e4 ; G 222 -U 229 ; WX 544 ; N uni00e5 ; G 223 -U 230 ; WX 844 ; N uni00e6 ; G 134 -U 231 ; WX 523 ; N uni00e7 ; G 224 -U 232 ; WX 530 ; N uni00e8 ; G 225 -U 233 ; WX 530 ; N uni00e9 ; G 226 -U 234 ; WX 530 ; N uni00ea ; G 227 -U 235 ; WX 530 ; N uni00eb ; G 228 -U 236 ; WX 247 ; N uni00ec ; G 229 -U 237 ; WX 247 ; N uni00ed ; G 230 -U 238 ; WX 247 ; N uni00ee ; G 231 -U 239 ; WX 247 ; N uni00ef ; G 232 -U 240 ; WX 586 ; N uni00f0 ; G 135 -U 241 ; WX 552 ; N uni00f1 ; G 233 -U 242 ; WX 570 ; N uni00f2 ; G 234 -U 243 ; WX 570 ; N uni00f3 ; G 235 -U 244 ; WX 570 ; N uni00f4 ; G 236 -U 245 ; WX 570 ; N uni00f5 ; G 237 -U 246 ; WX 570 ; N uni00f6 ; G 238 -U 247 ; WX 571 ; N uni00f7 ; G 136 -U 248 ; WX 566 ; N uni00f8 ; G 137 -U 249 ; WX 551 ; N uni00f9 ; G 239 -U 250 ; WX 551 ; N uni00fa ; G 240 -U 251 ; WX 551 ; N uni00fb ; G 241 -U 252 ; WX 551 ; N uni00fc ; G 242 -U 253 ; WX 473 ; N uni00fd ; G 243 -U 254 ; WX 576 ; N uni00fe ; G 138 -U 255 ; WX 473 ; N uni00ff ; G 244 -U 305 ; WX 247 ; N uni0131 ; G 139 -U 338 ; WX 954 ; N uni0152 ; G 140 -U 339 ; WX 908 ; N uni0153 ; G 141 -U 700 ; WX 200 ; N uni02bc ; G 247 -U 710 ; WX 471 ; N uni02c6 ; G 142 -U 730 ; WX 334 ; N uni02da ; G 143 -U 732 ; WX 472 ; N uni02dc ; G 144 -U 8194 ; WX 510 ; N uni2002 ; G 145 -U 8201 ; WX 204 ; N uni2009 ; G 146 -U 8203 ; WX 0 ; N uni200b ; G 148 -U 8211 ; WX 656 ; N uni2013 ; G 149 -U 8212 ; WX 781 ; N uni2014 ; G 150 -U 8216 ; WX 200 ; N uni2018 ; G 151 -U 8217 ; WX 200 ; N uni2019 ; G 152 -U 8218 ; WX 199 ; N uni201a ; G 153 -U 8220 ; WX 354 ; N uni201c ; G 154 -U 8221 ; WX 357 ; N uni201d ; G 155 -U 8222 ; WX 344 ; N uni201e ; G 156 -U 8226 ; WX 337 ; N uni2022 ; G 157 -U 8230 ; WX 669 ; N uni2026 ; G 158 -U 8242 ; WX 174 ; N uni2032 ; G 245 -U 8243 ; WX 320 ; N uni2033 ; G 246 -U 8249 ; WX 300 ; N uni2039 ; G 159 -U 8250 ; WX 300 ; N uni203a ; G 160 -U 8260 ; WX 455 ; N uni2044 ; G 161 -U 8308 ; WX 367 ; N uni2074 ; G 162 -U 8364 ; WX 562 ; N uni20ac ; G 163 -U 8482 ; WX 625 ; N uni2122 ; G 164 -U 8722 ; WX 571 ; N uni2212 ; G 165 -U 65279 ; WX 0 ; N unifeff ; G 170 -U 65533 ; WX 1026 ; N unifffd ; G 171 -EndCharMetrics -EndFontMetrics diff --git a/storage/fonts/roboto_normal_db728720271025e5118179e1b242240f.ufm.json b/storage/fonts/roboto_normal_db728720271025e5118179e1b242240f.ufm.json deleted file mode 100644 index c92df76..0000000 --- a/storage/fonts/roboto_normal_db728720271025e5118179e1b242240f.ufm.json +++ /dev/null @@ -1,478 +0,0 @@ -{ - "codeToName": { - "0": "uni0000", - "13": "uni000d", - "32": "uni0020", - "33": "uni0021", - "34": "uni0022", - "35": "uni0023", - "36": "uni0024", - "37": "uni0025", - "38": "uni0026", - "39": "uni0027", - "40": "uni0028", - "41": "uni0029", - "42": "uni002a", - "43": "uni002b", - "44": "uni002c", - "45": "uni002d", - "46": "uni002e", - "47": "uni002f", - "48": "uni0030", - "49": "uni0031", - "50": "uni0032", - "51": "uni0033", - "52": "uni0034", - "53": "uni0035", - "54": "uni0036", - "55": "uni0037", - "56": "uni0038", - "57": "uni0039", - "58": "uni003a", - "59": "uni003b", - "60": "uni003c", - "61": "uni003d", - "62": "uni003e", - "63": "uni003f", - "64": "uni0040", - "65": "uni0041", - "66": "uni0042", - "67": "uni0043", - "68": "uni0044", - "69": "uni0045", - "70": "uni0046", - "71": "uni0047", - "72": "uni0048", - "73": "uni0049", - "74": "uni004a", - "75": "uni004b", - "76": "uni004c", - "77": "uni004d", - "78": "uni004e", - "79": "uni004f", - "80": "uni0050", - "81": "uni0051", - "82": "uni0052", - "83": "uni0053", - "84": "uni0054", - "85": "uni0055", - "86": "uni0056", - "87": "uni0057", - "88": "uni0058", - "89": "uni0059", - "90": "uni005a", - "91": "uni005b", - "92": "uni005c", - "93": "uni005d", - "94": "uni005e", - "95": "uni005f", - "96": "uni0060", - "97": "uni0061", - "98": "uni0062", - "99": "uni0063", - "100": "uni0064", - "101": "uni0065", - "102": "uni0066", - "103": "uni0067", - "104": "uni0068", - "105": "uni0069", - "106": "uni006a", - "107": "uni006b", - "108": "uni006c", - "109": "uni006d", - "110": "uni006e", - "111": "uni006f", - "112": "uni0070", - "113": "uni0071", - "114": "uni0072", - "115": "uni0073", - "116": "uni0074", - "117": "uni0075", - "118": "uni0076", - "119": "uni0077", - "120": "uni0078", - "121": "uni0079", - "122": "uni007a", - "123": "uni007b", - "124": "uni007c", - "125": "uni007d", - "126": "uni007e", - "160": "uni00a0", - "161": "uni00a1", - "162": "uni00a2", - "163": "uni00a3", - "164": "uni00a4", - "165": "uni00a5", - "166": "uni00a6", - "167": "uni00a7", - "168": "uni00a8", - "169": "uni00a9", - "170": "uni00aa", - "171": "uni00ab", - "172": "uni00ac", - "173": "uni00ad", - "174": "uni00ae", - "175": "uni00af", - "176": "uni00b0", - "177": "uni00b1", - "178": "uni00b2", - "179": "uni00b3", - "180": "uni00b4", - "181": "uni00b5", - "182": "uni00b6", - "183": "uni00b7", - "184": "uni00b8", - "185": "uni00b9", - "186": "uni00ba", - "187": "uni00bb", - "188": "uni00bc", - "189": "uni00bd", - "190": "uni00be", - "191": "uni00bf", - "192": "uni00c0", - "193": "uni00c1", - "194": "uni00c2", - "195": "uni00c3", - "196": "uni00c4", - "197": "uni00c5", - "198": "uni00c6", - "199": "uni00c7", - "200": "uni00c8", - "201": "uni00c9", - "202": "uni00ca", - "203": "uni00cb", - "204": "uni00cc", - "205": "uni00cd", - "206": "uni00ce", - "207": "uni00cf", - "208": "uni00d0", - "209": "uni00d1", - "210": "uni00d2", - "211": "uni00d3", - "212": "uni00d4", - "213": "uni00d5", - "214": "uni00d6", - "215": "uni00d7", - "216": "uni00d8", - "217": "uni00d9", - "218": "uni00da", - "219": "uni00db", - "220": "uni00dc", - "221": "uni00dd", - "222": "uni00de", - "223": "uni00df", - "224": "uni00e0", - "225": "uni00e1", - "226": "uni00e2", - "227": "uni00e3", - "228": "uni00e4", - "229": "uni00e5", - "230": "uni00e6", - "231": "uni00e7", - "232": "uni00e8", - "233": "uni00e9", - "234": "uni00ea", - "235": "uni00eb", - "236": "uni00ec", - "237": "uni00ed", - "238": "uni00ee", - "239": "uni00ef", - "240": "uni00f0", - "241": "uni00f1", - "242": "uni00f2", - "243": "uni00f3", - "244": "uni00f4", - "245": "uni00f5", - "246": "uni00f6", - "247": "uni00f7", - "248": "uni00f8", - "249": "uni00f9", - "250": "uni00fa", - "251": "uni00fb", - "252": "uni00fc", - "253": "uni00fd", - "254": "uni00fe", - "255": "uni00ff", - "305": "uni0131", - "338": "uni0152", - "339": "uni0153", - "700": "uni02bc", - "710": "uni02c6", - "730": "uni02da", - "732": "uni02dc", - "8194": "uni2002", - "8201": "uni2009", - "8203": "uni200b", - "8211": "uni2013", - "8212": "uni2014", - "8216": "uni2018", - "8217": "uni2019", - "8218": "uni201a", - "8220": "uni201c", - "8221": "uni201d", - "8222": "uni201e", - "8226": "uni2022", - "8230": "uni2026", - "8242": "uni2032", - "8243": "uni2033", - "8249": "uni2039", - "8250": "uni203a", - "8260": "uni2044", - "8308": "uni2074", - "8364": "uni20ac", - "8482": "uni2122", - "8722": "uni2212", - "65279": "unifeff", - "65533": "unifffd" - }, - "isUnicode": true, - "EncodingScheme": "FontSpecific", - "FontName": "Roboto", - "FullName": "Roboto", - "Version": "Version 2.137; 2017", - "PostScriptName": "Roboto-Regular", - "Weight": "Medium", - "ItalicAngle": "0", - "IsFixedPitch": "false", - "UnderlineThickness": "49", - "UnderlinePosition": "-73", - "FontHeightOffset": "0", - "Ascender": "928", - "Descender": "-244", - "FontBBox": [ - "-737", - "-271", - "1148", - "1056" - ], - "StartCharMetrics": "248", - "C": { - "0": 0, - "13": 248, - "32": 248, - "33": 257, - "34": 320, - "35": 616, - "36": 562, - "37": 732, - "38": 622, - "39": 174, - "40": 342, - "41": 348, - "42": 431, - "43": 567, - "44": 196, - "45": 276, - "46": 263, - "47": 412, - "48": 562, - "49": 562, - "50": 562, - "51": 562, - "52": 562, - "53": 562, - "54": 562, - "55": 562, - "56": 562, - "57": 562, - "58": 242, - "59": 211, - "60": 508, - "61": 549, - "62": 522, - "63": 472, - "64": 898, - "65": 652, - "66": 623, - "67": 651, - "68": 656, - "69": 568, - "70": 553, - "71": 681, - "72": 713, - "73": 272, - "74": 552, - "75": 627, - "76": 538, - "77": 873, - "78": 713, - "79": 688, - "80": 631, - "81": 688, - "82": 616, - "83": 593, - "84": 597, - "85": 648, - "86": 636, - "87": 887, - "88": 627, - "89": 601, - "90": 599, - "91": 265, - "92": 410, - "93": 265, - "94": 418, - "95": 451, - "96": 309, - "97": 544, - "98": 561, - "99": 523, - "100": 564, - "101": 530, - "102": 347, - "103": 561, - "104": 551, - "105": 243, - "106": 239, - "107": 507, - "108": 243, - "109": 876, - "110": 552, - "111": 570, - "112": 561, - "113": 568, - "114": 338, - "115": 516, - "116": 327, - "117": 551, - "118": 484, - "119": 751, - "120": 496, - "121": 473, - "122": 496, - "123": 338, - "124": 244, - "125": 338, - "126": 680, - "160": 248, - "161": 244, - "162": 547, - "163": 581, - "164": 713, - "165": 525, - "166": 240, - "167": 613, - "168": 418, - "169": 786, - "170": 447, - "171": 469, - "172": 554, - "173": 276, - "174": 786, - "175": 458, - "176": 374, - "177": 534, - "178": 367, - "179": 367, - "180": 313, - "181": 566, - "182": 489, - "183": 261, - "184": 248, - "185": 367, - "186": 455, - "187": 469, - "188": 732, - "189": 776, - "190": 778, - "191": 473, - "192": 652, - "193": 652, - "194": 652, - "195": 652, - "196": 652, - "197": 652, - "198": 935, - "199": 651, - "200": 568, - "201": 568, - "202": 568, - "203": 568, - "204": 272, - "205": 272, - "206": 272, - "207": 272, - "208": 670, - "209": 713, - "210": 688, - "211": 688, - "212": 688, - "213": 688, - "214": 688, - "215": 533, - "216": 688, - "217": 648, - "218": 648, - "219": 648, - "220": 648, - "221": 601, - "222": 591, - "223": 595, - "224": 544, - "225": 544, - "226": 544, - "227": 544, - "228": 544, - "229": 544, - "230": 844, - "231": 523, - "232": 530, - "233": 530, - "234": 530, - "235": 530, - "236": 247, - "237": 247, - "238": 247, - "239": 247, - "240": 586, - "241": 552, - "242": 570, - "243": 570, - "244": 570, - "245": 570, - "246": 570, - "247": 571, - "248": 566, - "249": 551, - "250": 551, - "251": 551, - "252": 551, - "253": 473, - "254": 576, - "255": 473, - "305": 247, - "338": 954, - "339": 908, - "700": 200, - "710": 471, - "730": 334, - "732": 472, - "8194": 510, - "8201": 204, - "8203": 0, - "8211": 656, - "8212": 781, - "8216": 200, - "8217": 200, - "8218": 199, - "8220": 354, - "8221": 357, - "8222": 344, - "8226": 337, - "8230": 669, - "8242": 174, - "8243": 320, - "8249": 300, - "8250": 300, - "8260": 455, - "8308": 367, - "8364": 562, - "8482": 625, - "8722": 571, - "65279": 0, - "65533": 1026 - }, - "CIDtoGID_Compressed": true, - "CIDtoGID": "eJzt0FPPYGcYhtGrqW3btm3btm3bZmrzpP0NtW3btk47TeZgOplpJ+1MvyZdK3n362ffezdawzP6cHeGNEZjNlZjN07jNl7jN0ETNlETN0mTNlmTN0VTNlVTN03TNl3TN0MzNlMzN0uzNluzN0dzNldzN0\/zNl\/zt0ALtlALt0iLtliLt0RLtlRLt0zLtlzLt0IrtlIrt0qrtlqrt0ZrtlZrt07rtl7rt0EbtlEbt0mbtlmbt0VbtlVbt03btl3bt0M7tlM7t0u7ttsIfeGfu7vd26M926u926d926\/9O6ADO6h7OrhDOrTDOrwjOrKjOrpjOrbjOr4TOrGTOrlTuq\/7e6AHe6iHO7VHerTHerwnerKnerpnurdne67ne6EXe6nTOr2Xe6VXe63XO6Mze6M3e6u3e6d3O6v3er8P+rCP+rhP+rTPOrvP+6Iv+6qv+6ZzOrdv+67v+6EfO6+fRsIf+Cvn\/+MKF3ThSMgB\/x2\/DmPtohG8e\/GgdsnIiwIAAAAAAAAAAAAAAAAAwH\/MpX+YXTaoXT7UiSu6cvDoqq7umkH9tV3X9YPXbhjc3zic+j\/3yxCzm7p5GGduGeG0f8+to7j+0G77l983kG4f6ACMUncMdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\/mfuHOgADJi7fn\/8Bsu+aH4=", - "_version_": 6 -} \ No newline at end of file diff --git a/storage/oauth-private.key b/storage/oauth-private.key old mode 100644 new mode 100755 diff --git a/storage/oauth-public.key b/storage/oauth-public.key old mode 100644 new mode 100755