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