Skip to content
This repository has been archived by the owner on Oct 14, 2019. It is now read-only.

Commit

Permalink
Correcting model names
Browse files Browse the repository at this point in the history
  • Loading branch information
Florian Krämer committed Jan 11, 2012
1 parent d0ddbee commit 4771dc8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Model/Oauth2Client.php
@@ -1,12 +1,12 @@
<?php
App::uses('Oauth2AppModel', 'Oauth2.Model');

class OauthClient extends Oauth2AppModel {
class Oauth2Client extends Oauth2AppModel {
/**
* Name
*
* @var string
*/
public $name = 'OauthClient';
public $name = 'Oauth2Client';

}
4 changes: 2 additions & 2 deletions Model/Oauth2RefreshToken.php
@@ -1,12 +1,12 @@
<?php
App::uses('Oauth2AppModel', 'Oauth2.Model');

class OauthToken extends Oauth2AppModel {
class Oauth2RefreshToken extends Oauth2AppModel {
/**
* Name
*
* @var string
*/
public $name = 'OauthToken';
public $name = 'Oauth2RefreshToken';

}

0 comments on commit 4771dc8

Please sign in to comment.