Skip to content

Commit

Permalink
Update typehint.
Browse files Browse the repository at this point in the history
Signed-off-by: Mior Muhammad Zaki <crynobone@gmail.com>
  • Loading branch information
crynobone committed Aug 25, 2019
1 parent 4db7708 commit c0d120f
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/Manager.php
Expand Up @@ -3,6 +3,7 @@
namespace Katsana;

use Illuminate\Support\Arr;
use Illuminate\Contracts\Container\Container;

class Manager extends \Illuminate\Support\Manager
{
Expand All @@ -16,12 +17,12 @@ class Manager extends \Illuminate\Support\Manager
/**
* Create a new manager instance.
*
* @param \Illuminate\Contracts\Foundation\Application $app
* @param array $configurations
* @param \Illuminate\Contracts\Container\Container $container
* @param array $configurations
*/
public function __construct($app, array $configurations)
public function __construct(Container $container, array $configurations)
{
parent::__construct($app);
parent::__construct($container);

$this->configurations = $configurations;
}
Expand Down

0 comments on commit c0d120f

Please sign in to comment.