From 58b08f9e267a5ac4a56ca3647b1f5c160a19a561 Mon Sep 17 00:00:00 2001 From: REJack Date: Sun, 1 May 2016 15:16:59 +0200 Subject: [PATCH] fixed `Quick Start`-Section (changed `deny` to `deny_group`) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d065772..f569407 100644 --- a/README.md +++ b/README.md @@ -86,10 +86,10 @@ $this->aauth->allow_group('elves','immortality'); $this->aauth->allow_group('hobbits','immortality'); ``` -Wait a minute! Hobbits should not have `immortality`. We need to fix this, we can use `deny()` to remove the permission. +Wait a minute! Hobbits should not have `immortality`. We need to fix this, we can use `deny_group()` to remove the permission. ```php -$this->aauth->deny('hobbits','immortality'); +$this->aauth->deny_group('hobbits','immortality'); ``` Gandalf can also live forever.