File tree Expand file tree Collapse file tree 5 files changed +68
-1
lines changed Expand file tree Collapse file tree 5 files changed +68
-1
lines changed Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ namespace CSlant \Blog \Core \Models \Base ;
4
+
5
+ use Botble \ACL \Models \Role as BotbleRole ;
6
+
7
+ class BaseRole extends BotbleRole
8
+ {
9
+ }
Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ namespace CSlant \Blog \Core \Models \Base ;
4
+
5
+ use Botble \Blog \Models \Tag as BotbleTag ;
6
+
7
+ class BaseTag extends BotbleTag
8
+ {
9
+ }
Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ namespace CSlant \Blog \Core \Models ;
4
+
5
+ use CSlant \Blog \Core \Models \Base \BaseRole ;
6
+
7
+ /**
8
+ * Class Role
9
+ * @package CSlant\Blog\Core\Models
10
+ *
11
+ * @property int $id
12
+ * @property string $name
13
+ * @property string $slug
14
+ * @property string $description
15
+ * @property object $permissions
16
+ * @property string $status
17
+ * @property int $is_default
18
+ * @property int $created_by
19
+ * @property int $updated_by
20
+ * @property string $created_at
21
+ * @property string $updated_at
22
+ */
23
+ class Role extends BaseRole
24
+ {
25
+ }
Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ namespace CSlant \Blog \Core \Models ;
4
+
5
+ use CSlant \Blog \Core \Models \Base \BaseTag ;
6
+
7
+ /**
8
+ * Class Tag
9
+ * @package CSlant\Blog\Core\Models
10
+ *
11
+ * @property int $id
12
+ * @property string $name
13
+ * @property string $description
14
+ * @property string $status
15
+ * @property int $author_id
16
+ * @property string $author_type
17
+ * @property string $created_at
18
+ * @property string $updated_at
19
+ * @property string $slug
20
+ * @mixin BaseTag
21
+ */
22
+ class Tag extends BaseTag
23
+ {
24
+ }
Original file line number Diff line number Diff line change 18
18
* @property string $username
19
19
* @property array $permissions
20
20
* @property string $avatar_url Property for avatar image url
21
- * @property array $roles
21
+ * @property Role $roles
22
22
*
23
23
*/
24
24
class User extends BaseUser
You can’t perform that action at this time.
0 commit comments