Skip to content

Commit 8c01aaf

Browse files
committed
ran php cs fixer
1 parent 7322a52 commit 8c01aaf

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/Discord/Parts/Channel/Channel.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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

src/Discord/Parts/Channel/Reaction.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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
*/

src/Discord/Parts/Part.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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;

0 commit comments

Comments
 (0)