Commit ac219874 authored by Franco Fichtner's avatar Franco Fichtner

mvc: apply style

parent cd949343
......@@ -145,7 +145,6 @@ $di->set('router', function () {
"action" => 2,
"params" => 3
));
}
$router->handle();
......
......@@ -134,7 +134,6 @@ $di->set('router', function () {
"action" => 2,
"params" => 3
));
}
$router->handle();
......
......@@ -199,7 +199,6 @@ class ApiControllerBase extends ControllerRoot
} else {
echo json_encode($data);
}
} else {
// output raw data
echo $data;
......
......@@ -71,7 +71,6 @@ class SystemhealthController extends ApiControllerBase
"recorded_time" => ($step * (int)$value->pdp_per_row) *
($this->countRows($value) - $firstValue_rowNumber)
]);
}
}
return ($info);
......@@ -224,7 +223,6 @@ class SystemhealthController extends ApiControllerBase
$last = $rra_info[0]["firstValue_timestamp"];
$first = $rra_info[$last_rra_key]["firstValue_timestamp"] + $rra_info[$last_rra_key]["recorded_time"] -
$rra_info[$last_rra_key]["full_step"];
} else {
$first = 0;
$last = 0;
......@@ -370,7 +368,6 @@ class SystemhealthController extends ApiControllerBase
$skip_nan = true;
$condensed_row_values[$count_values][$column_counter] = "NaN";
} elseif ($skip_nan == false) {
if ($archValue["type"] == "overview") {
// overwrite this values and skip averaging, looks better for overview
......@@ -424,12 +421,9 @@ class SystemhealthController extends ApiControllerBase
}
}
$rowCount++;
}
}
}
}
$key_counter++;
......@@ -555,7 +549,6 @@ class SystemhealthController extends ApiControllerBase
if (trim((string)$xml->rra[$count]->cf) != "AVERAGE") {
unset($xml->rra[$count]);
}
}
$data_sets_full = $this->getDataSetInfo($xml); // get dataSet information to include in answer
......
......@@ -166,7 +166,6 @@ class ServiceController extends ApiControllerBase
} else {
$status = "error generating ids template (".$bckresult.")";
}
}
return array("status" => $status);
}
......
......@@ -85,7 +85,6 @@ class SettingsController extends ApiControllerBase
$cnf->save();
$result["result"] = "saved";
}
}
return $result;
......
......@@ -171,7 +171,6 @@ class Radius implements IAuthConnector
break;
default:
syslog(LOG_ERR, "Unexpected return value:$radius\n");
}
radius_close($radius);
}
......@@ -240,7 +239,6 @@ class Radius implements IAuthConnector
break;
default:
syslog(LOG_ERR, "Unexpected return value:$radius\n");
}
radius_close($radius);
}
......@@ -310,7 +308,6 @@ class Radius implements IAuthConnector
break;
default:
syslog(LOG_ERR, "Unexpected return value:$radius\n");
}
radius_close($radius);
}
......@@ -388,7 +385,6 @@ class Radius implements IAuthConnector
default:
break;
}
}
return true;
break;
......
......@@ -119,7 +119,6 @@ class Backend
$this->getLogger()->error("Timeout (".$timeout.") executing : ".$event);
return null;
}
}
return str_replace($endOfStream, "", $resp);
......
......@@ -189,7 +189,6 @@ abstract class BaseModel
// add object as child to this node
$internal_data->addChildNode($xmlNode->getName(), $fieldObject);
}
}
}
......@@ -401,7 +400,6 @@ abstract class BaseModel
} else {
$target_node = $target_node->xpath($str_parts[$i])[0];
}
}
}
......@@ -466,7 +464,6 @@ abstract class BaseModel
} else {
return null;
}
}
return $node;
}
......
......@@ -499,8 +499,6 @@ abstract class BaseField
foreach ($this->getAttributes() as $AttrKey => $AttrValue) {
$subnode->addAttribute($AttrKey, $AttrValue);
}
}
foreach ($this->__items as $key => $FieldNode) {
......
......@@ -127,7 +127,6 @@ class ACL
$this->ACLtags[$aclID] = $aclPayload;
}
}
}
}
......
......@@ -67,5 +67,4 @@ class BaseModelTest extends \PHPUnit_Framework_TestCase
{
BaseModelTest::$model->general->FromEmailXXX = "test@test.nl";
}
}
......@@ -28,7 +28,6 @@
*/
namespace tests\OPNsense\Base\FieldTypes;
/**
* Class Field_Framework_TestCase
* @package tests\OPNsense\Base\FieldTypes
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment