Making WordPress.org

Changeset 9025


Ignore:
Timestamp:
07/05/2019 07:16:27 AM (6 years ago)
Author:
dd32
Message:

Plugin Directory: Tools: SVN: Document the new return values added in [9024].

Amends [9024].

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/tools/class-svn.php

    r9024 r9025  
    1818     * @param string $message  The commit message.
    1919     * @return array {
    20      *     @type bool $result   The result of the operation.
    21      *     @type int  $revision The revision imported.
     20     *     @type bool        $result   The result of the operation.
     21     *     @type int         $revision The revision imported.
     22     *     @type false|array $errors   Whether any errors or warnings were encountered.
    2223     * }
    2324     */
     
    5859     * @param array  $options     Optional. A list of options to pass to SVN. Default: empty array.
    5960     * @return array {
    60      *     @type bool $result   The result of the operation.
    61      *     @type int  $revision The revision exported.
     61     *     @type bool        $result   The result of the operation.
     62     *     @type int         $revision The revision exported.
     63     *     @type false|array $errors   Whether any errors or warnings were encountered.
    6264     * }
    6365     */
     
    9294     * @param array  $options     Optional. A list of options to pass to SVN. Default: empty array.
    9395     * @return array {
    94      *     @type bool $result   The result of the operation.
    95      *     @type int  $revision The revision exported.
     96     *     @type bool        $result   The result of the operation.
     97     *     @type int         $revision The revision exported.
     98     *     @type false|array $errors   Whether any errors or warnings were encountered.
    9699     * }
    97100     */
     
    125128     * @param array  $options  Optional. A list of options to pass to SVN. Default: empty array.
    126129     * @return array {
    127      *     @type bool $result   The result of the operation.
    128      *     @type int  $revision The revision exported.
     130     *     @type bool        $result   The result of the operation.
     131     *     @type int         $revision The revision exported.
     132     *     @type false|array $errors   Whether any errors or warnings were encountered.
    129133     * }
    130134     */
     
    156160     * @param string $checkout The path of the file to add to SVN.
    157161     * @return array {
    158      *     @type bool $result   The result of the operation.
     162     *     @type bool        $result The result of the operation.
     163     *     @type false|array $errors Whether any errors or warnings were encountered.
    159164     * }
    160165     */
     
    186191     * @param array  $options  Any specific options to pass to SVN.
    187192     * @return array {
    188      *     @type bool $result   The result of the operation.
    189      *     @type int  $revision The revision imported.
     193     *     @type bool        $result   The result of the operation.
     194     *     @type int         $revision The revision imported.
     195     *     @type false|array $errors   Whether any errors or warnings were encountered.
    190196     * }
    191197     */
     
    225231     * @param array  $options  Any specific options to pass to SVN.
    226232     * @return array {
    227      *     @type bool $result   The result of the operation.
    228      *     @type int  $revision The revision imported.
     233     *     @type bool        $result   The result of the operation.
     234     *     @type int         $revision The revision imported.
     235     *     @type false|array $errors   Whether any errors or warnings were encountered.
    229236     * }
    230237     */
Note: See TracChangeset for help on using the changeset viewer.