Skip to content

Commit

Permalink
Revert "Apply fixes from StyleCI (#2335)"
Browse files Browse the repository at this point in the history
This reverts commit a8c51ca.
  • Loading branch information
georgringer committed Jan 24, 2024
1 parent fc4fcce commit f9c4376
Show file tree
Hide file tree
Showing 13 changed files with 14 additions and 41 deletions.
4 changes: 1 addition & 3 deletions Classes/Domain/Model/DemandInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,4 @@
/**
* Demanded repository interface
*/
interface DemandInterface
{
}
interface DemandInterface {}
4 changes: 1 addition & 3 deletions Classes/Domain/Model/FileReference.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,7 @@ class FileReference extends \TYPO3\CMS\Extbase\Domain\Model\FileReference
* extensible by other extensions that might want to define
* an own __construct() method
*/
public function __construct()
{
}
public function __construct() {}

/**
* Set File uid
Expand Down
4 changes: 1 addition & 3 deletions Classes/Domain/Model/Link.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,7 @@ class Link extends AbstractValueObject
* extensible by other extensions that might want to define
* an own __construct() method
*/
public function __construct()
{
}
public function __construct() {}

/**
* Get creation date
Expand Down
4 changes: 1 addition & 3 deletions Classes/Domain/Model/NewsDefault.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,4 @@
/**
* News model for default news
*/
class NewsDefault extends News
{
}
class NewsDefault extends News {}
4 changes: 1 addition & 3 deletions Classes/Domain/Model/NewsExternal.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,4 @@
/**
* News model for external news
*/
class NewsExternal extends News
{
}
class NewsExternal extends News {}
4 changes: 1 addition & 3 deletions Classes/Domain/Model/NewsInternal.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,4 @@
/**
* News model for internal news
*/
class NewsInternal extends News
{
}
class NewsInternal extends News {}
4 changes: 1 addition & 3 deletions Classes/Domain/Model/Tag.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,7 @@ class Tag extends AbstractValueObject
* extensible by other extensions that might want to define
* an own __construct() method
*/
public function __construct()
{
}
public function __construct() {}

/**
* Get crdate
Expand Down
4 changes: 1 addition & 3 deletions Classes/Domain/Repository/FileRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,4 @@
/**
* Repository for file objects
*/
class FileRepository extends Repository
{
}
class FileRepository extends Repository {}
4 changes: 1 addition & 3 deletions Classes/Domain/Repository/LinkRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,4 @@
/**
* Repository for link objects
*/
class LinkRepository extends Repository
{
}
class LinkRepository extends Repository {}
4 changes: 1 addition & 3 deletions Classes/Domain/Repository/MediaRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,4 @@
/**
* Repository for media objects
*/
class MediaRepository extends Repository
{
}
class MediaRepository extends Repository {}
4 changes: 1 addition & 3 deletions Classes/Domain/Repository/NewsDefaultRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,4 @@
/**
* News repository with all the callable functionality
*/
class NewsDefaultRepository extends NewsRepository
{
}
class NewsDefaultRepository extends NewsRepository {}
7 changes: 2 additions & 5 deletions Classes/Hooks/InlineElementHook.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,7 @@ class InlineElementHook implements InlineElementHookInterface
*
* @param InlineElement $parentObject
*/
public function init(&$parentObject): void
{
}
public function init(&$parentObject): void {}

/**
* Pre-processing to define which control items are enabled or disabled.
Expand All @@ -50,8 +48,7 @@ public function renderForeignRecordHeaderControl_preProcess(
array $childConfig,
$isVirtual,
array &$enabledControls
) {
}
) {}

/**
* Post-processing to define which control items to show. Possibly own icons can be added here.
Expand Down
4 changes: 1 addition & 3 deletions Classes/TreeProvider/DatabaseTreeDataProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,4 @@
/**
* TCA tree data provider which considers
*/
class DatabaseTreeDataProvider extends \TYPO3\CMS\Core\Tree\TableConfiguration\DatabaseTreeDataProvider
{
}
class DatabaseTreeDataProvider extends \TYPO3\CMS\Core\Tree\TableConfiguration\DatabaseTreeDataProvider {}

0 comments on commit f9c4376

Please sign in to comment.