Skip to content
This repository has been archived by the owner on Apr 18, 2024. It is now read-only.

Commit

Permalink
chore: update example for phpHeaderDoc
Browse files Browse the repository at this point in the history
  • Loading branch information
paul-thebaud committed Dec 17, 2023
1 parent 92a0723 commit a7d6fa3
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
14 changes: 7 additions & 7 deletions public/docs-content/en/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,13 +154,13 @@ in the test class ("license" for example).
* **Parameter Key** : `phpHeaderDoc`
* **Type** : `string`
* **Default value**: `'''`
* **Description** : Defines the PHPDoc header to prepend to the test class.
Example :
```php
/*
* @license MIT
*/
```
* **Description** : Defines the PHPDoc header to prepend to the test class. Example :

```php
return [
'phpHeaderDoc' => "/*\n * @license MIT\n */",
];
```

### Options

Expand Down
14 changes: 7 additions & 7 deletions public/docs-content/fr/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,13 +154,13 @@ dans la classe de test ("license" par exemple).
* **Clé du paramètre** : `phpHeaderDoc`
* **Type** : `string`
* **Valeur par défaut**: `'''`
* **Description** : Définit l'annotation PHPDoc qui doivent être ajoutées en entête dans la classe de test.
Exemple :
```php
/*
* @license MIT
*/
```
* **Description** : Définit l'annotation PHPDoc qui doivent être ajoutées en entête dans la classe de test. Exemple :

```php
return [
'phpHeaderDoc' => "/*\n * @license MIT\n */",
];
```

### Options

Expand Down

0 comments on commit a7d6fa3

Please sign in to comment.