File tree Expand file tree Collapse file tree 3 files changed +19
-14
lines changed Expand file tree Collapse file tree 3 files changed +19
-14
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,11 @@ PHP_CodeCoverage 1.2
33
44This is the list of changes for the PHP_CodeCoverage 1.2 release series.
55
6+ PHP_CodeCoverage 1.2.2
7+ ----------------------
8+
9+ * Fixed #115 : Backwards compatibility wrapper for ` trait_exists() ` does not work.
10+
611PHP_CodeCoverage 1.2.1
712----------------------
813
Original file line number Diff line number Diff line change 4343 * @since File available since Release 1.0.0
4444 */
4545
46+ // @codeCoverageIgnoreStart
47+ // @codingStandardsIgnoreStart
48+ /**
49+ * @SuppressWarnings(PHPMD)
50+ */
51+ if (!function_exists ('trait_exists ' )) {
52+ function trait_exists ($ name )
53+ {
54+ return FALSE ;
55+ }
56+ }
57+ // @codingStandardsIgnoreEnd
58+ // @codeCoverageIgnoreEnd
59+
4660/**
4761 * Provides collection functionality for PHP code coverage information.
4862 *
Original file line number Diff line number Diff line change 4343 * @since File available since Release 1.0.0
4444 */
4545
46- // @codeCoverageIgnoreStart
47- // @codingStandardsIgnoreStart
48- /**
49- * @SuppressWarnings(PHPMD)
50- */
51- if (!function_exists ('trait_exists ' )) {
52- function trait_exists ($ name )
53- {
54- return FALSE ;
55- }
56- }
57- // @codingStandardsIgnoreEnd
58- // @codeCoverageIgnoreEnd
59-
6046/**
6147 * Utility methods.
6248 *
You can’t perform that action at this time.
0 commit comments