https://www.mediawiki.org/wiki/Special:Code/MediaWiki/114640

Revision: 114640
Author:   reedy
Date:     2012-03-31 01:07:43 +0000 (Sat, 31 Mar 2012)
Log Message:
-----------
Few more minor related tweaks

Modified Paths:
--------------
    trunk/tools/gerrit-dippybird/dippy-bird.php

Modified: trunk/tools/gerrit-dippybird/dippy-bird.php
===================================================================
--- trunk/tools/gerrit-dippybird/dippy-bird.php 2012-03-31 01:04:58 UTC (rev 
114639)
+++ trunk/tools/gerrit-dippybird/dippy-bird.php 2012-03-31 01:07:43 UTC (rev 
114640)
@@ -78,6 +78,9 @@
                echo "Dippy bird" . PHP_EOL;
        }
 
+       /**
+        * @return array
+        */
        public function executeQuery() {
                // config options we need
                $opts = array( 'port', 'server', 'username', 'query' );
@@ -93,11 +96,10 @@
                                echo "Query results: " . print_r( $results, 
true ) . PHP_EOL;
                        }
                        return $results;
-               } else {
-                       $msg = "There was a problem executing your query." . 
PHP_EOL;
-                       $msg .= "Exiting with status: $status";
-                       $this->bail( $status, $msg );
                }
+               $msg = "There was a problem executing your query." . PHP_EOL;
+               $msg .= "Exiting with status: $status";
+               $this->bail( $status, $msg );
        }
 
        /**
@@ -261,9 +263,10 @@
         * Check sanity of configuration values
         *
         * If a value is required but unset, config is not sane.
+        * @return bool
         */
        protected function isConfigSane() {
-               foreach ( $this->configOpts as $opt => $info ) {
+               foreach ( $this->configOpts as $info ) {
                        if ( $info['required'] === true && is_null( 
$info['value'] ) ) {
                                return false;
                        }
@@ -273,6 +276,7 @@
 
        /**
         * Get the 'long' options available
+        * @return array
         */
        public function getLongOpts() {
                $long_opts = array(
@@ -291,6 +295,7 @@
 
        /**
         * Get the 'short' options available
+        * @return string
         */
        public function getShortOpts() {
                $short_opts =   "P:";   // port
@@ -307,6 +312,7 @@
 
        /**
         * Fetch usage message
+        * @return string
         */
        public function getUsage() {
                $usage = <<<USAGE


_______________________________________________
MediaWiki-CVS mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-cvs

Reply via email to