-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6afbe33
commit 49fc1cf
Showing
7 changed files
with
55 additions
and
96 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<?php namespace Arcanesoft\Foundation\Providers; | ||
|
||
use Arcanedev\Support\Providers\ViewComposerServiceProvider as ServiceProvider; | ||
use Arcanesoft\Foundation\ViewComposers\SidebarComposer; | ||
use Arcanesoft\Foundation\ViewComposers\System\FoldersPermissionsComposer; | ||
use Arcanesoft\Foundation\ViewComposers\System\ServerRequirementsComposer; | ||
|
||
/** | ||
* Class ViewComposerServiceProvider | ||
* | ||
* @package Arcanesoft\Foundation\Providers | ||
* @author ARCANEDEV <[email protected]> | ||
*/ | ||
class ViewComposerServiceProvider extends ServiceProvider | ||
{ | ||
/* ------------------------------------------------------------------------------------------------ | ||
| Properties | ||
| ------------------------------------------------------------------------------------------------ | ||
*/ | ||
/** | ||
* Register the composer classes. | ||
* | ||
* @var array | ||
*/ | ||
protected $composerClasses = [ | ||
SidebarComposer::VIEW_NAME => SidebarComposer::class, | ||
ServerRequirementsComposer::VIEW_NAME => ServerRequirementsComposer::class, | ||
FoldersPermissionsComposer::VIEW_NAME => FoldersPermissionsComposer::class, | ||
]; | ||
} |