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 895c8d0Copy full SHA for 895c8d0
.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
src/Exceptions/SelectorException.php
@@ -2,6 +2,9 @@
2
3
namespace SteveGrunwell\PHPUnit_Markup_Assertions\Exceptions;
4
5
+/**
6
+ * Base exception for selector-related issues.
7
+ */
8
class SelectorException extends \InvalidArgumentException
9
{
10
}
0 commit comments