Welcome to Roshni Foods

Your Trusted Grocery Destination in Laurel, Maryland

About Roshni Foods

Roshni Foods proudly serves the Laurel, MD community with a wide range of high-quality grocery products. We specialize in providing fresh raw ingredients, frozen foods, traditional sweets, aromatic spices, refreshing beverages, and trusted grocery brands.

Our mission is to deliver quality, freshness, and authentic flavors that enhance your everyday meals. Every product is carefully sourced to meet strict quality standards and customer satisfaction.

Visit Official Website

Our Product Categories

Contact Information

Address:
14400 Cherry Lane Ct.
Laurel, MD 20707, USA

Phone: (301) 604-1779
Email: info@roshnifoods.com

Why Choose Us?

We are committed to providing excellent customer service, competitive pricing, and a diverse selection of grocery essentials. Whether you're preparing daily meals or special occasions, Roshni Foods is here to serve your needs.

Roshni Foods | Premium Grocery Store in Laurel, MD

Welcome to Roshni Foods

Your Trusted Grocery Destination in Laurel, Maryland

About Roshni Foods

Roshni Foods proudly serves the Laurel, MD community with a wide range of high-quality grocery products. We specialize in providing fresh raw ingredients, frozen foods, traditional sweets, aromatic spices, refreshing beverages, and trusted grocery brands.

Our mission is to deliver quality, freshness, and authentic flavors that enhance your everyday meals. Every product is carefully sourced to meet strict quality standards and customer satisfaction.

Visit Official Website

Our Product Categories

Contact Information

Address:
14400 Cherry Lane Ct.
Laurel, MD 20707, USA

Phone: (301) 604-1779
Email: info@roshnifoods.com

Why Choose Us?

We are committed to providing excellent customer service, competitive pricing, and a diverse selection of grocery essentials. Whether you're preparing daily meals or special occasions, Roshni Foods is here to serve your needs.

array_merge(): Argument #1 must be of type array, int given (500 Internal Server Error)

Symfony Exception

TypeError

HTTP 500 Internal Server Error

array_merge(): Argument #1 must be of type array, int given

Exception

TypeError

  1.     protected function loadConfigurationFile(RepositoryContract $repository$name$path, array $base)
  2.     {
  3.         $config = (fn () => require $path)();
  4.         if (isset($base[$name])) {
  5.             $config array_merge($base[$name], $config);
  6.             foreach ($this->mergeableOptions($name) as $option) {
  7.                 if (isset($config[$option])) {
  8.                     $config[$option] = array_merge($base[$name][$option], $config[$option]);
  9.                 }
  1.     protected function loadConfigurationFile(RepositoryContract $repository$name$path, array $base)
  2.     {
  3.         $config = (fn () => require $path)();
  4.         if (isset($base[$name])) {
  5.             $config array_merge($base[$name], $config);
  6.             foreach ($this->mergeableOptions($name) as $option) {
  7.                 if (isset($config[$option])) {
  8.                     $config[$option] = array_merge($base[$name][$option], $config[$option]);
  9.                 }
  1.         foreach ((new Collection($base))->diffKeys($files) as $name => $config) {
  2.             $repository->set($name$config);
  3.         }
  4.         foreach ($files as $name => $path) {
  5.             $base $this->loadConfigurationFile($repository$name$path$base);
  6.         }
  7.         foreach ($base as $name => $config) {
  8.             $repository->set($name$config);
  9.         }
  1.         // directory and load each one into the repository. This will make all of the
  2.         // options available to the developer for use in various parts of this app.
  3.         $app->instance('config'$config = new Repository($items));
  4.         if (! isset($loadedFromCache)) {
  5.             $this->loadConfigurationFiles($app$config);
  6.         }
  7.         // Finally, we will set the application's environment based on the configuration
  8.         // values that were loaded. We will pass a callback which will be used to get
  9.         // the environment in a web context where an "--env" switch is not present.
  1.         $this->hasBeenBootstrapped true;
  2.         foreach ($bootstrappers as $bootstrapper) {
  3.             $this['events']->dispatch('bootstrapping: '.$bootstrapper, [$this]);
  4.             $this->make($bootstrapper)->bootstrap($this);
  5.             $this['events']->dispatch('bootstrapped: '.$bootstrapper, [$this]);
  6.         }
  7.     }
  1.      * @return void
  2.      */
  3.     public function bootstrap()
  4.     {
  5.         if (! $this->app->hasBeenBootstrapped()) {
  6.             $this->app->bootstrapWith($this->bootstrappers());
  7.         }
  8.     }
  9.     /**
  10.      * Get the route dispatcher callback.
  1.     {
  2.         $this->app->instance('request'$request);
  3.         Facade::clearResolvedInstance('request');
  4.         $this->bootstrap();
  5.         return (new Pipeline($this->app))
  6.             ->send($request)
  7.             ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
  8.             ->then($this->dispatchToRouter());
  1.         $this->requestStartedAt Carbon::now();
  2.         try {
  3.             $request->enableHttpMethodParameterOverride();
  4.             $response $this->sendRequestThroughRouter($request);
  5.         } catch (Throwable $e) {
  6.             $this->reportException($e);
  7.             $response $this->renderException($request$e);
  8.         }
  1.      */
  2.     public function handleRequest(Request $request)
  3.     {
  4.         $kernel $this->make(HttpKernelContract::class);
  5.         $response $kernel->handle($request)->send();
  6.         $kernel->terminate($request$response);
  7.     }
  8.     /**
  1. // Bootstrap Laravel and handle the request...
  2. /** @var Application $app */
  3. $app = require_once __DIR__.'/bootstrap/app.php';
  4. $app->handleRequest(Request::capture());

Stack Trace

TypeError
TypeError:
array_merge(): Argument #1 must be of type array, int given

  at /home/u641149403/domains/nautiyaltaxiservice.com/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/LoadConfiguration.php:102
  at array_merge()
     (/home/u641149403/domains/nautiyaltaxiservice.com/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/LoadConfiguration.php:102)
  at Illuminate\Foundation\Bootstrap\LoadConfiguration->loadConfigurationFile()
     (/home/u641149403/domains/nautiyaltaxiservice.com/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/LoadConfiguration.php:80)
  at Illuminate\Foundation\Bootstrap\LoadConfiguration->loadConfigurationFiles()
     (/home/u641149403/domains/nautiyaltaxiservice.com/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/LoadConfiguration.php:39)
  at Illuminate\Foundation\Bootstrap\LoadConfiguration->bootstrap()
     (/home/u641149403/domains/nautiyaltaxiservice.com/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:341)
  at Illuminate\Foundation\Application->bootstrapWith()
     (/home/u641149403/domains/nautiyaltaxiservice.com/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:186)
  at Illuminate\Foundation\Http\Kernel->bootstrap()
     (/home/u641149403/domains/nautiyaltaxiservice.com/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:170)
  at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter()
     (/home/u641149403/domains/nautiyaltaxiservice.com/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:144)
  at Illuminate\Foundation\Http\Kernel->handle()
     (/home/u641149403/domains/nautiyaltaxiservice.com/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:1219)
  at Illuminate\Foundation\Application->handleRequest()
     (/home/u641149403/domains/nautiyaltaxiservice.com/public_html/index.php:20)