You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -71,13 +71,15 @@ This parameter accepts an array holding options.
71
71
-`output_buffer` : (boolean) whether output buffer should be printed.
72
72
-`exclude_classes` : (array) an array holding class names to exclude.
73
73
-`base_dir_var` : (string) the variable or constant name that is prefixed before the inclusion path.
74
-
-`output_var_name` : (string) The variable string that the map array is assigned to. Default: `$aClassMap`. If `return` is set, the variable will not be set but the file just returns the generated map array.
74
+
-`output_var_name` : (string) the variable string that the map array is assigned to. Default: `$aClassMap`. If `return` is set, the variable will not be set but the file just returns the generated map array.
75
+
-`do_in_constructor` : (boolean) whether to perform the action in the constructor. Default: `true`.
75
76
-`search` : (array) the arguments for the directory search options.
76
77
-`allowed_extensions`: (array) allowed file extensions to be listed.
77
78
-`exclude_dir_paths`: (array) directory paths to exclude from the list.
78
79
-`exclude_dir_names`: (array) directory base names to exclude from the list.
79
80
-`exclude_file_names`: (array) file names (with extension) to exclude from the list.
80
-
-`is_recursive`: (boolean) whether to scan sub-directories.
81
+
-`is_recursive`: (boolean) whether to scan sub-directories.
82
+
-`ignore_note_file_names`: (array) ignore note file names that tell the parser to skip the directory. When one of the files exist in the parsing directory, the directory will be skipped. Default: `[ 'ignore-class-map.txt' ]`,
'exclude_file_names' => array(), // 1.0.3+ includes an file extension.
64
65
'is_recursive' => true,
66
+
'ignore_note_file_names' => array( 'ignore-class-map.txt' ) // 1.1.0 When this option is present and the parsing directory contains a file matching one of the set names, the directory will be skipped.
'exclude_dir_names' => array(), // the directory 'base' name
39
+
'exclude_file_names' => array(), // 1.0.3+ includes an file extension.
40
+
'is_recursive' => true,
41
+
'ignore_note_file_names' => array( 'ignore-class-map.txt' ) // 1.1.0 When this option is present and the parsing directory contains a file matching one of the set names, the directory will be skipped.
41
42
),
42
43
43
44
'carriage_return' => PHP_EOL,
@@ -128,11 +129,34 @@ protected function _formatPaths( $asDirPaths ) {
0 commit comments