1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2025-01-26 22:48:19 +01:00

Fix lint error

This commit is contained in:
vrana 2012-08-15 13:16:02 -07:00
parent 70a8e8b6e8
commit 14cfdeca92

View file

@ -50,7 +50,7 @@ abstract class PhabricatorIRCHandler {
} }
final protected function isChannelName($name) { final protected function isChannelName($name) {
return (strpos($name, '#') === 0); return (strncmp($name, '#', 1) === 0);
} }
abstract public function receiveMessage(PhabricatorIRCMessage $message); abstract public function receiveMessage(PhabricatorIRCMessage $message);