Skip to content

Commit

Permalink
Name
Browse files Browse the repository at this point in the history
  • Loading branch information
RyanThompson committed May 19, 2016
1 parent 0ae5baa commit 5aadece
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Expand Up @@ -6,14 +6,14 @@
use Illuminate\Contracts\Foundation\Application;

/**
* Class ConfigureStreams
* Class ConfigureSystem
*
* @link http://pyrocms.com/
* @author PyroCMS, Inc. <support@pyrocms.com>
* @author Ryan Thompson <ryan@pyrocms.com>
* @package Anomaly\SettingsModule\Setting\Command
*/
class ConfigureStreams implements SelfHandling
class ConfigureSystem implements SelfHandling
{

/**
Expand Down
4 changes: 2 additions & 2 deletions src/SettingsModuleServiceProvider.php
@@ -1,6 +1,6 @@
<?php namespace Anomaly\SettingsModule;

use Anomaly\SettingsModule\Setting\Command\ConfigureStreams;
use Anomaly\SettingsModule\Setting\Command\ConfigureSystem;
use Anomaly\Streams\Platform\Addon\AddonServiceProvider;
use Anomaly\Streams\Platform\Application\Application;

Expand Down Expand Up @@ -78,7 +78,7 @@ public function boot(Application $application)
return;
}

$this->dispatch(new ConfigureStreams());
$this->dispatch(new ConfigureSystem());
}

}

0 comments on commit 5aadece

Please sign in to comment.