__VSCODE_LARAVEL_START_OUTPUT__ Whoops! There was an error.
Symfony \ Component \ Debug \ Exception \ FatalThrowableError (E_ERROR)
Call to undefined function str() Symfony\Component\Debug\Exception\FatalThrowableError thrown with message "Call to undefined function str()" Stacktrace: #3 Symfony\Component\Debug\Exception\FatalThrowableError in /home/roommatebd/public_html/braunder/vendor/_laravel_ide/discover-6f0f1acd77de9f7869cf9462ed4d802b.php:71 #2 {closure} in [internal]:0 #1 array_map in /home/roommatebd/public_html/braunder/vendor/laravel/framework/src/Illuminate/Support/Collection.php:638 #0 Illuminate\Support\Collection:map in /home/roommatebd/public_html/braunder/vendor/_laravel_ide/discover-6f0f1acd77de9f7869cf9462ed4d802b.php:75
3
Symfony\Component\Debug\Exception\FatalThrowableError
/vendor/_laravel_ide/discover-6f0f1acd77de9f7869cf9462ed4d802b.php:71
2
{closure}
[internal]:0
1
array_map
/vendor/laravel/framework/src/Illuminate/Support/Collection.php:638
0
Illuminate\Support\Collection map
/vendor/_laravel_ide/discover-6f0f1acd77de9f7869cf9462ed4d802b.php:75
/home/roommatebd/public_html/braunder/vendor/_laravel_ide/discover-6f0f1acd77de9f7869cf9462ed4d802b.php
            ],
            'logging.default' => 'null',
        ]);
    }
});
 
try {
    $kernel = $app->make(Illuminate\Contracts\Console\Kernel::class);
    $kernel->bootstrap();
} catch (\Throwable $e) {
    LaravelVsCode::startupError($e);
    exit(1);
}
 
echo LaravelVsCode::outputMarker('START_OUTPUT');
 
$local = collect(glob(config_path("/*.php")))
  ->merge(glob(config_path("**/*.php")))
  ->map(fn ($path) => [
      (string) str($path)
        ->replace([config_path('/'), ".php"], "")
        ->replace(DIRECTORY_SEPARATOR, "."),
      $path
    ]);
 
$vendor = collect(glob(base_path("vendor/**/**/config/*.php")))->map(fn (
  $path
) => [
    (string) str($path)
      ->afterLast(DIRECTORY_SEPARATOR . "config" . DIRECTORY_SEPARATOR)
      ->replace(".php", "")
      ->replace(DIRECTORY_SEPARATOR, "."),
    $path
  ]);
 
$configPaths = $local
  ->merge($vendor)
  ->groupBy(0)
  ->map(fn ($items)=>$items->pluck(1));
 
Arguments
  1. "Call to undefined function str()"
    
[internal]
Arguments
  1. "/home/roommatebd/public_html/braunder/config//app.php"
    
  2. 0
    
/home/roommatebd/public_html/braunder/vendor/laravel/framework/src/Illuminate/Support/Collection.php
     * @param  string|array  $value
     * @param  string|null  $key
     * @return static
     */
    public function pluck($value, $key = null)
    {
        return new static(Arr::pluck($this->items, $value, $key));
    }
 
    /**
     * Run a map over each of the items.
     *
     * @param  callable  $callback
     * @return static
     */
    public function map(callable $callback)
    {
        $keys = array_keys($this->items);
 
        $items = array_map($callback, $this->items, $keys);
 
        return new static(array_combine($keys, $items));
    }
 
    /**
     * Run a dictionary map over the items.
     *
     * The callback should return an associative array with a single key/value pair.
     *
     * @param  callable  $callback
     * @return static
     */
    public function mapToDictionary(callable $callback)
    {
        $dictionary = [];
 
        foreach ($this->items as $key => $item) {
            $pair = $callback($item, $key);
 
            $key = key($pair);
Arguments
  1. Closure($path) {#1073 …2}
    
  2. array:20 [
      0 => "/home/roommatebd/public_html/braunder/config//app.php"
      1 => "/home/roommatebd/public_html/braunder/config//auth.php"
      2 => "/home/roommatebd/public_html/braunder/config//backup.php"
      3 => "/home/roommatebd/public_html/braunder/config//broadcasting.php"
      4 => "/home/roommatebd/public_html/braunder/config//cache.php"
      5 => "/home/roommatebd/public_html/braunder/config//columnsortable.php"
      6 => "/home/roommatebd/public_html/braunder/config//database.php"
      7 => "/home/roommatebd/public_html/braunder/config//debugbar.php"
      8 => "/home/roommatebd/public_html/braunder/config//dompdf.php"
      9 => "/home/roommatebd/public_html/braunder/config//filesystems.php"
      10 => "/home/roommatebd/public_html/braunder/config//hashing.php"
      11 => "/home/roommatebd/public_html/braunder/config//image-optimizer.php"
      12 => "/home/roommatebd/public_html/braunder/config//logging.php"
      13 => "/home/roommatebd/public_html/braunder/config//mail.php"
      14 => "/home/roommatebd/public_html/braunder/config//permission.php"
      15 => "/home/roommatebd/public_html/braunder/config//queue.php"
      16 => "/home/roommatebd/public_html/braunder/config//services.php"
      17 => "/home/roommatebd/public_html/braunder/config//session.php"
      18 => "/home/roommatebd/public_html/braunder/config//sslcommerz.php"
      19 => "/home/roommatebd/public_html/braunder/config//view.php"
    ]
    
  3. array:20 [
      0 => 0
      1 => 1
      2 => 2
      3 => 3
      4 => 4
      5 => 5
      6 => 6
      7 => 7
      8 => 8
      9 => 9
      10 => 10
      11 => 11
      12 => 12
      13 => 13
      14 => 14
      15 => 15
      16 => 16
      17 => 17
      18 => 18
      19 => 19
    ]
    
/home/roommatebd/public_html/braunder/vendor/_laravel_ide/discover-6f0f1acd77de9f7869cf9462ed4d802b.php
});
 
try {
    $kernel = $app->make(Illuminate\Contracts\Console\Kernel::class);
    $kernel->bootstrap();
} catch (\Throwable $e) {
    LaravelVsCode::startupError($e);
    exit(1);
}
 
echo LaravelVsCode::outputMarker('START_OUTPUT');
 
$local = collect(glob(config_path("/*.php")))
  ->merge(glob(config_path("**/*.php")))
  ->map(fn ($path) => [
      (string) str($path)
        ->replace([config_path('/'), ".php"], "")
        ->replace(DIRECTORY_SEPARATOR, "."),
      $path
    ]);
 
$vendor = collect(glob(base_path("vendor/**/**/config/*.php")))->map(fn (
  $path
) => [
    (string) str($path)
      ->afterLast(DIRECTORY_SEPARATOR . "config" . DIRECTORY_SEPARATOR)
      ->replace(".php", "")
      ->replace(DIRECTORY_SEPARATOR, "."),
    $path
  ]);
 
$configPaths = $local
  ->merge($vendor)
  ->groupBy(0)
  ->map(fn ($items)=>$items->pluck(1));
 
$cachedContents = [];
$cachedParsed = [];
 
function vsCodeGetConfigValue($value, $key, $configPaths) {
Arguments
  1. Closure($path) {#1073 …2}
    

Environment & details:

empty
empty
empty
empty
empty
Key Value
PATH
"/usr/local/bin:/bin:/usr/bin"
HTTP_ACCEPT
"*/*"
HTTP_ACCEPT_ENCODING
"gzip, br, zstd, deflate"
HTTP_HOST
"www.braunder.roommatebd.com"
HTTP_USER_AGENT
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
DOCUMENT_ROOT
"/home/roommatebd/public_html/braunder"
REMOTE_ADDR
"216.73.216.73"
REMOTE_PORT
"18433"
SERVER_ADDR
"51.89.235.52"
SERVER_NAME
"www.braunder.roommatebd.com"
SERVER_ADMIN
"webmaster@braunder.roommatebd.com"
SERVER_PORT
"443"
REQUEST_SCHEME
"https"
REQUEST_URI
"/vendor/_laravel_ide/discover-6f0f1acd77de9f7869cf9462ed4d802b.php"
HTTPS
"on"
X_SPDY
"HTTP2"
SSL_PROTOCOL
"TLSv1.3"
SSL_CIPHER
"TLS_AES_256_GCM_SHA384"
SSL_CIPHER_USEKEYSIZE
"256"
SSL_CIPHER_ALGKEYSIZE
"256"
SCRIPT_FILENAME
"/home/roommatebd/public_html/braunder/vendor/_laravel_ide/discover-6f0f1acd77de9f7869cf9462ed4d802b.php"
QUERY_STRING
""
SCRIPT_URI
"https://www.braunder.roommatebd.com/vendor/_laravel_ide/discover-6f0f1acd77de9f7869cf9462ed4d802b.php"
SCRIPT_URL
"/vendor/_laravel_ide/discover-6f0f1acd77de9f7869cf9462ed4d802b.php"
SCRIPT_NAME
"/vendor/_laravel_ide/discover-6f0f1acd77de9f7869cf9462ed4d802b.php"
SERVER_PROTOCOL
"HTTP/1.1"
SERVER_SOFTWARE
"LiteSpeed"
REQUEST_METHOD
"GET"
X-LSCACHE
"on"
PHP_SELF
"/vendor/_laravel_ide/discover-6f0f1acd77de9f7869cf9462ed4d802b.php"
REQUEST_TIME_FLOAT
1777748148.4911
REQUEST_TIME
1777748148
argv
[]
argc
0
APP_VERSION
"1.0"
APP_NAME
"Braunder"
APP_ENV
"local"
APP_KEY
"***************************************************"
APP_DEBUG
"true"
APP_LOG_LEVEL
"debug"
APP_URL
"https://braunder.roommatebd.com"
DB_CONNECTION
"mysql"
DB_HOST
"127.0.0.1"
DB_PORT
"3306"
DB_DATABASE
"roommatebd_braunder"
DB_USERNAME
"roommatebd_braunder"
DB_PASSWORD
"*****************"
BROADCAST_DRIVER
"log"
CACHE_DRIVER
"file"
SESSION_DRIVER
"file"
QUEUE_DRIVER
"sync"
REDIS_HOST
"127.0.0.1"
REDIS_PASSWORD
"****"
REDIS_PORT
"6379"
MAIL_DRIVER
"smtp"
MAIL_HOST
"smtp.titan.email"
MAIL_PORT
"465"
MAIL_FROM_ADDRESS
"info@braunder.com"
MAIL_FROM_NAME
"Deshecart"
MAIL_USERNAME
"info@braunder.com"
MAIL_PASSWORD
"*****************"
MAIL_ENCRYPTION
"ssl"
PUSHER_APP_ID
""
PUSHER_APP_KEY
""
PUSHER_APP_SECRET
""
INSTAGRAM_CLIENT_ID
"1418902332391718"
INSTAGRAM_CLIENT_SECRET
"be03aa0ef98eebb74435c14bead7d696"
INSTAGRAM_REDIRECT_URI
"https://braunder.com/social/instagram/callback"
SSLCZ_STORE_ID
"synch68299b68ac041"
SSLCZ_STORE_PASSWORD
"synch68299b68ac041@ssl"
SSLCZ_TESTMODE
"true"
Key Value
APP_VERSION
"1.0"
APP_NAME
"Braunder"
APP_ENV
"local"
APP_KEY
"***************************************************"
APP_DEBUG
"true"
APP_LOG_LEVEL
"debug"
APP_URL
"https://braunder.roommatebd.com"
DB_CONNECTION
"mysql"
DB_HOST
"127.0.0.1"
DB_PORT
"3306"
DB_DATABASE
"roommatebd_braunder"
DB_USERNAME
"roommatebd_braunder"
DB_PASSWORD
"*****************"
BROADCAST_DRIVER
"log"
CACHE_DRIVER
"file"
SESSION_DRIVER
"file"
QUEUE_DRIVER
"sync"
REDIS_HOST
"127.0.0.1"
REDIS_PASSWORD
"****"
REDIS_PORT
"6379"
MAIL_DRIVER
"smtp"
MAIL_HOST
"smtp.titan.email"
MAIL_PORT
"465"
MAIL_FROM_ADDRESS
"info@braunder.com"
MAIL_FROM_NAME
"Deshecart"
MAIL_USERNAME
"info@braunder.com"
MAIL_PASSWORD
"*****************"
MAIL_ENCRYPTION
"ssl"
PUSHER_APP_ID
""
PUSHER_APP_KEY
""
PUSHER_APP_SECRET
""
INSTAGRAM_CLIENT_ID
"1418902332391718"
INSTAGRAM_CLIENT_SECRET
"be03aa0ef98eebb74435c14bead7d696"
INSTAGRAM_REDIRECT_URI
"https://braunder.com/social/instagram/callback"
SSLCZ_STORE_ID
"synch68299b68ac041"
SSLCZ_STORE_PASSWORD
"synch68299b68ac041@ssl"
SSLCZ_TESTMODE
"true"
0. Whoops\Handler\PrettyPageHandler