Skip to content

Commit 0a5037b

Browse files
Merge pull request #44 from 42coders/analysis-RPwWwK
Apply fixes from StyleCI
2 parents bb53b44 + 071cf94 commit 0a5037b

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

src/DataBuses/DataBussable.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ public function getParentDataBusKeys($passedFields = [])
1414
$newFields = $passedFields;
1515

1616
if (! empty($this->parentable)) {
17-
1817
//foreach($this->parentable::$fields as $key => $value){
1918
// $newFields[$key] = $this->parentable->name.' - '.$value;
2019
//}

src/Http/Controllers/WorkflowController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public function update(Request $request, $id)
6060
/**
6161
* Deletes the Workflow and over cascading also the Tasks, TaskLogs, WorkflowLogs and Triggers.
6262
*
63-
* @param $id
63+
* @param $id
6464
* @return \Illuminate\Contracts\Foundation\Application|\Illuminate\Http\RedirectResponse|\Illuminate\Routing\Redirector
6565
*/
6666
public function delete($id)

src/Tasks/SendMail.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ public function execute(): void
3434
$counter++;
3535
}
3636
}
37-
if(!empty($dataBus->get('cc'))){
37+
if (! empty($dataBus->get('cc'))) {
3838
$message->cc($dataBus->get('cc'));
3939
}
40-
if(!empty($dataBus->get('bcc'))){
40+
if (! empty($dataBus->get('bcc'))) {
4141
$message->bcc($dataBus->get('bcc'));
4242
}
4343
});

0 commit comments

Comments
 (0)