Skip to content

Commit

Permalink
Release 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Riiiad committed Jun 19, 2024
1 parent cd58c3c commit 9fb2489
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
7 changes: 4 additions & 3 deletions Classes/Controller/BiteJobsController.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,15 @@
namespace FGTCLB\AcademicBiteJobs\Controller;

use Psr\Http\Message\ResponseInterface;
use TYPO3\CMS\Core\Utility\GeneralUtility;
use TYPO3\CMS\Extbase\Mvc\Controller\ActionController;
use FGTCLB\AcademicBiteJobs\Services\BiteJobsService;

class BiteJobsController extends ActionController
{
public function __construct(
protected readonly BiteJobsService $biteJobsService
) {
protected BiteJobsService $biteJobsService;
public function __construct(BiteJobsService $biteJobsService) {
$this->biteJobsService = $biteJobsService ?? GeneralUtility::makeInstance(BiteJobsService::class);
}
public function listAction(): ResponseInterface
{
Expand Down
4 changes: 2 additions & 2 deletions Documentation/Settings.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

[general]

project = Academic Profiles
release = 0.1.0
project = Academic Bite Jobs
release = 1.0.1
copyright = since 2023 by FGTCLB GmbH

[html_theme_options]
Expand Down
2 changes: 1 addition & 1 deletion ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
],
],
'state' => 'stable',
'version' => '1.0.0',
'version' => '1.0.1',
'clearCacheOnLoad' => true,
'category' => 'fe,be',
'author' => 'Riad Zejnilagic Trumic',
Expand Down

0 comments on commit 9fb2489

Please sign in to comment.