@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Replace invalid PHPDoc @return type boolean with bool

Summary: `@return boolean` is not a valid type thus use `@return bool`.

Test Plan: None.

Reviewers: O1 Blessed Committers, valerio.bozzolan

Reviewed By: O1 Blessed Committers, valerio.bozzolan

Subscribers: tobiaswiese, valerio.bozzolan, Matthew, Cigaryno

Differential Revision: https://we.phorge.it/D25795

+1 -1
+1 -1
src/infrastructure/parser/PhutilURIHelper.php
··· 69 69 /** 70 70 * Check whenever the URI starts with the provided character. 71 71 * @param string $char String that MUST have length of 1. 72 - * @return boolean 72 + * @return bool 73 73 */ 74 74 private function isStartingWithChar($char) { 75 75 return strncmp($this->uriStr, $char, 1) === 0;