Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions Classes/Command/QueueCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,9 @@
use TYPO3\CMS\Core\Exception\SiteNotFoundException;
use TYPO3\CMS\Core\Utility\GeneralUtility;
use TYPO3\CMS\Extbase\Configuration\Exception\InvalidConfigurationTypeException;
use TYPO3\CMS\Extbase\Object\Exception;
use TYPO3\CMS\Extbase\Persistence\Exception\IllegalObjectTypeException;
use TYPO3\CMS\Extbase\Persistence\Exception\InvalidQueryException;
use TYPO3\CMS\Extbase\Persistence\Exception\UnknownObjectException;
use TYPO3\CMS\Extbase\SignalSlot\Exception\InvalidSlotException;
use TYPO3\CMS\Extbase\SignalSlot\Exception\InvalidSlotReturnException;

class QueueCommand extends Command
{
Expand Down Expand Up @@ -50,12 +47,9 @@ public function configure()
* @throws IllegalObjectTypeException
* @throws InvalidConfigurationTypeException
* @throws InvalidQueryException
* @throws InvalidSlotException
* @throws InvalidSlotReturnException
* @throws UnknownObjectException
* @throws ArgumentMissingException
* @throws MisconfigurationException
* @throws Exception
* @throws SiteNotFoundException
*/
protected function execute(InputInterface $input, OutputInterface $output): int
Expand Down
2 changes: 0 additions & 2 deletions Classes/Domain/Repository/LinkRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
use In2code\Luxletter\Exception\ArgumentMissingException;
use In2code\Luxletter\Utility\DatabaseUtility;
use TYPO3\CMS\Core\Database\Connection;
use TYPO3\CMS\Extbase\Object\Exception;
use TYPO3\CMS\Extbase\Persistence\Exception\IllegalObjectTypeException;

class LinkRepository extends AbstractRepository
Expand Down Expand Up @@ -47,7 +46,6 @@ public function isHashAlreadyExisting(string $hash): bool
* @return void
* @throws IllegalObjectTypeException
* @throws ArgumentMissingException
* @throws Exception
*/
public function add($object)
{
Expand Down
15 changes: 0 additions & 15 deletions Classes/Mail/ProgressQueue.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,9 @@
use TYPO3\CMS\Core\Exception\SiteNotFoundException;
use TYPO3\CMS\Core\Utility\GeneralUtility;
use TYPO3\CMS\Extbase\Configuration\Exception\InvalidConfigurationTypeException;
use TYPO3\CMS\Extbase\Object\Exception;
use TYPO3\CMS\Extbase\Persistence\Exception\IllegalObjectTypeException;
use TYPO3\CMS\Extbase\Persistence\Exception\InvalidQueryException;
use TYPO3\CMS\Extbase\Persistence\Exception\UnknownObjectException;
use TYPO3\CMS\Extbase\SignalSlot\Exception\InvalidSlotException;
use TYPO3\CMS\Extbase\SignalSlot\Exception\InvalidSlotReturnException;

/**
* Class ProgressQueue
Expand Down Expand Up @@ -78,14 +75,11 @@ public function __construct(OutputInterface $output)
* @param int $newsletterIdentifier
* @return int Number of progressed queued mails
* @throws ArgumentMissingException
* @throws Exception
* @throws ExtensionConfigurationExtensionNotConfiguredException
* @throws ExtensionConfigurationPathDoesNotExistException
* @throws IllegalObjectTypeException
* @throws InvalidConfigurationTypeException
* @throws InvalidQueryException
* @throws InvalidSlotException
* @throws InvalidSlotReturnException
* @throws MisconfigurationException
* @throws SiteNotFoundException
* @throws UnknownObjectException
Expand Down Expand Up @@ -122,13 +116,10 @@ public function progress(int $limit, int $newsletterIdentifier): int
* @param Queue $queue
* @return void
* @throws ArgumentMissingException
* @throws Exception
* @throws ExtensionConfigurationExtensionNotConfiguredException
* @throws ExtensionConfigurationPathDoesNotExistException
* @throws IllegalObjectTypeException
* @throws InvalidConfigurationTypeException
* @throws InvalidSlotException
* @throws InvalidSlotReturnException
* @throws MisconfigurationException
* @throws SiteNotFoundException
*/
Expand Down Expand Up @@ -170,13 +161,10 @@ protected function getSubject(Queue $queue): string
* @param Queue $queue
* @return string
* @throws ArgumentMissingException
* @throws Exception
* @throws ExtensionConfigurationExtensionNotConfiguredException
* @throws ExtensionConfigurationPathDoesNotExistException
* @throws IllegalObjectTypeException
* @throws InvalidConfigurationTypeException
* @throws InvalidSlotException
* @throws InvalidSlotReturnException
* @throws MisconfigurationException
* @throws SiteNotFoundException
*/
Expand Down Expand Up @@ -204,12 +192,9 @@ protected function getBodyText(Queue $queue): string
* @param string $bodytext
* @return string
* @throws ArgumentMissingException
* @throws Exception
* @throws ExtensionConfigurationExtensionNotConfiguredException
* @throws ExtensionConfigurationPathDoesNotExistException
* @throws IllegalObjectTypeException
* @throws InvalidSlotException
* @throws InvalidSlotReturnException
* @throws MisconfigurationException
* @throws SiteNotFoundException
*/
Expand Down
3 changes: 0 additions & 3 deletions Classes/ViewHelpers/Format/CropBySelectionViewHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
use DomXPath;
use In2code\Luxletter\Utility\DomDocumentUtility;
use In2code\Luxletter\Utility\ObjectUtility;
use TYPO3\CMS\Extbase\Object\Exception;
use TYPO3Fluid\Fluid\Core\ViewHelper\AbstractViewHelper;

/**
Expand Down Expand Up @@ -40,7 +39,6 @@ public function initializeArguments(): void

/**
* @return string
* @throws Exception
*/
public function render(): string
{
Expand Down Expand Up @@ -77,7 +75,6 @@ protected function getHtmlOfDomElement(DOMNode $element): string
/**
* @param string $string
* @return string
* @throws Exception
*/
protected function cropText(string $string): string
{
Expand Down