| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 43 | protected function setTitre(string $titre) |
||
| 44 | { |
||
| 45 | // Typo : majuscule |
||
| 46 | $titre = TextUtil::mb_ucfirst($titre); |
||
| 47 | // Typo : sous-titre précédé de " : " |
||
| 48 | $titre = preg_replace('#[ ]*:[ ]*#', ' : ', $titre); |
||
| 49 | // todo typo : déplacer sous-titre dans [sous-titre] |
||
| 50 | |||
| 51 | $this->parametersValues['titre'] = $titre; |
||
| 52 | } |
||
| 54 |