Issues (138)

legacy/Elements/Abstract.php (1 issue)

1
<?php
2
3
use Nip\Form\Elements\AbstractElement;
4
5
/**
6
 * Class Nip_Form_Element_Abstract
7
 * @deprecated Use \Nip\Form\Elements\AbstractElement
8
 */
9
abstract class Nip_Form_Element_Abstract extends AbstractElement implements Nip_Form_Element_Interface
0 ignored issues
show
Deprecated Code introduced by
The interface Nip_Form_Element_Interface has been deprecated: Use \Nip\Form\Elements\ElementInterface ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-deprecated  annotation

9
abstract class Nip_Form_Element_Abstract extends AbstractElement implements /** @scrutinizer ignore-deprecated */ Nip_Form_Element_Interface

This interface has been deprecated. The supplier of the interface has supplied an explanatory message.

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

Loading history...
10
{
11
}
12