Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
open-source
MetaGer
Commits
5a1b17d7
Commit
5a1b17d7
authored
Apr 19, 2017
by
Dominik Hebeler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Redis Fascade ersetzt, da diese häufig nicht mehr funktioniert hat.
parent
b8373dc0
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
7 additions
and
7 deletions
+7
-7
app/Console/Commands/LogRotate.php
app/Console/Commands/LogRotate.php
+1
-1
app/Http/Controllers/AdminInterface.php
app/Http/Controllers/AdminInterface.php
+1
-1
app/Http/Controllers/LogController.php
app/Http/Controllers/LogController.php
+1
-1
app/Jobs/Search.php
app/Jobs/Search.php
+1
-1
app/MetaGer.php
app/MetaGer.php
+1
-1
app/Models/Searchengine.php
app/Models/Searchengine.php
+1
-1
app/Providers/AppServiceProvider.php
app/Providers/AppServiceProvider.php
+1
-1
No files found.
app/Console/Commands/LogRotate.php
View file @
5a1b17d7
...
...
@@ -3,7 +3,7 @@
namespace
App\Console\Commands
;
use
Illuminate\Console\Command
;
use
Redis
;
use
Illuminate\Support\Facades\
Redis
;
class
LogRotate
extends
Command
{
...
...
app/Http/Controllers/AdminInterface.php
View file @
5a1b17d7
...
...
@@ -3,7 +3,7 @@
namespace
App\Http\Controllers
;
use
Illuminate\Http\Request
;
use
Redis
;
use
Illuminate\Support\Facades\
Redis
;
class
AdminInterface
extends
Controller
{
...
...
app/Http/Controllers/LogController.php
View file @
5a1b17d7
...
...
@@ -3,7 +3,7 @@
namespace
App\Http\Controllers
;
use
Illuminate\Http\Request
;
use
Redis
;
use
Illuminate\Support\Facades\
Redis
;
class
LogController
extends
Controller
{
...
...
app/Jobs/Search.php
View file @
5a1b17d7
...
...
@@ -6,7 +6,7 @@ use Illuminate\Bus\Queueable;
use
Illuminate\Contracts\Queue\ShouldQueue
;
use
Illuminate\Queue\InteractsWithQueue
;
use
Illuminate\Queue\SerializesModels
;
use
Redis
;
use
Illuminate\Support\Facades\
Redis
;
class
Search
implements
ShouldQueue
{
...
...
app/MetaGer.php
View file @
5a1b17d7
...
...
@@ -8,7 +8,7 @@ use Jenssegers\Agent\Agent;
use
LaravelLocalization
;
use
Log
;
use
Predis\Connection\ConnectionException
;
use
Redis
;
use
Illuminate\Support\Facades\
Redis
;
class
MetaGer
{
...
...
app/Models/Searchengine.php
View file @
5a1b17d7
...
...
@@ -7,7 +7,7 @@ use App\MetaGer;
use
Cache
;
use
Illuminate\Foundation\Bus\DispatchesJobs
;
use
Log
;
use
Redis
;
use
Illuminate\Support\Facades\
Redis
;
abstract
class
Searchengine
{
...
...
app/Providers/AppServiceProvider.php
View file @
5a1b17d7
...
...
@@ -6,7 +6,7 @@ use Illuminate\Queue\Events\JobProcessed;
use
Illuminate\Queue\Events\JobProcessing
;
use
Illuminate\Support\ServiceProvider
;
use
Queue
;
use
Redis
;
use
Illuminate\Support\Facades\
Redis
;
class
AppServiceProvider
extends
ServiceProvider
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment