mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-08 00:04:27 +02:00
Fix cs in App and AppLegacy classes
This commit is contained in:
parent
ae75ffc31a
commit
e6b39e5f1c
2 changed files with 26 additions and 37 deletions
15
src/App.php
15
src/App.php
|
@ -262,18 +262,6 @@ class App implements AppHelper
|
|||
return $this->appHelper->getBasePath();
|
||||
}
|
||||
|
||||
/**
|
||||
* @param IManageConfigValues $config The Configuration
|
||||
* @param Mode $mode The mode of this Friendica app
|
||||
* @param BaseURL $baseURL The full base URL of this Friendica app
|
||||
* @param LoggerInterface $logger The current app logger
|
||||
* @param Profiler $profiler The profiler of this application
|
||||
* @param L10n $l10n The translator instance
|
||||
* @param App\Arguments $args The Friendica Arguments of the call
|
||||
* @param IHandleUserSessions $session The (User)Session handler
|
||||
* @param DbaDefinition $dbaDefinition
|
||||
* @param ViewDefinition $viewDefinition
|
||||
*/
|
||||
public function __construct(
|
||||
Request $request,
|
||||
Authentication $auth,
|
||||
|
@ -328,7 +316,8 @@ class App implements AppHelper
|
|||
get_include_path() . PATH_SEPARATOR
|
||||
. $this->appHelper->getBasePath() . DIRECTORY_SEPARATOR . 'include' . PATH_SEPARATOR
|
||||
. $this->appHelper->getBasePath() . DIRECTORY_SEPARATOR . 'library' . PATH_SEPARATOR
|
||||
. $this->appHelper->getBasePath());
|
||||
. $this->appHelper->getBasePath()
|
||||
);
|
||||
|
||||
$this->profiler->reset();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue