User Tools

Site Tools


kurs:doctrine_oracle_beipspiel

This is an old revision of the document!


<?php
// entities/Test.php
class Test {
  protected $id;
  protected $name;

  public function getName() {
        return $this->name;
  }

  public function setName($name) {
        $this->name = $name;
  }

  public function getId() {
        return $this->id;
  }
}
kurs/doctrine_oracle_beipspiel.1326967678.txt.gz · Last modified: 2014/09/10 21:22 (external edit)