Skip to content

Commit

Permalink
[TASK] Cleanup code
Browse files Browse the repository at this point in the history
  • Loading branch information
bmack committed May 3, 2024
1 parent ad2318d commit ff6a010
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Classes/FrontendRequestBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,15 +72,15 @@ public function buildRequestForPage(UriInterface $uri, ?int $frontendUserId, $fr
try {
$response = $this->executeFrontendRequest($request);
} catch (ImmediateResponseException $e) {
var_dump(get_class($e));
#var_dump(get_class($e));
$response = $e->getResponse();
} catch (RequiredArgumentMissingException $e) {
// @todo: log
} catch (PageNotFoundException $e) {
// @todo: log
} catch (\Throwable $e) {
// @todo: log
var_dump(get_class($e));
#var_dump(get_class($e));
}
$this->restore();

Expand Down
2 changes: 1 addition & 1 deletion ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
'author' => 'b13 GmbH',
'author_email' => 'typo3@b13.com',
'state' => 'stable',
'version' => '1.4.0',
'version' => '1.4.3',
'constraints' => [
'depends' => [
'typo3' => '12.0.0-12.4.99',
Expand Down

0 comments on commit ff6a010

Please sign in to comment.