Changeset 78 for Dev/trunk/classes/Application.php
- Timestamp:
- 08/08/11 17:25:20 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Dev/trunk/classes/Application.php
r75 r78 7 7 */ 8 8 class Application { 9 10 public $id; 9 11 public $title; 10 12 public $description; 11 13 public $style; 12 14 13 public function __construct($title = null, $description = null, $style = null) { 15 public function __construct($id = null, $title = null, $description = null, $style = null) 16 { 17 $this->id = $id; 14 18 $this->title = $title; 15 16 19 $this->description = $description; 20 $this->style = $style; 17 21 } 18 22
Note: See TracChangeset
for help on using the changeset viewer.