/+junk/StupidMVC

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/%2Bjunk/StupidMVC

« back to all changes in this revision

Viewing changes to Common/AbstractView.php

  • Committer: Gustav Hartvigsson
  • Date: 2016-03-15 21:09:11 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20160315210911-3jgqymrctds0lj8n
* initial code

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
 
 
3
abstract class AbstractView {
 
4
  public function __contructor () {
 
5
    
 
6
  }
 
7
  
 
8
  abstract function render ($user_data);
 
9
  
 
10
}