reverted wrong indentation

This commit is contained in:
Philipp Holzer 2019-08-15 17:25:03 +02:00
parent 734b63adba
commit 956439a9f2
No known key found for this signature in database
GPG Key ID: D8365C3D36B77D90
1 changed files with 4 additions and 4 deletions

View File

@ -53,7 +53,7 @@ class App
public $contacts; public $contacts;
public $page_contact; public $page_contact;
public $content; public $content;
public $data = []; public $data = [];
/** @deprecated 2019.09 - use App\Arguments->getCommand() */ /** @deprecated 2019.09 - use App\Arguments->getCommand() */
public $cmd = ''; public $cmd = '';
/** @deprecated 2019.09 - use App\Arguments->getArgv() or Arguments->get() */ /** @deprecated 2019.09 - use App\Arguments->getArgv() or Arguments->get() */
@ -531,14 +531,14 @@ class App
} }
/** /**
* @brief Removes the base url from an url. This avoids some mixed content problems. * @brief Removes the base url from an url. This avoids some mixed content problems.
* *
* @param string $origURL * @param string $origURL
* *
* @return string The cleaned url * @return string The cleaned url
* *
* @deprecated 2019.09 - Use BaseURL->remove() instead * @deprecated 2019.09 - Use BaseURL->remove() instead
* @see BaseURL::remove() * @see BaseURL::remove()
*/ */
public function removeBaseURL($origURL) public function removeBaseURL($origURL)
{ {
@ -567,7 +567,7 @@ class App
* @return bool Is it a known backend? * @return bool Is it a known backend?
* *
* @deprecated 2019.09 - use App\Mode->isBackend() instead * @deprecated 2019.09 - use App\Mode->isBackend() instead
* @see App\Mode::isBackend() * @see App\Mode::isBackend()
* Use BaseObject::getClass(App\Mode::class) to get the global instance of Mode * Use BaseObject::getClass(App\Mode::class) to get the global instance of Mode
*/ */
public function isBackend() public function isBackend()