<?php

abstract class AbstractView {
  public function
  __construct () {
    
  }
  
  public abstract function
  render ($user_data);
}
