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
14241424 // Type was not specified but we must not assume its default to GUILD_TEXT as that is determined by API
14251425 $ this ->discord ->getLogger ()->warning ('Not specifying channel type, creating with all filled attributes ' );
14261426 $ attr += $ this ->getRawAttributes (); // Send the remaining raw attributes
1427+
14271428 return $ attr ;
14281429 }
14291430
Original file line number Diff line number Diff line change @@ -90,7 +90,6 @@ public function fetch(): ExtendedPromiseInterface
9090 *
9191 * @param string $value name:id or the character of standard emoji
9292 *
93- * @return void
9493 *
9594 * @since 10.0.0
9695 */
Original file line number Diff line number Diff line change @@ -188,7 +188,7 @@ public function fill(array $attributes): void
188188 */
189189 private function checkForGetMutator (string $ key )
190190 {
191- $ str = 'get ' . self ::studly ($ key ) . 'Attribute ' ;
191+ $ str = 'get ' . self ::studly ($ key ). 'Attribute ' ;
192192
193193 if (method_exists ($ this , $ str )) {
194194 return $ str ;
@@ -208,7 +208,7 @@ private function checkForGetMutator(string $key)
208208 */
209209 private function checkForSetMutator (string $ key )
210210 {
211- $ str = 'set ' . self ::studly ($ key ) . 'Attribute ' ;
211+ $ str = 'set ' . self ::studly ($ key ). 'Attribute ' ;
212212
213213 if (method_exists ($ this , $ str )) {
214214 return $ str ;
You can’t perform that action at this time.
0 commit comments