@@ -67,7 +67,7 @@ final class ReportIncidentCommand
67
67
*
68
68
* @var bool
69
69
*/
70
- public $ sticked ;
70
+ public $ stickied ;
71
71
72
72
/**
73
73
* The date at which the incident occurred.
@@ -103,7 +103,7 @@ final class ReportIncidentCommand
103
103
'component_id ' => 'int|required_with:component_status ' ,
104
104
'component_status ' => 'int|min:1|max:4|required_with:component_id ' ,
105
105
'notify ' => 'bool ' ,
106
- 'sticked ' => 'bool ' ,
106
+ 'stickied ' => 'bool ' ,
107
107
'incident_date ' => 'string ' ,
108
108
'template ' => 'string ' ,
109
109
];
@@ -118,14 +118,14 @@ final class ReportIncidentCommand
118
118
* @param int $component_id
119
119
* @param int $component_status
120
120
* @param bool $notify
121
- * @param bool $sticked
121
+ * @param bool $stickied
122
122
* @param string|null $incident_date
123
123
* @param string|null $template
124
124
* @param array|null $template_vars
125
125
*
126
126
* @return void
127
127
*/
128
- public function __construct ($ name , $ status , $ message , $ visible , $ component_id , $ component_status , $ notify , $ sticked , $ incident_date , $ template , array $ template_vars = null )
128
+ public function __construct ($ name , $ status , $ message , $ visible , $ component_id , $ component_status , $ notify , $ stickied , $ incident_date , $ template , array $ template_vars = null )
129
129
{
130
130
$ this ->name = $ name ;
131
131
$ this ->status = $ status ;
@@ -134,7 +134,7 @@ public function __construct($name, $status, $message, $visible, $component_id, $
134
134
$ this ->component_id = $ component_id ;
135
135
$ this ->component_status = $ component_status ;
136
136
$ this ->notify = $ notify ;
137
- $ this ->sticked = $ sticked ;
137
+ $ this ->stickied = $ stickied ;
138
138
$ this ->incident_date = $ incident_date ;
139
139
$ this ->template = $ template ;
140
140
$ this ->template_vars = $ template_vars ;
0 commit comments