/+junk/StupidMVC

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/%2Bjunk/StupidMVC
1 by Gustav Hartvigsson
* initial code
1
<?php
2
3
abstract class AbstractView {
4
  public function __contructor () {
5
    
6
  }
7
  
8
  abstract function render ($user_data);
9
  
10
}