Skip to content

Commit

Permalink
exporter changed namespace #972
Browse files Browse the repository at this point in the history
  • Loading branch information
nadar committed Aug 31, 2016
1 parent 7f7b151 commit 7b260a4
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion modules/exporter/Module.php
@@ -1,6 +1,6 @@
<?php

namespace exporter;
namespace luya\exporter;

class Module extends \luya\base\Module
{
Expand Down
2 changes: 1 addition & 1 deletion modules/exporter/README.md
Expand Up @@ -17,7 +17,7 @@ Add the module to your application config:
'modules' => [
// ...
'exporter' => [
'class' => 'exporter\Module',
'class' => 'luya\exporter\Module',
'downloadPassword' => 'EnterYourSecureRandomToken',
],
]
Expand Down
2 changes: 1 addition & 1 deletion modules/exporter/commands/DatabaseController.php
@@ -1,6 +1,6 @@
<?php

namespace exporter\commands;
namespace luya\exporter\commands;

use Yii;
use Ifsnop\Mysqldump\Mysqldump;
Expand Down
2 changes: 1 addition & 1 deletion modules/exporter/commands/ExportController.php
@@ -1,6 +1,6 @@
<?php

namespace exporter\commands;
namespace luya\exporter\commands;

use Yii;
use luya\helpers\ZipHelper;
Expand Down
2 changes: 1 addition & 1 deletion modules/exporter/composer.json
Expand Up @@ -20,7 +20,7 @@
},
"autoload" : {
"psr-4" : {
"exporter\\" : ""
"luya\\exporter\\" : ""
}
},
"extra": {
Expand Down
2 changes: 1 addition & 1 deletion modules/exporter/controllers/DefaultController.php
@@ -1,6 +1,6 @@
<?php

namespace exporter\controllers;
namespace luya\exporter\controllers;

use Yii;
use Exception;
Expand Down

0 comments on commit 7b260a4

Please sign in to comment.