fix alignment
This commit is contained in:
parent
2c73377b39
commit
566889fbc0
1 changed files with 22 additions and 22 deletions
44
src/App.php
44
src/App.php
|
@ -70,7 +70,7 @@ class App
|
||||||
public $is_mobile;
|
public $is_mobile;
|
||||||
/** @deprecated 2019.09 - Use App\Mode->isTable() instead */
|
/** @deprecated 2019.09 - Use App\Mode->isTable() instead */
|
||||||
public $is_tablet;
|
public $is_tablet;
|
||||||
public $theme_info = [];
|
public $theme_info = [];
|
||||||
public $category;
|
public $category;
|
||||||
// Allow themes to control internal parameters
|
// Allow themes to control internal parameters
|
||||||
// by changing App values in theme.php
|
// by changing App values in theme.php
|
||||||
|
@ -205,7 +205,7 @@ class App
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @deprecated 2019.09 - use Page->registerStylesheet instead
|
* @deprecated 2019.09 - use Page->registerStylesheet instead
|
||||||
* @see Page::registerStylesheet()
|
* @see Page::registerStylesheet()
|
||||||
*/
|
*/
|
||||||
public function registerStylesheet($path)
|
public function registerStylesheet($path)
|
||||||
{
|
{
|
||||||
|
@ -214,7 +214,7 @@ class App
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @deprecated 2019.09 - use Page->registerFooterScript instead
|
* @deprecated 2019.09 - use Page->registerFooterScript instead
|
||||||
* @see Page::registerFooterScript()
|
* @see Page::registerFooterScript()
|
||||||
*/
|
*/
|
||||||
public function registerFooterScript($path)
|
public function registerFooterScript($path)
|
||||||
{
|
{
|
||||||
|
@ -222,27 +222,27 @@ class App
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param Database $database The Friendica Database
|
* @param Database $database The Friendica Database
|
||||||
* @param Configuration $config The Configuration
|
* @param Configuration $config The Configuration
|
||||||
* @param App\Mode $mode The mode of this Friendica app
|
* @param App\Mode $mode The mode of this Friendica app
|
||||||
* @param BaseURL $baseURL The full base URL of this Friendica app
|
* @param BaseURL $baseURL The full base URL of this Friendica app
|
||||||
* @param LoggerInterface $logger The current app logger
|
* @param LoggerInterface $logger The current app logger
|
||||||
* @param Profiler $profiler The profiler of this application
|
* @param Profiler $profiler The profiler of this application
|
||||||
* @param L10n $l10n The translator instance
|
* @param L10n $l10n The translator instance
|
||||||
* @param App\Arguments $args The Friendica Arguments of the call
|
* @param App\Arguments $args The Friendica Arguments of the call
|
||||||
* @param Core\Process $process The process methods
|
* @param Core\Process $process The process methods
|
||||||
*/
|
*/
|
||||||
public function __construct(Database $database, Configuration $config, App\Mode $mode, BaseURL $baseURL, LoggerInterface $logger, Profiler $profiler, L10n $l10n, Arguments $args, App\Module $module, App\Page $page, Core\Process $process)
|
public function __construct(Database $database, Configuration $config, App\Mode $mode, BaseURL $baseURL, LoggerInterface $logger, Profiler $profiler, L10n $l10n, Arguments $args, App\Module $module, App\Page $page, Core\Process $process)
|
||||||
{
|
{
|
||||||
$this->database = $database;
|
$this->database = $database;
|
||||||
$this->config = $config;
|
$this->config = $config;
|
||||||
$this->mode = $mode;
|
$this->mode = $mode;
|
||||||
$this->baseURL = $baseURL;
|
$this->baseURL = $baseURL;
|
||||||
$this->profiler = $profiler;
|
$this->profiler = $profiler;
|
||||||
$this->logger = $logger;
|
$this->logger = $logger;
|
||||||
$this->l10n = $l10n;
|
$this->l10n = $l10n;
|
||||||
$this->args = $args;
|
$this->args = $args;
|
||||||
$this->process = $process;
|
$this->process = $process;
|
||||||
|
|
||||||
$this->cmd = $args->getCommand();
|
$this->cmd = $args->getCommand();
|
||||||
$this->argv = $args->getArgv();
|
$this->argv = $args->getArgv();
|
||||||
|
@ -543,7 +543,7 @@ class App
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @deprecated 2019.09 - use App\Mode->isAjax() instead
|
* @deprecated 2019.09 - use App\Mode->isAjax() instead
|
||||||
* @see App\Mode::isAjax()
|
* @see App\Mode::isAjax()
|
||||||
*/
|
*/
|
||||||
public function isAjax()
|
public function isAjax()
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue