mirror of
https://github.com/elyby/chrly.git
synced 2025-05-31 14:11:51 +05:30
Init commit
This commit is contained in:
27
models/Skins.php
Normal file
27
models/Skins.php
Normal file
@@ -0,0 +1,27 @@
|
||||
<?php
|
||||
|
||||
use Phalcon\Mvc\Collection;
|
||||
|
||||
/**
|
||||
* @method static Skins findFirst()
|
||||
*
|
||||
* @property string $id
|
||||
*/
|
||||
class Skins extends Collection {
|
||||
public $_id;
|
||||
public $userId;
|
||||
public $nickname;
|
||||
public $skinId;
|
||||
public $url;
|
||||
public $is1_8;
|
||||
public $isSlim;
|
||||
public $hash;
|
||||
|
||||
public function getId() {
|
||||
return $this->_id;
|
||||
}
|
||||
|
||||
public function getSource() {
|
||||
return "skins";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user