<?php

class StandartResponse extends ObjectResponse{

    public function buildBody()
    {
        return [
            'success' => $this->status, 
            'data' => $this->obj, 
            'message' => $this->message, 
            'status' => $this->status
        ];
    }
}