We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee498a8 commit f85fca4Copy full SHA for f85fca4
.github/workflows/static-code-analysis.yml
@@ -19,5 +19,8 @@ jobs:
19
- name: Install Composer dependencies
20
uses: ramsey/composer-install@v2
21
22
+ - name: Install PHPUnit
23
+ run: composer test -- --version
24
+
25
- name: Run PHPStan
26
run: composer static-analysis
phpstan.neon.dist
@@ -5,3 +5,5 @@ parameters:
5
- tests
6
excludePaths:
7
- tests/coverage
8
+ ignoreErrors:
9
+ - '#Method Tests\\.+ has no return type specified.#'
src/Exceptions/SelectorException.php
@@ -2,6 +2,9 @@
2
3
namespace SteveGrunwell\PHPUnit_Markup_Assertions\Exceptions;
4
+/**
+ * Base exception for selector-related issues.
+ */
class SelectorException extends \InvalidArgumentException
{
10
}
0 commit comments