Advertisement
shelob9

Untitled

Jul 24th, 2016
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. namespace josh\api\error;
  2. class response extends \WP_REST_Response{
  3.  
  4. public function __construct( $data, $status, array $headers ) {
  5. parent::__construct( $data, $status, $headers );
  6. if( empty( $data ) ){
  7. $this->set_status( 404 );
  8. }
  9.  
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement