Select the types of activity you want to include in your feed.
@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
···135135 Filesystem::writeFile('file.bak', $data); // Best
136136 do_something_dangerous();
137137138138-See @{article:System Commands} for details on the APIs used in this example.
138138+See @{article@libphutil:Command Execution} for details on the APIs used in this
139139+example.
139140140141= Documentation, Comments and Formatting =
141142
+1-1
src/docs/developer/unit_tests.diviner
···6060 PASS <1ms* testAllIsRightWithTheWorld
61616262For more information on writing tests, see
6363-@{class@arcnaist:ArcanistPhutilTestCase} and @{class:PhabricatorTestCase}.
6363+@{class@arcanist:ArcanistPhutilTestCase} and @{class:PhabricatorTestCase}.
64646565= Database Isolation =
6666
+1-1
src/docs/feedback.diviner
···56565757 - Filing a bug of feature request in
5858 [[http://secure.phabricator.com/maniphest/task/create/ | Maniphest]]; or
5959- - contributing to Phabricator with @{article:Contibutor Introduction}.
5959+ - contributing to Phabricator with @{article:Contributor Introduction}.
+1-1
src/docs/technical/conduit.diviner
···4747##/conduit/##.
48484949A log of connections and calls is stored by
5050-@{class:PhabriatorConduitConnectionLog} and
5050+@{class:PhabricatorConduitConnectionLog} and
5151@{class:PhabricatorConduitMethodCallLog}, and can be accessed on the web via
5252@{class:PhabricatorConduitLogController} at ##/conduit/log/##.
5353
+1-1
src/docs/userguide/arcanist_lint.diviner
···6767 mistakes.
6868 - @{class@arcanist:ArcanistFilenameLinter}, which can enforce generally
6969 sensible rules about not giving files nonsense names.
7070- - @{class@arcanist:ArcanistLicenseLinter.php}, which can make sure license
7070+ - @{class@arcanist:ArcanistLicenseLinter}, which can make sure license
7171 headers are applied to all source files.
7272 - @{class@arcanist:ArcanistNoLintLinter}, which can disable lint for files
7373 marked unlintable.
+3-3
src/infrastructure/storage/lisk/LiskDAO.php
···132132 * $pugs = $dog->loadAllWhere('breed = %s', 'Pug');
133133 * $sawyer = $dog->loadOneWhere('name = %s', 'Sawyer');
134134 *
135135- * These methods work like @{function:queryfx}, but only take half of a query
136136- * (the part after the WHERE keyword). Lisk will handle the connection, columns,
137137- * and object construction; you are responsible for the rest of it.
135135+ * These methods work like @{function@libphutil:queryfx}, but only take half of
136136+ * a query (the part after the WHERE keyword). Lisk will handle the connection,
137137+ * columns, and object construction; you are responsible for the rest of it.
138138 * @{method:loadAllWhere} returns a list of objects, while
139139 * @{method:loadOneWhere} returns a single object (or `null`).
140140 *