Skip to content

Commit

Permalink
Rename main module class
Browse files Browse the repository at this point in the history
  • Loading branch information
gplcart committed Jan 2, 2018
1 parent 0d701c6 commit 8901c2d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Module.php → Main.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@

namespace gplcart\modules\image;

use gplcart\core\Library,
gplcart\core\Module as CoreModule;
use gplcart\core\Module,
gplcart\core\Library;

/**
* Main class for Image module
*/
class Module
class Main
{

/**
Expand All @@ -31,10 +31,10 @@ class Module
protected $library;

/**
* @param CoreModule $module
* @param Module $module
* @param Library $library
*/
public function __construct(CoreModule $module, Library $library)
public function __construct(Module $module, Library $library)
{
$this->module = $module;
$this->library = $library;
Expand Down

0 comments on commit 8901c2d

Please sign in to comment.