From 384e2026dd5441741311aa824c81800c6aa19ebb Mon Sep 17 00:00:00 2001 From: Alex Whiteside Date: Tue, 8 Jan 2019 09:47:08 +0900 Subject: [PATCH] Updated docs to new PHP7 class format --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ae5727b..4455df5 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ Add a ServiceProvider to your providers array in `config/app.php`: ```php 'providers' => [ - 'Ignited\LaravelOmnipay\LaravelOmnipayServiceProvider', + Ignited\LaravelOmnipay\LaravelOmnipayServiceProvider::class ] ``` @@ -56,7 +56,7 @@ Add a ServiceProvider to your providers array in `config/app.php`: Add the `Omnipay` facade to your facades array: ```php - 'Omnipay' => 'Ignited\LaravelOmnipay\Facades\OmnipayFacade', + 'Omnipay' => Ignited\LaravelOmnipay\Facades\OmnipayFacade::class ``` Finally, publish the configuration files: