Skip to content

Commit 14ea622

Browse files
committed
Merge branch '9.x'
# Conflicts: # CHANGELOG.md # src/Illuminate/Foundation/Application.php # src/Illuminate/Support/Facades/Notification.php # src/Illuminate/Support/Facades/Queue.php
2 parents 1e51a5a + 0d7b45e commit 14ea622

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

72 files changed

+2253
-710
lines changed

.github/workflows/static-analysis.yml

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
pull_request:
99

1010
jobs:
11-
src:
11+
types:
1212
runs-on: ubuntu-22.04
1313

1414
strategy:
@@ -38,3 +38,32 @@ jobs:
3838

3939
- name: Execute type checking
4040
run: vendor/bin/phpstan --configuration="phpstan.${{ matrix.directory }}.neon.dist"
41+
42+
facades:
43+
runs-on: ubuntu-22.04
44+
45+
strategy:
46+
fail-fast: true
47+
48+
name: Facade DocBlocks
49+
50+
steps:
51+
- name: Checkout code
52+
uses: actions/checkout@v3
53+
54+
- name: Setup PHP
55+
uses: shivammathur/setup-php@v2
56+
with:
57+
php-version: 8.1
58+
tools: composer:v2
59+
coverage: none
60+
61+
- name: Install dependencies
62+
uses: nick-fields/retry@v2
63+
with:
64+
timeout_minutes: 5
65+
max_attempts: 5
66+
command: composer update --prefer-stable --prefer-dist --no-interaction --no-progress
67+
68+
- name: Lint facade docblocks
69+
run: php -f bin/facades.php -- --lint

0 commit comments

Comments
 (0)