Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/FirebaseAppHosting/RolloutPolicy.php
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@ public function getDisabledTime()
* Optional. A list of file paths patterns to exclude from triggering a
* rollout. Patterns in this list take precedence over required_paths.
* **Note**: All paths must be in the ignored_paths in order for the rollout
* to be skipped. Limited to 100 paths. Example: ignored_paths: { pattern:
* "foo/bar/excluded type: GLOB }
* to be skipped. Limited to 100 paths. Example: ``` ignored_paths: { pattern:
* "foo/bar/excluded", type: "GLOB" } ```
*
* @param Path[] $ignoredPaths
*/
Expand All @@ -122,8 +122,8 @@ public function getIgnoredPaths()
* at least one of the changed files in the commit are present in this list.
* This field is optional; the rollout policy will default to triggering on
* all paths if both ignored_paths and required_paths are not populated.
* Limited to 100 paths. Example: required_paths: { pattern: "foo/bar” type:
* GLOB }
* Limited to 100 paths. Example: ``` required_paths: { pattern: "foo/bar",
* type: "GLOB" } ```
*
* @param Path[] $requiredPaths
*/
Expand Down
Loading