Skip to content

Commit 2aac551

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents 869b3d3 + fb4c8fd commit 2aac551

File tree

9 files changed

+31
-31
lines changed

9 files changed

+31
-31
lines changed

docs/modifiers/document-level.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ documents:
2626
description: API Source Files
2727
sourcePaths:
2828
- src/Api
29-
filePattern: *.php
29+
filePattern: "*.php"
3030
modifiers:
3131
- php-docs
3232
```

docs/modifiers/php-content-filter.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ documents:
2525
description: API Source Files
2626
sourcePaths:
2727
- src/Api
28-
filePattern: *.php
28+
filePattern: "*.php"
2929
modifiers:
3030
- name: php-content-filter
3131
options:

docs/modifiers/php-docs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ documents:
1616
description: API Classes
1717
sourcePaths:
1818
- src/Api
19-
filePattern: *.php
19+
filePattern: "*.php"
2020
modifiers:
2121
- php-docs
2222
```
@@ -34,7 +34,7 @@ documents:
3434
description: API Classes
3535
sourcePaths:
3636
- src/Api
37-
filePattern: *.php
37+
filePattern: "*.php"
3838
modifiers:
3939
- name: php-docs
4040
options:

docs/modifiers/php-signature.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ documents:
1313
description: API Source Files
1414
sourcePaths:
1515
- src/Api
16-
filePattern: *.php
16+
filePattern: "*.php"
1717
modifiers:
1818
- php-signature
1919
```

docs/modifiers/sanitizer.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ documents:
1414
description: API Classes
1515
sourcePaths:
1616
- src/Auth
17-
filePattern: *.php
17+
filePattern: "*.php"
1818
modifiers:
1919
- name: sanitizer
2020
options:
@@ -212,9 +212,9 @@ documents:
212212
- type: file
213213
sourcePaths:
214214
- src
215-
filePattern: *.php
215+
filePattern: "*.php"
216216
- type: file
217217
sourcePaths:
218218
- config
219-
filePattern: *.json
219+
filePattern: "*.json"
220220
```

docs/sources/composer-source.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ documents:
1313
packages:
1414
- symfony/finder
1515
- psr/log
16-
filePattern: *.php
16+
filePattern: "*.php"
1717
notPath:
1818
- tests
1919
```
@@ -66,7 +66,7 @@ documents:
6666
packages:
6767
- symfony/console
6868
- symfony/http-foundation
69-
filePattern: *.php
69+
filePattern: "*.php"
7070
path: Component
7171
notPath:
7272
- tests

docs/sources/git-diff-source.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ documents:
1010
- type: git_diff
1111
description: Recent Git Changes
1212
commit: last
13-
filePattern: *.php
13+
filePattern: "*.php"
1414
notPath:
1515
- tests
1616
- vendor
@@ -48,7 +48,7 @@ documents:
4848
sources:
4949
- type: git_diff
5050
commit: last-week
51-
filePattern: *.php
51+
filePattern: "*.php"
5252
```
5353

5454
| Preset | Description | Git Command Equivalent | |
@@ -100,7 +100,7 @@ documents:
100100
- type: git_diff
101101
repository: .
102102
commit: abc1234
103-
filePattern: *.php
103+
filePattern: "*.php"
104104
```
105105

106106
## Specific file in commit
@@ -113,7 +113,7 @@ documents:
113113
- type: git_diff
114114
repository: .
115115
commit: abc1234:path/to/file.php
116-
filePattern: *.php
116+
filePattern: "*.php"
117117
```
118118

119119
## Version comparison
@@ -126,7 +126,7 @@ documents:
126126
- type: git_diff
127127
repository: .
128128
commit: v1.0.0..v2.0.0
129-
filePattern: *.php
129+
filePattern: "*.php"
130130
```
131131

132132
## Date-based commit
@@ -139,7 +139,7 @@ documents:
139139
- type: git_diff
140140
repository: .
141141
commit: since:2023-01-15
142-
filePattern: *.php
142+
filePattern: "*.php"
143143
```
144144

145145
## Specific date commit
@@ -152,5 +152,5 @@ documents:
152152
- type: git_diff
153153
repository: .
154154
commit: date:2023-01-15
155-
filePattern: *.php
155+
filePattern: "*.php"
156156
```

docs/sources/github-source.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,9 @@ documents:
7878
sourcePaths:
7979
- src
8080
filePattern:
81-
- *.php
82-
- *.json
83-
- *.md
81+
- "*.php"
82+
- "*.json"
83+
- "*.md"
8484
showTreeView: true
8585
```
8686

@@ -99,7 +99,7 @@ documents:
9999
sourcePaths:
100100
- src
101101
path: Controller
102-
filePattern: *.php
102+
filePattern: "*.php"
103103
showTreeView: true
104104
```
105105

@@ -118,7 +118,7 @@ documents:
118118
path:
119119
- Controller
120120
- Service
121-
filePattern: *.php
121+
filePattern: "*.php"
122122
showTreeView: true
123123
```
124124

@@ -137,7 +137,7 @@ documents:
137137
sourcePaths:
138138
- src
139139
contains: class Repository
140-
filePattern: *.php
140+
filePattern: "*.php"
141141
showTreeView: true
142142
```
143143

@@ -154,7 +154,7 @@ documents:
154154
sourcePaths:
155155
- src
156156
notContains: @deprecated
157-
filePattern: *.php
157+
filePattern: "*.php"
158158
showTreeView: true
159159
```
160160

@@ -176,6 +176,6 @@ documents:
176176
notContains:
177177
- @deprecated
178178
- @internal
179-
filePattern: *.php
179+
filePattern: "*.php"
180180
showTreeView: true
181181
```

docs/sources/tree-source.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ documents:
1212
description: Project File Structure
1313
sourcePaths:
1414
- src
15-
filePattern: *.php
15+
filePattern: "*.php"
1616
notPath:
1717
- tests
1818
- vendor
@@ -96,7 +96,7 @@ documents:
9696
description: Source Code Structure
9797
sourcePaths:
9898
- src
99-
filePattern: *.php
99+
filePattern: "*.php"
100100
notPath:
101101
- tests
102102
- vendor
@@ -116,8 +116,8 @@ documents:
116116
sourcePaths:
117117
- src/Core
118118
filePattern:
119-
- *.php
120-
- *.json
119+
- "*.php"
120+
- "*.json"
121121
maxDepth: 2
122122
showSize: true
123123
showLastModified: true
@@ -141,7 +141,7 @@ documents:
141141
- src/App
142142
- config
143143
- resources/views
144-
filePattern: *.*
144+
filePattern: "*.*"
145145
maxDepth: 3
146146
```
147147
@@ -160,7 +160,7 @@ documents:
160160
- src
161161
contains: class Controller
162162
notContains: @deprecated
163-
filePattern: *.php
163+
filePattern: "*.php"
164164
```
165165
166166
## Directory-Only View

0 commit comments

Comments
 (0)