Skip to content

Commit

Permalink
Move AsgardCms class to the foundation namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
nWidart committed Aug 1, 2017
1 parent 8f13ea3 commit f06b6a2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Modules/Core/Composers/ApplicationVersionViewComposer.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
namespace Modules\Core\Composers;

use Illuminate\Contracts\View\View;
use Modules\Core\AsgardCms;
use Modules\Core\Foundation\AsgardCms;

class ApplicationVersionViewComposer
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Modules\Core;
namespace Modules\Core\Foundation;

class AsgardCms
{
Expand Down
2 changes: 1 addition & 1 deletion Modules/Workshop/helpers.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
function module_version($module)
{
if (is_core_module($module->name) === true) {
return \Modules\Core\AsgardCms::VERSION;
return \Modules\Core\Foundation\AsgardCms::VERSION;
}
return $module->version;
}
Expand Down

0 comments on commit f06b6a2

Please sign in to comment.