diff --git a/src/ServiceController.php b/src/ServiceController.php index 0ee8697..05fc18c 100644 --- a/src/ServiceController.php +++ b/src/ServiceController.php @@ -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) { diff --git a/tests/Controller/CheckinRequestControllerTest.php b/tests/Controller/CheckinRequestControllerTest.php index df9aa3c..af7f903 100644 --- a/tests/Controller/CheckinRequestControllerTest.php +++ b/tests/Controller/CheckinRequestControllerTest.php @@ -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); }