Skip to content

Commit

Permalink
reformat facade and add docblock
Browse files Browse the repository at this point in the history
  • Loading branch information
koenhoeijmakers committed Oct 5, 2018
1 parent 32b8680 commit eb369fe
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 7 deletions.
23 changes: 16 additions & 7 deletions src/Facades/FeedsFacade.php
Original file line number Diff line number Diff line change
@@ -1,11 +1,20 @@
<?php namespace willvincent\Feeds\Facades;
<?php

use Illuminate\Support\Facades\Facade;

class FeedsFacade extends Facade {
namespace willvincent\Feeds\Facades;

protected static function getFacadeAccessor() {
return 'Feeds';
}
use Illuminate\Support\Facades\Facade;

class FeedsFacade extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*
* @throws \RuntimeException
*/
protected static function getFacadeAccessor()
{
return 'Feeds';
}
}
1 change: 1 addition & 0 deletions src/config/feeds.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
|
*/
'ssl_check.disabled' => false,

/*
|--------------------------------------------------------------------------
| Strip Html Tags Disabled
Expand Down

0 comments on commit eb369fe

Please sign in to comment.