From e147af8ebbc0279479c6822f763524692c10971c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Mon, 30 Jan 2023 11:57:28 +0100 Subject: [PATCH] Fix: Remove parentheses --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5e703087d..e85892ecd 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ composer require stripe/stripe-php To use the bindings, use Composer's [autoload](https://getcomposer.org/doc/01-basic-usage.md#autoloading): ```php -require_once('vendor/autoload.php'); +require_once 'vendor/autoload.php'; ``` ## Manual Installation @@ -35,7 +35,7 @@ require_once('vendor/autoload.php'); If you do not wish to use Composer, you can download the [latest release](https://github.com/stripe/stripe-php/releases). Then, to use the bindings, include the `init.php` file. ```php -require_once('/path/to/stripe-php/init.php'); +require_once '/path/to/stripe-php/init.php'; ``` ## Dependencies