]> git.mxchange.org Git - friendica.git/blobdiff - src/Factory/SessionFactory.php
Create constants for Mastodon notification types
[friendica.git] / src / Factory / SessionFactory.php
index 116afe18a75d095779edbfccd1c278709867d14a..491573033bd4b22994ddda1ce06381d47be5f199 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2020, Friendica
+ * @copyright Copyright (C) 2010-2021, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -58,7 +58,7 @@ class SessionFactory
         */
        public function createSession(App\Mode $mode, App\BaseURL $baseURL, IConfig $config, Database $dba, ICache $cache, LoggerInterface $logger, Profiler $profiler, array $server = [])
        {
-               $stamp1  = microtime(true);
+               $profiler->startRecording('session');
                $session = null;
 
                try {
@@ -77,7 +77,7 @@ class SessionFactory
                                                if ($config->get('system', 'cache_driver') === Type::DATABASE) {
                                                        $handler = new Session\Handler\Database($dba, $logger, $server);
                                                } else {
-                                                       $handler = new Session\Handler\Cache($cache, $logger, $server);
+                                                       $handler = new Session\Handler\Cache($cache);
                                                }
                                                break;
                                }
@@ -85,7 +85,7 @@ class SessionFactory
                                $session = new Session\Native($baseURL, $handler);
                        }
                } finally {
-                       $profiler->saveTimestamp($stamp1, 'parser');
+                       $profiler->stopRecording();
                        return $session;
                }
        }