Fix StyleCI

This commit is contained in:
Anne-Greeth van Herwijnen
2019-04-26 13:12:30 +02:00
parent a86793079c
commit b5816a3340
3 changed files with 4 additions and 5 deletions

View File

@@ -79,7 +79,7 @@ final class CreateScheduleCommand
'scheduled_at' => 'required|string',
'completed_at' => 'nullable|string',
'components' => 'nullable|array',
'notify' => 'nullable|bool'
'notify' => 'nullable|bool',
];
/**
@@ -95,7 +95,7 @@ final class CreateScheduleCommand
*
* @return void
*/
public function __construct($name, $message, $status, $scheduled_at, $completed_at, array $components = [], $notify)
public function __construct($name, $message, $status, $scheduled_at, $completed_at, $components, $notify)
{
$this->name = $name;
$this->message = $message;