Merge "Remove "@author Aaron Schulz" annotations"
[lhc/web/wiklou.git] / includes / externalstore / ExternalStoreMedium.php
index e9c34a4..6cfa083 100644 (file)
@@ -19,7 +19,6 @@
  *
  * @file
  * @ingroup ExternalStorage
- * @author Aaron Schulz
  */
 
 /**
  */
 abstract class ExternalStoreMedium {
        /** @var array */
-       protected $params = array();
+       protected $params = [];
 
        /**
         * @param array $params Options
         */
-       public function __construct( array $params = array() ) {
+       public function __construct( array $params = [] ) {
                $this->params = $params;
        }
 
@@ -55,7 +54,7 @@ abstract class ExternalStoreMedium {
         * @return array Map from the url to the text stored. Unfound data is not represented
         */
        public function batchFetchFromURLs( array $urls ) {
-               $retval = array();
+               $retval = [];
                foreach ( $urls as $url ) {
                        $data = $this->fetchFromURL( $url );
                        // Dont return when false to allow for simpler implementations.