Phosphorum\Models\Posts::beforeCreate PHP Method

beforeCreate() public method

Create a posts-views logging the ipaddress where the post was created This avoids that the same session counts as post view
public beforeCreate ( )
    public function beforeCreate()
    {
        $this->views = new PostsViews(['ipaddress' => $this->getDI()->getShared('request')->getClientAddress()]);
    }