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

Commit

Permalink
Merge pull request #104 from 7elix/master
Browse files Browse the repository at this point in the history
[TASK] Remove leading Slash on class names
  • Loading branch information
etobi committed May 4, 2015
2 parents 413e560 + 07b77ed commit 3ab653c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Classes/Command/BackendApiCommandController.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public function injectLogManager(\TYPO3\CMS\Core\Log\LogManager $logManager) {
* Initialize the object
*/
public function initializeObject() {
$this->logger = $this->objectManager->get('\TYPO3\CMS\Core\Log\LogManager')->getLogger(__CLASS__);
$this->logger = $this->objectManager->get('TYPO3\CMS\Core\Log\LogManager')->getLogger(__CLASS__);
}

/**
Expand Down
2 changes: 1 addition & 1 deletion Classes/Command/CacheApiCommandController.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public function injectLogManager(\TYPO3\CMS\Core\Log\LogManager $logManager) {
* Initialize the object
*/
public function initializeObject() {
$this->logger = $this->objectManager->get('\TYPO3\CMS\Core\Log\LogManager')->getLogger(__CLASS__);
$this->logger = $this->objectManager->get('TYPO3\CMS\Core\Log\LogManager')->getLogger(__CLASS__);
}

/**
Expand Down
2 changes: 1 addition & 1 deletion Classes/Command/DatabaseApiCommandController.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public function injectLogManager(\TYPO3\CMS\Core\Log\LogManager $logManager) {
* Initialize the object
*/
public function initializeObject() {
$this->logger = $this->objectManager->get('\TYPO3\CMS\Core\Log\LogManager')->getLogger(__CLASS__);
$this->logger = $this->objectManager->get('TYPO3\CMS\Core\Log\LogManager')->getLogger(__CLASS__);
}

/**
Expand Down
2 changes: 1 addition & 1 deletion Classes/Command/ExtensionApiCommandController.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public function injectLogManager(\TYPO3\CMS\Core\Log\LogManager $logManager) {
* Initialize the object
*/
public function initializeObject() {
$this->logger = $this->objectManager->get('\TYPO3\CMS\Core\Log\LogManager')->getLogger(__CLASS__);
$this->logger = $this->objectManager->get('TYPO3\CMS\Core\Log\LogManager')->getLogger(__CLASS__);
}

/**
Expand Down
2 changes: 1 addition & 1 deletion Classes/Command/SiteApiCommandController.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public function injectLogManager(\TYPO3\CMS\Core\Log\LogManager $logManager) {
* Initialize the object
*/
public function initializeObject() {
$this->logger = $this->objectManager->get('\TYPO3\CMS\Core\Log\LogManager')->getLogger(__CLASS__);
$this->logger = $this->objectManager->get('TYPO3\CMS\Core\Log\LogManager')->getLogger(__CLASS__);
}

/**
Expand Down

0 comments on commit 3ab653c

Please sign in to comment.