Applied fixes from StyleCI

This commit is contained in:
vijaysebastian
2016-02-29 07:15:40 -05:00
committed by StyleCI Bot
parent 500a2d76f4
commit 56bc64132b
105 changed files with 256 additions and 454 deletions

View File

@@ -1,6 +1,5 @@
<?php
/**
*/
class AngleField extends IntField
{
public function __construct($name, $default, $hint = 'In degrees clockwise, negative values accepted')

View File

@@ -1,6 +1,5 @@
<?php
/**
*/
class CheckboxField extends Field
{
public function init($request)

View File

@@ -1,6 +1,5 @@
<?php
/**
*/
class CheckboxSetField extends Field
{
public $options;

View File

@@ -1,6 +1,5 @@
<?php
/**
*/
class ColorField extends Field
{
public function __construct($name, $default, $hint = 'RRGGBB hex, leave blank for transparent background')

View File

@@ -1,6 +1,5 @@
<?php
/**
*/
class CoordinateField extends Field
{
public function __construct($name, $default, $hint = 'Smart coordinate')

View File

@@ -1,6 +1,5 @@
<?php
/**
*/
class Demo
{
public $name;

View File

@@ -1,6 +1,5 @@
<?php
/**
*/
class Field
{
public $name;

View File

@@ -1,6 +1,5 @@
<?php
/**
*/
class FileSelectField extends Field
{
public $request;

View File

@@ -1,6 +1,5 @@
<?php
/**
*/
class FloatField extends Field
{
public function __construct($name, $default, $hint = 'Float')

View File

@@ -1,6 +1,5 @@
<?php
/**
*/
class FormatSelectField extends SelectField
{
public function __construct($name)

View File

@@ -1,6 +1,5 @@
<?php
/**
*/
class IntField extends Field
{
public function __construct($name, $default, $hint = 'Integer')

View File

@@ -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;

View File

@@ -1,6 +1,5 @@
<?php
/**
*/
class SelectField extends Field
{
public $options;

View File

@@ -1,6 +1,5 @@
<?php
/**
*/
define('DEMO_PATH', realpath(dirname(__FILE__).DIRECTORY_SEPARATOR.'..').DIRECTORY_SEPARATOR);
error_reporting(E_ALL | E_STRICT);