Skip to content

Commit

Permalink
Merge pull request #2111 from LuckyCyborg/4.0
Browse files Browse the repository at this point in the history
Overall improvements
  • Loading branch information
LuckyCyborg authored Aug 22, 2018
2 parents 0becb50 + bf2037d commit f1fd8fb
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
2 changes: 1 addition & 1 deletion app/Platform/Bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// Define The Application Version
//--------------------------------------------------------------------------

define('VERSION', '4.0.88');
define('VERSION', '4.0.89');

//--------------------------------------------------------------------------
// Set PHP Error Reporting Options
Expand Down
7 changes: 0 additions & 7 deletions shared/Cache/CacheServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,6 @@

class CacheServiceProvider extends ServiceProvider
{
/**
* Indicates if loading of the provider is deferred.
*
* @var bool
*/
protected $defer = true;


/**
* Bootstrap the application services.
Expand Down
10 changes: 10 additions & 0 deletions shared/Widgets/WidgetServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,14 @@ public function register()
return new WidgetManager($app['request'], $app);
});
}

/**
* Get the services provided by the provider.
*
* @return array
*/
public function provides()
{
return array('widgets');
}
}

0 comments on commit f1fd8fb

Please sign in to comment.