Make config-outdated-sqlite parameter numbers consistent with config-*-old
[lhc/web/wiklou.git] / includes / installer / InstallerSessionProvider.php
index 2b9f418..568ef51 100644 (file)
@@ -30,16 +30,19 @@ use MediaWiki\Session\SessionInfo;
 class InstallerSessionProvider extends SessionProvider {
        /**
         * Pretend there is a session, to avoid MWCryptRand overhead
+        * @param WebRequest $request
+        * @return SessionInfo
         */
        public function provideSessionInfo( WebRequest $request ) {
-               return new SessionInfo( 1, array(
+               return new SessionInfo( 1, [
                        'provider' => $this,
                        'id' => str_repeat( 'x', 32 ),
-               ) );
+               ] );
        }
 
        /**
         * Yes we will treat your data with great care!
+        * @return bool
         */
        public function persistsSessionId() {
                return true;
@@ -47,6 +50,7 @@ class InstallerSessionProvider extends SessionProvider {
 
        /**
         * Sure, you can be whoever you want, as long as you have ID 0
+        * @return bool
         */
        public function canChangeUser() {
                return true;