Field_Modal_Bar::getInput()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 0
dl 0
loc 4
rs 10
c 0
b 0
f 0
1
<?php
2
/**
3
 * @copyright  Copyright (C) 2005 - 2016 Open Source Matters, Inc. All rights reserved.
4
 * @license    GNU General Public License version 2 or later; see LICENSE
5
 */
6
7
namespace Foo\Form;
8
9
/**
10
 * Form Field class for the Joomla Framework.
11
 *
12
 * @since  1.0
13
 */
14
class Field_Modal_Bar extends \Joomla\Form\Field
0 ignored issues
show
Deprecated Code introduced by
The class Joomla\Form\Field has been deprecated with message: The joomla/form 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...
15
{
16
	/**
17
	 * Method to get the field input.
18
	 *
19
	 * @return  string        The field input.
20
	 */
21
	protected function getInput()
22
	{
23
		return 'Modal';
24
	}
25
}
26