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 9aa1d41 commit 3c09eb3Copy full SHA for 3c09eb3
CHANGELOG.md
@@ -1,5 +1,10 @@
1
# Release Notes for Webhooks for Craft CMS
2
3
+## Unreleased
4
+
5
+### Fixed
6
+- Fixed an error that could occur when detecting available component classes in Craft 3.2.
7
8
## 2.0.1 - 2019-03-20
9
10
### Fixed
src/WebhookHelper.php
@@ -109,6 +109,7 @@ private static function _findClasses(): array
109
!class_exists($class, false) &&
110
!interface_exists($class, false) &&
111
!trait_exists($class, false) &&
112
+ strpos($class, 'craft\\test\\') !== 0 &&
113
file_exists($file) &&
114
substr($class, -4) !== 'Test' &&
115
substr($class, -8) !== 'TestCase'
0 commit comments