| @@ -1,9 +1,10 @@ | ||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | 3 | namespace BitCode\BitForm\Admin\Form\Template; |
| 4 | 4 | |
| 5 | -class TemplateBase { | |
| 5 | +class TemplateBase | |
| 6 | +{ | |
| 6 | 7 | protected $title; |
| 7 | 8 | protected $description; |
| 8 | 9 | protected $status; |
| 9 | 10 | protected $thumbnail; |
| @@ -8,32 +9,39 @@ | ||
| 8 | 9 | protected $status; |
| 9 | 10 | protected $thumbnail; |
| 10 | 11 | protected $category; |
| 11 | 12 | |
| 12 | - public function getTitle() { | |
| 13 | + public function getTitle() | |
| 14 | + { | |
| 13 | 15 | return $this->title; |
| 14 | 16 | } |
| 15 | 17 | |
| 16 | - public function getDescription() { | |
| 18 | + public function getDescription() | |
| 19 | + { | |
| 17 | 20 | return $this->description; |
| 18 | 21 | } |
| 19 | 22 | |
| 20 | - public function getStatus() { | |
| 23 | + public function getStatus() | |
| 24 | + { | |
| 21 | 25 | return $this->status; |
| 22 | 26 | } |
| 23 | 27 | |
| 24 | - public function getThumbnail() { | |
| 28 | + public function getThumbnail() | |
| 29 | + { | |
| 25 | 30 | return $this->thumbnail; |
| 26 | 31 | } |
| 27 | 32 | |
| 28 | - public function getCategory() { | |
| 33 | + public function getCategory() | |
| 34 | + { | |
| 29 | 35 | return $this->category; |
| 30 | 36 | } |
| 31 | 37 | |
| 32 | - public function getLayout($newFormId) { | |
| 38 | + public function getLayout($newFormId) | |
| 39 | + { | |
| 33 | 40 | return $this->layout($newFormId); |
| 34 | 41 | } |
| 35 | 42 | |
| 36 | - public function getFields($newFormId) { | |
| 43 | + public function getFields($newFormId) | |
| 44 | + { | |
| 37 | 45 | return $this->fields($newFormId); |
| 38 | 46 | } |
| 39 | 47 | } |