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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -10,4 +10,4 @@
* @version 1.0.0 * @version 1.0.0
* @link http://website.orange-management.de * @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 * @link http://website.orange-management.de
*/ */
$cause = $this->getData('cause'); $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> </div>
</section> </section>
</div> </div>
<div class="col-xs-12 col-md-6"> <div class="col-xs-12 col-md-6">
<section class="box wf-100"> <section class="box wf-100">
<header><h1><?= $this->getHtml('Media') ?></h1></header> <header><h1><?= $this->getHtml('Media') ?></h1></header>

View File

@ -11,4 +11,4 @@
* @link http://website.orange-management.de * @link http://website.orange-management.de
*/ */
$process = $this->getData('process'); $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 * @link http://website.orange-management.de
*/ */
$project = $this->getData('project'); $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> </div>
</section> </section>
</div> </div>
<div class="col-xs-12 col-md-6"> <div class="col-xs-12 col-md-6">
<section class="box wf-100"> <section class="box wf-100">
<header><h1><?= $this->getHtml('Media') ?></h1></header> <header><h1><?= $this->getHtml('Media') ?></h1></header>

View File

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

View File

@ -10,4 +10,4 @@
* @version 1.0.0 * @version 1.0.0
* @link http://website.orange-management.de * @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 * @link http://website.orange-management.de
*/ */
$solution = $this->getData('solution'); $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> </div>
</section> </section>
</div> </div>
<div class="col-xs-12 col-md-6"> <div class="col-xs-12 col-md-6">
<section class="box wf-100"> <section class="box wf-100">
<header><h1><?= $this->getHtml('Media') ?></h1></header> <header><h1><?= $this->getHtml('Media') ?></h1></header>