Skip to content

Commit 6b6f561

Browse files
authored
feat!: remove deprecated functions
1 parent 202164a commit 6b6f561

File tree

1 file changed

+1
-54
lines changed

1 file changed

+1
-54
lines changed

automation-tests.php

Lines changed: 1 addition & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
/**
33
* Plugin Name: Automation Tests
4-
* Description: A plugin to test automation workflows.
4+
* Description: A plugin to test automation workflows.
55
* Version: 5.2.0
66
* Author: Jason Bahl
77
* Tested up to: 6.2
@@ -21,56 +21,3 @@
2121
add_action( 'admin_notices', function() {
2222
echo '<div class="notice notice-info"><p>🌮 Automation Tests v' . AUTOMATION_TESTS_VERSION . '</p></div>';
2323
});
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

Comments
 (0)