-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathdeprecated.php
More file actions
36 lines (30 loc) · 811 Bytes
/
Copy pathdeprecated.php
File metadata and controls
36 lines (30 loc) · 811 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php
//phpcs:disable
declare( strict_types=1 );
/**
* Temporary placeholder for classes which are deprecated or moved.
*
* @todo Log to Wiki and remove in version 6.
*/
namespace Lipe\Lib\CMB2 {
use Lipe\Lib\CMB2\Box\BoxType;
use Lipe\Lib\CMB2\Field\Display;
/**
* @deprecated Use Lipe\Lib\CMB2\Field\Default_Callback instead
*/
class Event_Callbacks extends Field\Event_Callbacks {
}
/**
* @deprecated Use Lipe\Lib\CMB2\Field\Field_Type instead
*/
class Field_Type extends Field\Field_Type {
}
/**
* @deprecated Use Lipe\Lib\CMB2\Field\Default_Callback instead
*/
class Default_Callback extends Field\Default_Callback {
}
// Cannot extend traits and enums.
\class_alias( BoxType::class, 'Lipe\Lib\CMB2\BoxType' );
\class_alias( Display::class, 'Lipe\Lib\CMB2\Display' );
}