Skip to content

Commit 537e71d

Browse files
committed
Fix code examples in PHPDoc
1 parent 12ad0a7 commit 537e71d

File tree

1 file changed

+14
-15
lines changed

1 file changed

+14
-15
lines changed

Catalogue/AbstractOperation.php

Lines changed: 14 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -37,21 +37,20 @@ abstract class AbstractOperation implements OperationInterface
3737
* This array stores 'all', 'new' and 'obsolete' messages for all valid domains.
3838
*
3939
* The data structure of this array is as follows:
40-
* ```php
41-
* array(
42-
* 'domain 1' => array(
43-
* 'all' => array(...),
44-
* 'new' => array(...),
45-
* 'obsolete' => array(...)
46-
* ),
47-
* 'domain 2' => array(
48-
* 'all' => array(...),
49-
* 'new' => array(...),
50-
* 'obsolete' => array(...)
51-
* ),
52-
* ...
53-
* )
54-
* ```
40+
*
41+
* array(
42+
* 'domain 1' => array(
43+
* 'all' => array(...),
44+
* 'new' => array(...),
45+
* 'obsolete' => array(...)
46+
* ),
47+
* 'domain 2' => array(
48+
* 'all' => array(...),
49+
* 'new' => array(...),
50+
* 'obsolete' => array(...)
51+
* ),
52+
* ...
53+
* )
5554
*
5655
* @var array The array that stores 'all', 'new' and 'obsolete' messages
5756
*/

0 commit comments

Comments
 (0)