File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1424,6 +1424,7 @@ public function getCreatableAttributes(): array
1424
1424
// Type was not specified but we must not assume its default to GUILD_TEXT as that is determined by API
1425
1425
$ this ->discord ->getLogger ()->warning ('Not specifying channel type, creating with all filled attributes ' );
1426
1426
$ attr += $ this ->getRawAttributes (); // Send the remaining raw attributes
1427
+
1427
1428
return $ attr ;
1428
1429
}
1429
1430
Original file line number Diff line number Diff line change @@ -90,7 +90,6 @@ public function fetch(): ExtendedPromiseInterface
90
90
*
91
91
* @param string $value name:id or the character of standard emoji
92
92
*
93
- * @return void
94
93
*
95
94
* @since 10.0.0
96
95
*/
Original file line number Diff line number Diff line change @@ -188,7 +188,7 @@ public function fill(array $attributes): void
188
188
*/
189
189
private function checkForGetMutator (string $ key )
190
190
{
191
- $ str = 'get ' . self ::studly ($ key ) . 'Attribute ' ;
191
+ $ str = 'get ' . self ::studly ($ key ). 'Attribute ' ;
192
192
193
193
if (method_exists ($ this , $ str )) {
194
194
return $ str ;
@@ -208,7 +208,7 @@ private function checkForGetMutator(string $key)
208
208
*/
209
209
private function checkForSetMutator (string $ key )
210
210
{
211
- $ str = 'set ' . self ::studly ($ key ) . 'Attribute ' ;
211
+ $ str = 'set ' . self ::studly ($ key ). 'Attribute ' ;
212
212
213
213
if (method_exists ($ this , $ str )) {
214
214
return $ str ;
You can’t perform that action at this time.
0 commit comments