mirror of
https://github.com/parsecsv/parsecsv-for-php.git
synced 2026-02-19 08:36:39 +00:00
Removed @access annotations because they don't add value
I believe they come from the time when PHP didn't universally support the language keywords. phpDocumentor doesn't need the @access annotations.
This commit is contained in:
@@ -11,7 +11,6 @@ trait DatatypeTrait {
|
|||||||
* Data types of CSV data-columns, keyed by the column name. Possible values
|
* Data types of CSV data-columns, keyed by the column name. Possible values
|
||||||
* are string, float, integer, boolean, date. See DatatypeEnum.
|
* are string, float, integer, boolean, date. See DatatypeEnum.
|
||||||
*
|
*
|
||||||
* @access public
|
|
||||||
* @var array
|
* @var array
|
||||||
*/
|
*/
|
||||||
public $data_types = [];
|
public $data_types = [];
|
||||||
@@ -20,8 +19,6 @@ trait DatatypeTrait {
|
|||||||
* Check data type for one column.
|
* Check data type for one column.
|
||||||
* Check for most commonly data type for one column.
|
* Check for most commonly data type for one column.
|
||||||
*
|
*
|
||||||
* @access private
|
|
||||||
*
|
|
||||||
* @param array $datatypes
|
* @param array $datatypes
|
||||||
*
|
*
|
||||||
* @return string|false
|
* @return string|false
|
||||||
@@ -48,8 +45,6 @@ trait DatatypeTrait {
|
|||||||
*
|
*
|
||||||
* Requires PHP >= 5.5
|
* Requires PHP >= 5.5
|
||||||
*
|
*
|
||||||
* @access public
|
|
||||||
*
|
|
||||||
* @uses DatatypeEnum::getValidTypeFromSample
|
* @uses DatatypeEnum::getValidTypeFromSample
|
||||||
*
|
*
|
||||||
* @return array|bool
|
* @return array|bool
|
||||||
@@ -81,8 +76,6 @@ trait DatatypeTrait {
|
|||||||
*
|
*
|
||||||
* Requires PHP >= 5.5
|
* Requires PHP >= 5.5
|
||||||
*
|
*
|
||||||
* @access public
|
|
||||||
*
|
|
||||||
* @uses DatatypeEnum::getValidTypeFromSample
|
* @uses DatatypeEnum::getValidTypeFromSample
|
||||||
*
|
*
|
||||||
* @return bool
|
* @return bool
|
||||||
|
|||||||
Reference in New Issue
Block a user