File tree Expand file tree Collapse file tree 1 file changed +14
-15
lines changed Expand file tree Collapse file tree 1 file changed +14
-15
lines changed Original file line number Diff line number Diff line change @@ -37,21 +37,20 @@ abstract class AbstractOperation implements OperationInterface
37
37
* This array stores 'all', 'new' and 'obsolete' messages for all valid domains.
38
38
*
39
39
* 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
+ * )
55
54
*
56
55
* @var array The array that stores 'all', 'new' and 'obsolete' messages
57
56
*/
You can’t perform that action at this time.
0 commit comments