Skip to content

Commit

Permalink
Update from Slim to Aura container
Browse files Browse the repository at this point in the history
  • Loading branch information
keithbauer committed Oct 24, 2024
1 parent 5599d24 commit 2ee524c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/ServiceController.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ class ServiceController extends Controller
/**
* Controller constructor.
*
* @param \Slim\Container $container
* @param int $cacheSeconds
* @param \Aura\Di\Container $container
* @param int $cacheSeconds
*/
public function __construct(Container $container, int $cacheSeconds = 0)
{
Expand Down
3 changes: 1 addition & 2 deletions tests/Controller/CheckinRequestControllerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,8 @@ public function setUp(): void
public $container;
public $cacheSeconds;

public function __construct(\Slim\Container $container, $cacheSeconds)
public function __construct(\Aura\Di\Container $container, $cacheSeconds)
{
$this->setUseJobService(1);
parent::__construct($container, $cacheSeconds);
}

Expand Down

0 comments on commit 2ee524c

Please sign in to comment.