Add documentation
authorSam Reed <reedy@users.mediawiki.org>
Fri, 27 Jan 2012 14:30:40 +0000 (14:30 +0000)
committerSam Reed <reedy@users.mediawiki.org>
Fri, 27 Jan 2012 14:30:40 +0000 (14:30 +0000)
Fix whitespace

includes/filerepo/backend/FileBackendGroup.php
includes/filerepo/backend/lockmanager/LockManager.php
includes/filerepo/backend/lockmanager/LockManagerGroup.php

index cb4ef31..d3deec3 100644 (file)
@@ -12,6 +12,9 @@
  * @since 1.19
  */
 class FileBackendGroup {
+       /**
+        * @var FileBackendGroup
+        */
        protected static $instance = null;
 
        /** @var Array (name => ('class' => string, 'config' => array, 'instance' => object)) */
index c197976..bb3260e 100644 (file)
@@ -119,10 +119,10 @@ class ScopedLock {
        protected function __construct(
                LockManager $manager, array $paths, $type, Status $status
        ) {
-          $this->manager = $manager;
-          $this->paths = $paths;
-          $this->status = $status;
-          $this->type = $type;
+               $this->manager = $manager;
+               $this->paths = $paths;
+               $this->status = $status;
+               $this->type = $type;
        }
 
        protected function __clone() {}
index 3fa91d5..11e7797 100644 (file)
@@ -7,6 +7,10 @@
  * @since 1.19
  */
 class LockManagerGroup {
+
+       /**
+        * @var LockManagerGroup
+        */
        protected static $instance = null;
 
        /** @var Array of (name => ('class' =>, 'config' =>, 'instance' =>)) */