Skip to content

Commit

Permalink
Ugh, GOD Jay, WTF ARE YOU EVEN DOING?!?!?!?
Browse files Browse the repository at this point in the history
  • Loading branch information
DaveRandom committed Feb 10, 2017
1 parent d476035 commit 0b1fc7b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/BuiltIn/Commands/Alias.php
Expand Up @@ -46,7 +46,7 @@ private function addAlias(CommandMessage $command)
return $this->chatClient->postReply(
$command,
new PendingMessage(
'Command \'{$aliasCommand}\' is built in and cannot be altered',
"Command '{$aliasCommand}' is built in and cannot be altered",
$command->getId()
)
);
Expand All @@ -56,7 +56,7 @@ private function addAlias(CommandMessage $command)
return $this->chatClient->postReply(
$command,
new PendingMessage(
'Command \'{$aliasCommand}\' is already mapped. Use `!!command list` to display the currently mapped commands.',
"Command '{$aliasCommand}' is already mapped. Use `!!command list` to display the currently mapped commands.",
$command->getId()
)
);
Expand Down
4 changes: 2 additions & 2 deletions src/BuiltIn/Commands/Plugin.php
Expand Up @@ -138,7 +138,7 @@ private function enable(CommandMessage $command): Promise

return $this->chatClient->postMessage(
$command->getRoom(),
new PendingMessage('Plugin \'{$plugin}\' is now enabled in this room', $command->getId())
new PendingMessage("Plugin '{$plugin}' is now enabled in this room", $command->getId())
);
});
}
Expand Down Expand Up @@ -178,7 +178,7 @@ private function disable(CommandMessage $command): Promise

return $this->chatClient->postMessage(
$command->getRoom(),
new PendingMessage('Plugin \'{$plugin}\' is now disabled in this room', $command->getId())
new PendingMessage("Plugin '{$plugin}' is now disabled in this room", $command->getId())
);
});
}
Expand Down

1 comment on commit 0b1fc7b

@JayPHP
Copy link
Member

@JayPHP JayPHP commented on 0b1fc7b Feb 11, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

4/105 not-bad-obama.gif

Please sign in to comment.