|
1 | 1 | <?php
|
2 | 2 | /**
|
3 | 3 | * Plugin Name: Automation Tests
|
4 |
| - * Description: A plugin to test automation workflows. |
| 4 | + * Description: A plugin to test automation workflows. |
5 | 5 | * Version: 5.2.0
|
6 | 6 | * Author: Jason Bahl
|
7 | 7 | * Tested up to: 6.2
|
|
21 | 21 | add_action( 'admin_notices', function() {
|
22 | 22 | echo '<div class="notice notice-info"><p>🌮 Automation Tests v' . AUTOMATION_TESTS_VERSION . '</p></div>';
|
23 | 23 | });
|
24 |
| - |
25 |
| -/** |
26 |
| - * Testing a new feature with a since tag |
27 |
| - * |
28 |
| - * @since 4.2.0 |
29 |
| - * @deprecated @since 4.2.0 This function was deprecated when it was added because it was just a test. |
30 |
| - */ |
31 |
| -function test_since_next_version() { |
32 |
| - _deprecated_function( 'test_since_next_version', '@since 4.2.0', '' ) |
33 |
| -} |
34 |
| - |
35 |
| -/** |
36 |
| - * Testing a new feature with a since tag |
37 |
| - * |
38 |
| - * @since 4.3.0 |
39 |
| - * @deprecated 4.3.0 This function was deprecated when it was added because it was just a test. |
40 |
| - */ |
41 |
| -function test_since_next_version_again() { |
42 |
| - _deprecated_function( 'test_since_next_version_again', '4.3.0', '' ) |
43 |
| -} |
44 |
| - |
45 |
| -/** |
46 |
| - * Testing a new feature with a since tag |
47 |
| - * |
48 |
| - * @since 4.4.0 |
49 |
| - * @deprecated 4.4.0 This function was deprecated when it was added because it was just a test. |
50 |
| - */ |
51 |
| -function test_since_next_version_again_2() { |
52 |
| - _deprecated_function( 'test_since_next_version_again_2', '4.4.0', '' ) |
53 |
| -} |
54 |
| - |
55 |
| -/** |
56 |
| - * Testing a new feature with a since tag |
57 |
| - * |
58 |
| - * @since 5.0.0 |
59 |
| - * @deprecated 5.0.0 This function was deprecated when it was added because it was just a test. |
60 |
| - */ |
61 |
| -function test_since_next_version_again_3() { |
62 |
| - _deprecated_function( 'test_since_next_version_again_3', '5.0.0', '' ) |
63 |
| -} |
64 |
| - |
65 |
| -/** |
66 |
| - * Testing a new feature with a since tag |
67 |
| - * |
68 |
| - * @since 5.1.0 |
69 |
| - * @deprecated 5.1.0 This function was deprecated when it was added because it was just a test. |
70 |
| - */ |
71 |
| -function test_since_next_version_again_4() { |
72 |
| - _deprecated_function( 'test_since_next_version_again_4', '5.1.0', '' ) |
73 |
| -} |
74 |
| - |
75 |
| -// feat: replace 5.2.0 test |
76 |
| - |
0 commit comments