From 4b20ba288250ee102288a4db490095fb43ec25b8 Mon Sep 17 00:00:00 2001 From: Dimitar Yanakiev Date: Fri, 2 Dec 2022 22:33:07 +0200 Subject: [PATCH] Fix environment variable name SPARK_TOP_UP_PRICE in example --- 2.x/spark-stripe/configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2.x/spark-stripe/configuration.md b/2.x/spark-stripe/configuration.md index 390b095..1846244 100644 --- a/2.x/spark-stripe/configuration.md +++ b/2.x/spark-stripe/configuration.md @@ -222,7 +222,7 @@ After defining the environment variable, enable the top up feature using its cor ```php 'features' => [ ... - Features::topups(['price' => env('SPARK_TOP_UP_PRICESPARK_TOP_UP_PRICESPARK_TOP_UP_PRICE')]), + Features::topups(['price' => env('SPARK_TOP_UP_PRICE')]), ... ], ```