From 4150879a696e17fae47751bd2a8405243c63580b Mon Sep 17 00:00:00 2001 From: Martin Kiesel Date: Sat, 25 Nov 2017 21:42:18 +0100 Subject: [PATCH] Convert idents to spaces --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index bd8667d..f5424e2 100755 --- a/README.md +++ b/README.md @@ -97,16 +97,16 @@ use Kyslik\ColumnSortable\Sortable; class User extends Model implements AuthenticatableContract, CanResetPasswordContract { - use Authenticatable, CanResetPassword, Sortable; - ... - - public $sortable = ['id', - 'name', - 'email', - 'created_at', - 'updated_at']; - - ... + use Authenticatable, CanResetPassword, Sortable; + ... + + public $sortable = ['id', + 'name', + 'email', + 'created_at', + 'updated_at']; + + ... } ```