/+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 Hatvigsson
  • Date: 2016-03-16 16:39:13 UTC
  • mfrom: (4.1.1 StupidMVC)
  • Revision ID: gustav.hartvigsson@gmail.com-20160316163913-9esig2inohayiih3
* merged with parent

Show diffs side-by-side

added added

removed removed

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