Applied fixes from StyleCI
This commit is contained in:
committed by
StyleCI Bot
parent
500a2d76f4
commit
56bc64132b
@@ -1,6 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
*/
|
||||
|
||||
class AngleField extends IntField
|
||||
{
|
||||
public function __construct($name, $default, $hint = 'In degrees clockwise, negative values accepted')
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
*/
|
||||
|
||||
class CheckboxField extends Field
|
||||
{
|
||||
public function init($request)
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
*/
|
||||
|
||||
class CheckboxSetField extends Field
|
||||
{
|
||||
public $options;
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
*/
|
||||
|
||||
class ColorField extends Field
|
||||
{
|
||||
public function __construct($name, $default, $hint = 'RRGGBB hex, leave blank for transparent background')
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
*/
|
||||
|
||||
class CoordinateField extends Field
|
||||
{
|
||||
public function __construct($name, $default, $hint = 'Smart coordinate')
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
*/
|
||||
|
||||
class Demo
|
||||
{
|
||||
public $name;
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
*/
|
||||
|
||||
class Field
|
||||
{
|
||||
public $name;
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
*/
|
||||
|
||||
class FileSelectField extends Field
|
||||
{
|
||||
public $request;
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
*/
|
||||
|
||||
class FloatField extends Field
|
||||
{
|
||||
public function __construct($name, $default, $hint = 'Float')
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
*/
|
||||
|
||||
class FormatSelectField extends SelectField
|
||||
{
|
||||
public function __construct($name)
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
*/
|
||||
|
||||
class IntField extends Field
|
||||
{
|
||||
public function __construct($name, $default, $hint = 'Integer')
|
||||
|
||||
@@ -2,9 +2,6 @@
|
||||
/**
|
||||
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
**/
|
||||
|
||||
/**
|
||||
*/
|
||||
class Request
|
||||
{
|
||||
protected $vars = [];
|
||||
@@ -33,7 +30,7 @@
|
||||
{
|
||||
if (strlen($keyval) == 0)
|
||||
continue;
|
||||
|
||||
|
||||
if (strpos($keyval, '=') === false)
|
||||
{
|
||||
$key = $keyval;
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
*/
|
||||
|
||||
class SelectField extends Field
|
||||
{
|
||||
public $options;
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
*/
|
||||
|
||||
define('DEMO_PATH', realpath(dirname(__FILE__).DIRECTORY_SEPARATOR.'..').DIRECTORY_SEPARATOR);
|
||||
|
||||
error_reporting(E_ALL | E_STRICT);
|
||||
|
||||
Reference in New Issue
Block a user