forked from fc2blog/blog
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBlog.php
More file actions
34 lines (29 loc) · 690 Bytes
/
Copy pathBlog.php
File metadata and controls
34 lines (29 loc) · 690 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php
declare(strict_types=1);
namespace Fc2blog\Model;
use ArrayAccess;
use Countable;
use IteratorAggregate;
class Blog implements ArrayAccess, IteratorAggregate, Countable
{
use ArrayIterableTrait;
public $id;
public $user_id;
public $name;
public $nickname;
public $introduction;
public $template_pc_id;
public $template_sp_id;
public $timezone;
public $open_status;
public $ssl_enable;
public $redirect_status_code;
public $blog_password;
public $trip_salt;
public $last_posted_at;
public $created_at;
public $updated_at;
// === Not available in DB, Dynamic properties
/** @dynamic */
public $url;
}