AbstractItem
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 3
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 0
lcom 0
cbo 0
dl 0
loc 3
c 0
b 0
f 0
1
<?php
2
/**
3
 * Part of the Joomla Framework Cache Package
4
 *
5
 * @copyright  Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
6
 * @license    GNU General Public License version 2 or later; see LICENSE
7
 */
8
9
namespace Joomla\Cache\Item;
10
11
use Psr\Cache\CacheItemInterface;
12
13
/**
14
 * Abstract cache item instance for the Joomla Framework.
15
 *
16
 * @since       1.0
17
 * @deprecated  The joomla/cache package is deprecated
18
 */
19
abstract class AbstractItem implements HasExpirationDateInterface, CacheItemInterface
0 ignored issues
show
Deprecated Code introduced by
The interface Joomla\Cache\Item\HasExpirationDateInterface has been deprecated with message: The joomla/cache package is deprecated

This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the type will be removed from the class and what other constant to use instead.

Loading history...
20
{
21
}
22