Remove space from end of line

This commit is contained in:
Dennis Eichhorn 2018-02-03 11:52:30 +01:00
parent 2606cf3701
commit 98b9282a0e
20 changed files with 39 additions and 39 deletions

View File

@ -47,7 +47,7 @@ class Category
return $this->id;
}
public function getParent()
public function getParent()
{
return $this->parent;
}
@ -57,7 +57,7 @@ class Category
$this->parent = $parent;
}
public function getResponsible()
public function getResponsible()
{
return $this->responsible;
}
@ -72,11 +72,11 @@ class Category
$this->deputy = $deputy;
}
public function getDeputy()
public function getDeputy()
{
return $this->deputy;
}
public function getTitle() : string
{
return $this->title;

View File

@ -54,7 +54,7 @@ class Cause
$this->risk = $risk;
}
public function getRisk()
public function getRisk()
{
return $this->risk;
}
@ -79,7 +79,7 @@ class Cause
$this->probability = $probability;
}
public function getDepartment()
public function getDepartment()
{
return $this->department;
}

View File

@ -53,7 +53,7 @@ class Department
$this->department = $department;
}
public function getResponsible()
public function getResponsible()
{
return $this->responsible;
}
@ -63,7 +63,7 @@ class Department
$this->responsible = $responsible;
}
public function getDeputy()
public function getDeputy()
{
return $this->deputy;
}

View File

@ -74,7 +74,7 @@ class Process
$this->descriptionRaw = $description;
}
public function getUnit()
public function getUnit()
{
return $this->unit;
}
@ -84,7 +84,7 @@ class Process
$this->unit = $unit;
}
public function getDepartment()
public function getDepartment()
{
return $this->department;
}
@ -94,7 +94,7 @@ class Process
$this->department = $department;
}
public function getResponsible()
public function getResponsible()
{
return $this->responsible;
}
@ -104,7 +104,7 @@ class Process
$this->responsible = $responsible;
}
public function getDeputy()
public function getDeputy()
{
return $this->deputy;
}

View File

@ -51,7 +51,7 @@ class Project
$this->project = $project;
}
public function getResponsible()
public function getResponsible()
{
return $this->responsible;
}
@ -61,7 +61,7 @@ class Project
$this->responsible = $responsible;
}
public function getDeputy()
public function getDeputy()
{
return $this->deputy;
}

View File

@ -140,7 +140,7 @@ class Risk
return $this->descriptionRaw;
}
public function getUnit()
public function getUnit()
{
return $this->unit;
}
@ -160,7 +160,7 @@ class Risk
$this->department = $department;
}
public function getCategory()
public function getCategory()
{
return $this->category;
}
@ -170,7 +170,7 @@ class Risk
$this->category = $category;
}
public function getProject()
public function getProject()
{
return $this->project;
}
@ -180,7 +180,7 @@ class Risk
$this->project = $project;
}
public function getProcess()
public function getProcess()
{
return $this->process;
}
@ -190,7 +190,7 @@ class Risk
$this->process = $process;
}
public function getResponsible()
public function getResponsible()
{
return $this->responsible;
}
@ -200,7 +200,7 @@ class Risk
$this->responsible = $responsible;
}
public function getDeputy()
public function getDeputy()
{
return $this->deputy;
}

View File

@ -51,25 +51,25 @@ class RiskMapper extends DataMapperAbstract
* @since 1.0.0
*/
protected static $hasMany = [
'media' => [
'media' => [
'mapper' => MediaMapper::class,
'table' => 'riskmngmt_risk_media',
'dst' => 'riskmngmt_risk_media_risk',
'src' => 'riskmngmt_risk_media_media',
],
'riskObjects' => [
'riskObjects' => [
'mapper' => RiskObjectMapper::class,
'table' => 'riskmngmt_risk_object',
'dst' => 'riskmngmt_risk_object_risk',
'src' => null,
],
'causes' => [
'causes' => [
'mapper' => CauseMapper::class,
'table' => 'riskmngmt_cause',
'dst' => 'riskmngmt_cause_risk',
'src' => null,
],
'solutions' => [
'solutions' => [
'mapper' => SolutionMapper::class,
'table' => 'riskmngmt_solution',
'dst' => 'riskmngmt_solution_risk',

View File

@ -31,7 +31,7 @@ class RiskObject
private $description = '';
private $descriptionRaw = '';
private $risk = null;
public function __construct()
@ -43,7 +43,7 @@ class RiskObject
return $this->id;
}
public function getRisk()
public function getRisk()
{
return $this->risk;
}

View File

@ -52,7 +52,7 @@ class Solution
$this->risk = $risk;
}
public function getRisk()
public function getRisk()
{
return $this->risk;
}
@ -62,7 +62,7 @@ class Solution
$this->cause = $cause;
}
public function getCause()
public function getCause()
{
return $this->cause;
}

View File

@ -11,4 +11,4 @@
* @link http://website.orange-management.de
*/
$category = $this->getData('category');
echo $this->getData('nav')->render();
echo $this->getData('nav')->render();

View File

@ -10,4 +10,4 @@
* @version 1.0.0
* @link http://website.orange-management.de
*/
echo $this->getData('nav')->render();
echo $this->getData('nav')->render();

View File

@ -11,4 +11,4 @@
* @link http://website.orange-management.de
*/
$cause = $this->getData('cause');
echo $this->getData('nav')->render();
echo $this->getData('nav')->render();

View File

@ -51,7 +51,7 @@ echo $this->getData('nav')->render(); ?>
</div>
</section>
</div>
<div class="col-xs-12 col-md-6">
<section class="box wf-100">
<header><h1><?= $this->getHtml('Media') ?></h1></header>

View File

@ -11,4 +11,4 @@
* @link http://website.orange-management.de
*/
$process = $this->getData('process');
echo $this->getData('nav')->render();
echo $this->getData('nav')->render();

View File

@ -11,4 +11,4 @@
* @link http://website.orange-management.de
*/
$project = $this->getData('project');
echo $this->getData('nav')->render();
echo $this->getData('nav')->render();

View File

@ -56,7 +56,7 @@ echo $this->getData('nav')->render(); ?>
</div>
</section>
</div>
<div class="col-xs-12 col-md-6">
<section class="box wf-100">
<header><h1><?= $this->getHtml('Media') ?></h1></header>

View File

@ -47,7 +47,7 @@ echo $this->getData('nav')->render(); ?>
</div>
</section>
</div>
<div class="col-xs-12 col-md-6">
<section class="box wf-100">
<header><h1><?= $this->getHtml('Media') ?></h1></header>

View File

@ -10,4 +10,4 @@
* @version 1.0.0
* @link http://website.orange-management.de
*/
echo $this->getData('nav')->render();
echo $this->getData('nav')->render();

View File

@ -11,4 +11,4 @@
* @link http://website.orange-management.de
*/
$solution = $this->getData('solution');
echo $this->getData('nav')->render();
echo $this->getData('nav')->render();

View File

@ -52,7 +52,7 @@ echo $this->getData('nav')->render(); ?>
</div>
</section>
</div>
<div class="col-xs-12 col-md-6">
<section class="box wf-100">
<header><h1><?= $this->getHtml('Media') ?></h1></header>