Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
56 | public function bag(): string |
||
57 | { |
||
58 | $bag = "<h1>Esta é a bolsa {$this->model}, da marca {$this->brand}</h1>"; |
||
59 | $bag .= "<p>Descrição: {$this->description}</p><br />"; |
||
60 | $bag .= "<p>Está dispoonível nas opções {$this->variant}</p><br />"; |
||
61 | $bag .= "<p>Tamanho: {$this->size}</p>"; |
||
62 | $bag .= "<p>Funcionalidades: {$this->functionalities}</p><br />"; |
||
63 | $bag .= "<p>Preço: {$this->price}</p><br /><br />"; |
||
64 | return $bag; |
||
65 | } |
||
67 |