From f4f6137fc5a889757a4bb7f62bf19c13f3ec6f2d Mon Sep 17 00:00:00 2001 From: Evgeny Mosunov Date: Wed, 1 Aug 2018 16:24:17 +0500 Subject: [PATCH] Fix readme typos and markup. --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4ddb753..995dd9e 100644 --- a/README.md +++ b/README.md @@ -17,10 +17,11 @@ ### Publish file To publish configuration file you can run next command: ```bash -php artisan vendor:publish --tag=laravel_entity_services``` +php artisan vendor:publish --tag=laravel_entity_services +``` It will copy file laravel_entity_services.php in config directory. -### Register custom repositories implementaion -To register your own IRepository impelementaion you can put it into configuration file, like: +### Register custom entity service implementation +To register your own IEntityService implementation you can put it into configuration file, like: ```php return [ 'bindings' => [\App\Models\User::class => \App\EntityServices\UserEntityService::class,],];