Skip to content

Commit

Permalink
SidebarViewComposer classe name
Browse files Browse the repository at this point in the history
  • Loading branch information
sdebacker committed Mar 9, 2015
1 parent 8eb57fa commit a573ed1
Show file tree
Hide file tree
Showing 17 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion app/TypiCMS/Modules/Blocks/Providers/ModuleProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public function register()
/**
* Sidebar view composer
*/
$app->view->composer('admin._sidebar', 'TypiCMS\Modules\Blocks\Composers\SideBarViewComposer');
$app->view->composer('admin._sidebar', 'TypiCMS\Modules\Blocks\Composers\SidebarViewComposer');

$app->bind('TypiCMS\Modules\Blocks\Repositories\BlockInterface', function (Application $app) {
$repository = new EloquentBlock(new Block);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public function register()
/**
* Sidebar view composer
*/
$app->view->composer('admin._sidebar', 'TypiCMS\Modules\Categories\Composers\SideBarViewComposer');
$app->view->composer('admin._sidebar', 'TypiCMS\Modules\Categories\Composers\SidebarViewComposer');

$app->bind('TypiCMS\Modules\Categories\Repositories\CategoryInterface', function (Application $app) {
$repository = new EloquentCategory(new Category);
Expand Down
2 changes: 1 addition & 1 deletion app/TypiCMS/Modules/Contacts/Providers/ModuleProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public function register()
/**
* Sidebar view composer
*/
$app->view->composer('admin._sidebar', 'TypiCMS\Modules\Contacts\Composers\SideBarViewComposer');
$app->view->composer('admin._sidebar', 'TypiCMS\Modules\Contacts\Composers\SidebarViewComposer');

$app->bind('TypiCMS\Modules\Contacts\Repositories\ContactInterface', function (Application $app) {
$repository = new EloquentContact(new Contact);
Expand Down
2 changes: 1 addition & 1 deletion app/TypiCMS/Modules/Dashboard/Providers/ModuleProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public function register()
/**
* Sidebar view composer
*/
$app->view->composer('admin._sidebar', 'TypiCMS\Modules\Dashboard\Composers\SideBarViewComposer');
$app->view->composer('admin._sidebar', 'TypiCMS\Modules\Dashboard\Composers\SidebarViewComposer');

$app->bind('TypiCMS\Modules\Dashboard\Repositories\DashboardInterface', function (Application $app) {
$repository = new EloquentDashboard();
Expand Down
2 changes: 1 addition & 1 deletion app/TypiCMS/Modules/Events/Providers/ModuleProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public function register()
/**
* Sidebar view composer
*/
$app->view->composer('admin._sidebar', 'TypiCMS\Modules\Events\Composers\SideBarViewComposer');
$app->view->composer('admin._sidebar', 'TypiCMS\Modules\Events\Composers\SidebarViewComposer');

$app->bind('TypiCMS\Modules\Events\Repositories\EventInterface', function (Application $app) {
$repository = new EloquentEvent(new Event);
Expand Down
2 changes: 1 addition & 1 deletion app/TypiCMS/Modules/Files/Providers/ModuleProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public function register()
/**
* Sidebar view composer
*/
$app->view->composer('admin._sidebar', 'TypiCMS\Modules\Files\Composers\SideBarViewComposer');
$app->view->composer('admin._sidebar', 'TypiCMS\Modules\Files\Composers\SidebarViewComposer');

$app->bind('TypiCMS\Modules\Files\Repositories\FileInterface', function (Application $app) {
$repository = new EloquentFile(new File);
Expand Down
2 changes: 1 addition & 1 deletion app/TypiCMS/Modules/Galleries/Providers/ModuleProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public function register()
/**
* Sidebar view composer
*/
$app->view->composer('admin._sidebar', 'TypiCMS\Modules\Galleries\Composers\SideBarViewComposer');
$app->view->composer('admin._sidebar', 'TypiCMS\Modules\Galleries\Composers\SidebarViewComposer');

$app->bind('TypiCMS\Modules\Galleries\Repositories\GalleryInterface', function (Application $app) {
$repository = new EloquentGallery(new Gallery);
Expand Down
2 changes: 1 addition & 1 deletion app/TypiCMS/Modules/Groups/Providers/ModuleProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public function register()
/**
* Sidebar view composer
*/
$app->view->composer('admin._sidebar', 'TypiCMS\Modules\Groups\Composers\SideBarViewComposer');
$app->view->composer('admin._sidebar', 'TypiCMS\Modules\Groups\Composers\SidebarViewComposer');

$app->bind('TypiCMS\Modules\Groups\Repositories\GroupInterface', function (Application $app) {
return new SentryGroup(
Expand Down
2 changes: 1 addition & 1 deletion app/TypiCMS/Modules/Menus/Providers/ModuleProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public function register()
/**
* Sidebar view composer
*/
$app->view->composer('admin._sidebar', 'TypiCMS\Modules\Menus\Composers\SideBarViewComposer');
$app->view->composer('admin._sidebar', 'TypiCMS\Modules\Menus\Composers\SidebarViewComposer');

$app->bind('TypiCMS\Modules\Menus\Repositories\MenuInterface', function (Application $app) {
$repository = new EloquentMenu(new Menu);
Expand Down
2 changes: 1 addition & 1 deletion app/TypiCMS/Modules/News/Providers/ModuleProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public function register()
/**
* Sidebar view composer
*/
$app->view->composer('admin._sidebar', 'TypiCMS\Modules\News\Composers\SideBarViewComposer');
$app->view->composer('admin._sidebar', 'TypiCMS\Modules\News\Composers\SidebarViewComposer');

$app->bind('TypiCMS\Modules\News\Repositories\NewsInterface', function (Application $app) {
$repository = new EloquentNews(new News);
Expand Down
2 changes: 1 addition & 1 deletion app/TypiCMS/Modules/Pages/Providers/ModuleProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public function register()
/**
* Sidebar view composer
*/
$app->view->composer('admin._sidebar', 'TypiCMS\Modules\Pages\Composers\SideBarViewComposer');
$app->view->composer('admin._sidebar', 'TypiCMS\Modules\Pages\Composers\SidebarViewComposer');

/**
* Events
Expand Down
2 changes: 1 addition & 1 deletion app/TypiCMS/Modules/Partners/Providers/ModuleProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public function register()
/**
* Sidebar view composer
*/
$app->view->composer('admin._sidebar', 'TypiCMS\Modules\Partners\Composers\SideBarViewComposer');
$app->view->composer('admin._sidebar', 'TypiCMS\Modules\Partners\Composers\SidebarViewComposer');

$app->bind('TypiCMS\Modules\Partners\Repositories\PartnerInterface', function (Application $app) {
$repository = new EloquentPartner(new Partner);
Expand Down
2 changes: 1 addition & 1 deletion app/TypiCMS/Modules/Places/Providers/ModuleProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public function register()
/**
* Sidebar view composer
*/
$app->view->composer('admin._sidebar', 'TypiCMS\Modules\Places\Composers\SideBarViewComposer');
$app->view->composer('admin._sidebar', 'TypiCMS\Modules\Places\Composers\SidebarViewComposer');

$app->bind('TypiCMS\Modules\Places\Repositories\PlaceInterface', function (Application $app) {
$repository = new EloquentPlace(new Place);
Expand Down
2 changes: 1 addition & 1 deletion app/TypiCMS/Modules/Projects/Providers/ModuleProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public function register()
/**
* Sidebar view composer
*/
$app->view->composer('admin._sidebar', 'TypiCMS\Modules\Projects\Composers\SideBarViewComposer');
$app->view->composer('admin._sidebar', 'TypiCMS\Modules\Projects\Composers\SidebarViewComposer');

$app->bind('TypiCMS\Modules\Projects\Repositories\ProjectInterface', function (Application $app) {
$repository = new EloquentProject(
Expand Down
2 changes: 1 addition & 1 deletion app/TypiCMS/Modules/Tags/Providers/ModuleProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public function register()
/**
* Sidebar view composer
*/
$app->view->composer('admin._sidebar', 'TypiCMS\Modules\Tags\Composers\SideBarViewComposer');
$app->view->composer('admin._sidebar', 'TypiCMS\Modules\Tags\Composers\SidebarViewComposer');

$app->bind('TypiCMS\Modules\Tags\Repositories\TagInterface', function (Application $app) {
$repository = new EloquentTag(new Tag);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public function register()
/**
* Sidebar view composer
*/
$app->view->composer('admin._sidebar', 'TypiCMS\Modules\Translations\Composers\SideBarViewComposer');
$app->view->composer('admin._sidebar', 'TypiCMS\Modules\Translations\Composers\SidebarViewComposer');

$app->bind('TypiCMS\Modules\Translations\Repositories\TranslationInterface', function (Application $app) {
$repository = new EloquentTranslation(
Expand Down
2 changes: 1 addition & 1 deletion app/TypiCMS/Modules/Users/Providers/ModuleProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public function register()
/**
* Sidebar view composer
*/
$app->view->composer('admin._sidebar', 'TypiCMS\Modules\Users\Composers\SideBarViewComposer');
$app->view->composer('admin._sidebar', 'TypiCMS\Modules\Users\Composers\SidebarViewComposer');

$app->bind('TypiCMS\Modules\Users\Repositories\UserInterface', function (Application $app) {
return new SentryUser(
Expand Down

0 comments on commit a573ed1

Please sign in to comment.