/+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-16 17:05:24 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20160316170524-gub61va3x3imkm5y
* __contructor -> __construct

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 __contructor () {
5
 
 
 
4
  public function
 
5
  __construct () {
 
6
    
6
7
  }
7
 
 
 
8
  
8
9
  public abstract function
9
10
  render ($user_data);
10
11