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:
parent
70a8e8b6e8
commit
14cfdeca92
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||||
|
|
Loading…
Add table
Reference in a new issue