Skip to content
This repository was archived by the owner on Aug 15, 2023. It is now read-only.

Commit ac5fe8f

Browse files
committed
Merge commit '3ab653c0eca81bee1796d3b7896cf408d7f75fc9' into release/1.2.0
2 parents 4be8e25 + 3ab653c commit ac5fe8f

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

Classes/Command/BackendApiCommandController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public function injectLogManager(\TYPO3\CMS\Core\Log\LogManager $logManager) {
5656
* Initialize the object
5757
*/
5858
public function initializeObject() {
59-
$this->logger = $this->objectManager->get('\TYPO3\CMS\Core\Log\LogManager')->getLogger(__CLASS__);
59+
$this->logger = $this->objectManager->get('TYPO3\CMS\Core\Log\LogManager')->getLogger(__CLASS__);
6060
}
6161

6262
/**

Classes/Command/CacheApiCommandController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public function injectLogManager(\TYPO3\CMS\Core\Log\LogManager $logManager) {
5757
* Initialize the object
5858
*/
5959
public function initializeObject() {
60-
$this->logger = $this->objectManager->get('\TYPO3\CMS\Core\Log\LogManager')->getLogger(__CLASS__);
60+
$this->logger = $this->objectManager->get('TYPO3\CMS\Core\Log\LogManager')->getLogger(__CLASS__);
6161
}
6262

6363
/**

Classes/Command/DatabaseApiCommandController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public function injectLogManager(\TYPO3\CMS\Core\Log\LogManager $logManager) {
5858
* Initialize the object
5959
*/
6060
public function initializeObject() {
61-
$this->logger = $this->objectManager->get('\TYPO3\CMS\Core\Log\LogManager')->getLogger(__CLASS__);
61+
$this->logger = $this->objectManager->get('TYPO3\CMS\Core\Log\LogManager')->getLogger(__CLASS__);
6262
}
6363

6464
/**

Classes/Command/ExtensionApiCommandController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public function injectLogManager(\TYPO3\CMS\Core\Log\LogManager $logManager) {
6161
* Initialize the object
6262
*/
6363
public function initializeObject() {
64-
$this->logger = $this->objectManager->get('\TYPO3\CMS\Core\Log\LogManager')->getLogger(__CLASS__);
64+
$this->logger = $this->objectManager->get('TYPO3\CMS\Core\Log\LogManager')->getLogger(__CLASS__);
6565
}
6666

6767
/**

Classes/Command/SiteApiCommandController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public function injectLogManager(\TYPO3\CMS\Core\Log\LogManager $logManager) {
5959
* Initialize the object
6060
*/
6161
public function initializeObject() {
62-
$this->logger = $this->objectManager->get('\TYPO3\CMS\Core\Log\LogManager')->getLogger(__CLASS__);
62+
$this->logger = $this->objectManager->get('TYPO3\CMS\Core\Log\LogManager')->getLogger(__CLASS__);
6363
}
6464

6565
/**

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Checkout the project website at forge.typo3.org:
2323
* fetch an extension from TER
2424
* import an extension
2525
* install / uninstall extension
26-
* create upload folders
26+
* ~~create upload folders~~
2727
* configure extension
2828
* SiteApi
2929
* info

0 commit comments

Comments
 (0)