mirror of
				https://github.com/elyby/accounts.git
				synced 2025-05-31 14:11:46 +05:30 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			239 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			239 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
namespace common\models;
 | 
						|
 | 
						|
use Yii;
 | 
						|
use yii\db\ActiveRecord;
 | 
						|
 | 
						|
/**
 | 
						|
 * Поля:
 | 
						|
 * @property string $id
 | 
						|
 */
 | 
						|
class OauthScope extends ActiveRecord {
 | 
						|
 | 
						|
    public static function tableName() {
 | 
						|
        return '{{%oauth_scopes}}';
 | 
						|
    }
 | 
						|
 | 
						|
}
 |