Skip to content

Commit

Permalink
- looks like I didn't need to change the namespace. Best not to if I …
Browse files Browse the repository at this point in the history
…want Doug to merge.
  • Loading branch information
tarekadam committed Nov 1, 2015
1 parent a83eb58 commit 307329d
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@
},
"autoload": {
"psr-4": {
"TarekAdam\\CountryState\\": "src/"
"DougSisk\\CountryState\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
"dev-master": "1.1-dev"
}
}
}
2 changes: 1 addition & 1 deletion src/CountryState.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace TarekAdam\CountryState;
namespace DougSisk\CountryState;

use Phine\Country\Loader\Loader;

Expand Down
2 changes: 1 addition & 1 deletion src/CountryStateController.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace TarekAdam\CountryState;
namespace DougSisk\CountryState;

use Illuminate\Routing\Controller;

Expand Down
2 changes: 1 addition & 1 deletion src/CountryStateFacade.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace TarekAdam\CountryState;
namespace DougSisk\CountryState;

use Illuminate\Support\Facades\Facade;

Expand Down
8 changes: 4 additions & 4 deletions src/CountryStateServiceProvider.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace TarekAdam\CountryState;
namespace DougSisk\CountryState;

use Illuminate\Foundation\AliasLoader;
use Illuminate\Support\ServiceProvider;
Expand All @@ -14,7 +14,7 @@ class CountryStateServiceProvider extends ServiceProvider
*/
public function register()
{
$this->app->singleton('CountryState', 'TarekAdam\CountryState\CountryStateServiceProvider');
$this->app->singleton('CountryState', 'DougSisk\CountryState\CountryStateServiceProvider');
$this->mergeConfigFrom(__DIR__ . '/config/countrystate.php', 'countrystate');
}

Expand All @@ -28,7 +28,7 @@ public function boot()
]);

$routeConfig = [
'namespace' => 'TarekAdam\CountryState',
'namespace' => 'DougSisk\CountryState',
'prefix' => $this->app['config']->get('countrystate.routePrefix'),
];

Expand All @@ -42,7 +42,7 @@ public function boot()
]);
});

AliasLoader::getInstance()->alias('CountryState', 'TarekAdam\CountryState\CountryStateFacade');
AliasLoader::getInstance()->alias('CountryState', 'DougSisk\CountryState\CountryStateFacade');
}

/**
Expand Down

0 comments on commit 307329d

Please sign in to comment.