Navigation Menu

Skip to content

Commit

Permalink
Don't mix tabs and spaces on the same line.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed May 14, 2014
1 parent 41cfd50 commit 4429d49
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions src/Controller/Component/AuthComponent.php
Expand Up @@ -54,9 +54,9 @@ class AuthComponent extends Component {
*
* {{{
* $this->Auth->config('authenticate', [
* 'Form' => [
* 'userModel' => 'Users.Users'
* ]
* 'Form' => [
* 'userModel' => 'Users.Users'
* ]
* ]);
* }}}
*
Expand All @@ -65,13 +65,13 @@ class AuthComponent extends Component {
* config that should be set to all authentications objects using the 'all' key:
*
* {{{
* $this->Auth->config('authenticate', [
* AuthComponent::ALL => [
* 'userModel' => 'Users.Users',
* 'scope' => ['Users.active' => 1]
* ],
* 'Form',
* 'Basic'
* $this->Auth->config('authenticate', [
* AuthComponent::ALL => [
* 'userModel' => 'Users.Users',
* 'scope' => ['Users.active' => 1]
* ],
* 'Form',
* 'Basic'
* ]);
* }}}
*
Expand All @@ -81,9 +81,9 @@ class AuthComponent extends Component {
*
* {{{
* $this->Auth->config('authorize', [
* 'Crud' => [
* 'actionPath' => 'controllers/'
* ]
* 'Crud' => [
* 'actionPath' => 'controllers/'
* ]
* ]);
* }}}
*
Expand All @@ -93,11 +93,11 @@ class AuthComponent extends Component {
*
* {{{
* $this->Auth->config('authorize', [
* AuthComponent::ALL => [
* 'actionPath' => 'controllers/'
* ],
* 'Crud',
* 'CustomAuth'
* AuthComponent::ALL => [
* 'actionPath' => 'controllers/'
* ],
* 'Crud',
* 'CustomAuth'
* ]);
* }}}
*
Expand Down

0 comments on commit 4429d49

Please sign in to comment.