diff options
author | Thomas Lange <code@nerdmind.de> | 2021-07-22 14:16:42 +0200 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2021-07-22 14:16:42 +0200 |
commit | 2a027f475847c2fee60b873be3fc55d845e68961 (patch) | |
tree | d72c52e0fd13a05a2dfbd754112f3ceb166d93b5 /core/namespace/ORM/Entities/Post.php | |
parent | 59392e460020447720089976b83139ad59d275fe (diff) | |
download | blog-2a027f475847c2fee60b873be3fc55d845e68961.tar.gz blog-2a027f475847c2fee60b873be3fc55d845e68961.tar.xz blog-2a027f475847c2fee60b873be3fc55d845e68961.zip |
Do not redefine properties of Entity class
Do not redefine properties that are already defined in the Entity class.
Diffstat (limited to 'core/namespace/ORM/Entities/Post.php')
-rw-r--r-- | core/namespace/ORM/Entities/Post.php | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/core/namespace/ORM/Entities/Post.php b/core/namespace/ORM/Entities/Post.php index 080f01f..6a52a1f 100644 --- a/core/namespace/ORM/Entities/Post.php +++ b/core/namespace/ORM/Entities/Post.php @@ -3,13 +3,10 @@ namespace ORM\Entities; use ORM\Entity; class Post extends Entity { - protected $id = FALSE; protected $user = FALSE; protected $category = FALSE; protected $slug = FALSE; protected $name = FALSE; protected $body = FALSE; protected $argv = FALSE; - protected $time_insert = FALSE; - protected $time_update = FALSE; } |