Skip to content
This repository was archived by the owner on Jan 29, 2020. It is now read-only.

Commit 211d046

Browse files
committed
Improve phpdoc for process sections flag getter/setter
1 parent 6134936 commit 211d046

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

src/Reader/Ini.php

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
/**
33
* @see https://github.com/zendframework/zend-config for the canonical source repository
4-
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
4+
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (http://www.zend.com)
55
* @license https://github.com/zendframework/zend-config/blob/master/LICENSE.md New BSD License
66
*/
77

@@ -59,8 +59,11 @@ public function getNestSeparator()
5959
}
6060

6161
/**
62-
* Sets process sections
62+
* Marks whether sections should be processed.
63+
* When sections are not processed,section names are stripped and section
64+
* values are merged
6365
*
66+
* @see https://www.php.net/parse_ini_file
6467
* @param bool $processSections
6568
* @return $this
6669
*/
@@ -71,8 +74,11 @@ public function setProcessSections($processSections)
7174
}
7275

7376
/**
74-
* Get process sections
77+
* Get if sections should be processed
78+
* When sections are not processed,section names are stripped and section
79+
* values are merged
7580
*
81+
* @see https://www.php.net/parse_ini_file
7682
* @return bool
7783
*/
7884
public function getProcessSections()

0 commit comments

Comments
 (0)