@@ -37,7 +37,7 @@ |
||
37 | 37 | */ |
38 | 38 | public function map(Router $router) |
39 | 39 | { |
40 | - $router->group(['namespace' => $this->namespace], function ($router) { |
|
40 | + $router->group([ 'namespace' => $this->namespace ], function($router) { |
|
41 | 41 | require app_path('Http/routes.php'); |
42 | 42 | }); |
43 | 43 | } |
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | //exit('coucou'); |
64 | 64 | |
65 | 65 | // application du middleware guest |
66 | - $this->middleware('guest', ['except' => 'getLogout']); |
|
66 | + $this->middleware('guest', [ 'except' => 'getLogout' ]); |
|
67 | 67 | } |
68 | 68 | |
69 | 69 | /** |
@@ -90,9 +90,9 @@ discard block |
||
90 | 90 | protected function create(array $data) |
91 | 91 | { |
92 | 92 | return Administrators::create([ |
93 | - 'name' => $data['name'], |
|
94 | - 'email' => $data['email'], |
|
95 | - 'password' => bcrypt($data['password']), |
|
93 | + 'name' => $data[ 'name' ], |
|
94 | + 'email' => $data[ 'email' ], |
|
95 | + 'password' => bcrypt($data[ 'password' ]), |
|
96 | 96 | ]); |
97 | 97 | } |
98 | 98 | |
@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | */ |
103 | 103 | public function getLogin() |
104 | 104 | { |
105 | - return view('Auth/login', ['errors' => []]); |
|
105 | + return view('Auth/login', [ 'errors' => [ ] ]); |
|
106 | 106 | } |
107 | 107 | |
108 | 108 |
@@ -8,7 +8,6 @@ |
||
8 | 8 | use App\Http\Models\User; |
9 | 9 | use Illuminate\Http\Request; |
10 | 10 | use Illuminate\Support\Facades\Validator; |
11 | -use Netshell\Paypal\Facades\Paypal; |
|
12 | 11 | |
13 | 12 | |
14 | 13 | /** |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | public function ajaxmovies(Request $request) |
38 | 38 | { |
39 | 39 | $validator = Validator::make( |
40 | - $request->all(), //request all : tous les elements de requetses |
|
40 | + $request->all(), //request all : tous les elements de requetses |
|
41 | 41 | [ |
42 | 42 | 'title' => 'required|min:10', |
43 | 43 | ], [ |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | $executePayment = $payment->execute($paymentExecution, $this->_apiContext); |
79 | 79 | |
80 | 80 | // Clear the shopping cart, write to database, send notifications, etc. |
81 | - $request->session()->pull('likes', []); |
|
81 | + $request->session()->pull('likes', [ ]); |
|
82 | 82 | |
83 | 83 | return view('Main/index'); |
84 | 84 | } |
@@ -93,9 +93,9 @@ discard block |
||
93 | 93 | $nbmovies = Movies::count(); |
94 | 94 | $nbseances = Sessions::count(); |
95 | 95 | |
96 | - $videos = collect(DB::connection('mongodb')->collection('videos')->get())->shuffle(); |
|
97 | - $youtubeinfo = DB::connection('mongodb')->collection('stats') |
|
98 | - ->where(['origin' => 'Youtube', 'type' => 'infos']) |
|
96 | + $videos = collect(DB::connection('mongodb')->collection('videos')->get())->shuffle(); |
|
97 | + $youtubeinfo = DB::connection('mongodb')->collection('stats') |
|
98 | + ->where([ 'origin' => 'Youtube', 'type' => 'infos' ]) |
|
99 | 99 | ->first(); |
100 | 100 | |
101 | 101 | |
@@ -119,10 +119,10 @@ discard block |
||
119 | 119 | 'avgacteurs' => $avgacteurs->age, |
120 | 120 | 'avghour' => $avghour->avghour, |
121 | 121 | 'nbacteurs' => $nbacteurs, |
122 | - 'youtubeinfo' => $youtubeinfo['data'], |
|
123 | - 'youtubeinfodateupdated' => $youtubeinfo['created_at']->sec, |
|
122 | + 'youtubeinfo' => $youtubeinfo[ 'data' ], |
|
123 | + 'youtubeinfodateupdated' => $youtubeinfo[ 'created_at' ]->sec, |
|
124 | 124 | 'videos' => $videos, |
125 | - 'video' => $videos[0], |
|
125 | + 'video' => $videos[ 0 ], |
|
126 | 126 | 'nbcommentaires' => $nbcommentaires, |
127 | 127 | 'nbmovies' => $nbmovies, |
128 | 128 | 'nbseances' => $nbseances, |
@@ -29,7 +29,7 @@ |
||
29 | 29 | { |
30 | 30 | $email = $this->argument('email'); |
31 | 31 | $nom = $this->argument('nom'); |
32 | - Mail::send('Emails/welcome', [], function ($m) use ($email, $nom) { |
|
32 | + Mail::send('Emails/welcome', [ ], function($m) use ($email, $nom) { |
|
33 | 33 | $m->from('[email protected]', 'Julien Boyer') |
34 | 34 | ->to($email, $nom) |
35 | 35 | ->subject('Welcome to the site '); |
@@ -29,7 +29,7 @@ |
||
29 | 29 | */ |
30 | 30 | public function register() |
31 | 31 | { |
32 | - $this->app->singleton(Cart::class, function ($app) { |
|
32 | + $this->app->singleton(Cart::class, function($app) { |
|
33 | 33 | return new Cart(); |
34 | 34 | }); |
35 | 35 | } |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | |
50 | 50 | if (!empty($channel)) { |
51 | 51 | DB::connection('mongodb')->collection('stats') |
52 | - ->where(['origin' => 'Youtube', 'type' => 'infos'])->delete(); |
|
52 | + ->where([ 'origin' => 'Youtube', 'type' => 'infos' ])->delete(); |
|
53 | 53 | |
54 | 54 | $stat = new Stats(); |
55 | 55 | $stat->origin = 'Youtube'; |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | 'maxResults' => 30, |
66 | 66 | ]; |
67 | 67 | |
68 | - $videos = Yt::searchAdvanced($params, true)['results']; |
|
68 | + $videos = Yt::searchAdvanced($params, true)[ 'results' ]; |
|
69 | 69 | |
70 | 70 | if (!empty($videos)) { |
71 | 71 | DB::connection('mongodb')->collection('videos')->delete(); |
@@ -38,11 +38,11 @@ discard block |
||
38 | 38 | */ |
39 | 39 | public function handle() |
40 | 40 | { |
41 | - $infos = \Thujohn\Twitter\Facades\Twitter::getUsersLookup(['screen_name' => 'Symfomany', 'format' => 'php']); |
|
41 | + $infos = \Thujohn\Twitter\Facades\Twitter::getUsersLookup([ 'screen_name' => 'Symfomany', 'format' => 'php' ]); |
|
42 | 42 | |
43 | 43 | if (!empty($infos)) { |
44 | 44 | DB::connection('mongodb')->collection('stats') |
45 | - ->where(['origin' => 'Twitter', 'type' => 'infos'])->delete(); |
|
45 | + ->where([ 'origin' => 'Twitter', 'type' => 'infos' ])->delete(); |
|
46 | 46 | |
47 | 47 | $stat = new Stats(); |
48 | 48 | $stat->origin = 'Twitter'; |
@@ -51,10 +51,10 @@ discard block |
||
51 | 51 | $stat->save(); |
52 | 52 | } |
53 | 53 | |
54 | - $tweets = \Thujohn\Twitter\Facades\Twitter::getDmsOut(['format' => 'php']); |
|
54 | + $tweets = \Thujohn\Twitter\Facades\Twitter::getDmsOut([ 'format' => 'php' ]); |
|
55 | 55 | if (!empty($tweets)) { |
56 | 56 | DB::connection('mongodb')->collection('tweets') |
57 | - ->where(['origin' => 'Twitter', 'type' => 'dmsout']) |
|
57 | + ->where([ 'origin' => 'Twitter', 'type' => 'dmsout' ]) |
|
58 | 58 | ->delete(); |
59 | 59 | foreach ($tweets as $tweet) { |
60 | 60 | $vi = new Tweets(); |
@@ -65,10 +65,10 @@ discard block |
||
65 | 65 | } |
66 | 66 | } |
67 | 67 | |
68 | - $tweets = \Thujohn\Twitter\Facades\Twitter::getFavorites(['format' => 'php']); |
|
68 | + $tweets = \Thujohn\Twitter\Facades\Twitter::getFavorites([ 'format' => 'php' ]); |
|
69 | 69 | if (!empty($tweets)) { |
70 | 70 | DB::connection('mongodb')->collection('tweets') |
71 | - ->where(['origin' => 'Twitter', 'type' => 'favorites']) |
|
71 | + ->where([ 'origin' => 'Twitter', 'type' => 'favorites' ]) |
|
72 | 72 | ->delete(); |
73 | 73 | foreach ($tweets as $tweet) { |
74 | 74 | $vi = new Tweets(); |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | |
87 | 87 | if (!empty($tweets)) { |
88 | 88 | DB::connection('mongodb')->collection('tweets') |
89 | - ->where(['origin' => 'Twitter', 'type' => 'mentionstimeline']) |
|
89 | + ->where([ 'origin' => 'Twitter', 'type' => 'mentionstimeline' ]) |
|
90 | 90 | ->delete(); |
91 | 91 | foreach ($tweets as $tweet) { |
92 | 92 | $vi = new Tweets(); |
@@ -104,7 +104,7 @@ discard block |
||
104 | 104 | |
105 | 105 | if (!empty($tweets)) { |
106 | 106 | DB::connection('mongodb')->collection('tweets') |
107 | - ->where(['origin' => 'Twitter', 'type' => 'hometimeline']) |
|
107 | + ->where([ 'origin' => 'Twitter', 'type' => 'hometimeline' ]) |
|
108 | 108 | ->delete(); |
109 | 109 | foreach ($tweets as $tweet) { |
110 | 110 | $vi = new Tweets(); |
@@ -123,7 +123,7 @@ discard block |
||
123 | 123 | |
124 | 124 | if (!empty($tweets)) { |
125 | 125 | DB::connection('mongodb')->collection('tweets') |
126 | - ->where(['origin' => 'Twitter', 'type' => 'usertimeline']) |
|
126 | + ->where([ 'origin' => 'Twitter', 'type' => 'usertimeline' ]) |
|
127 | 127 | ->delete(); |
128 | 128 | foreach ($tweets as $tweet) { |
129 | 129 | $vi = new Tweets(); |
@@ -4,7 +4,6 @@ |
||
4 | 4 | |
5 | 5 | use App\Http\Models\Stats; |
6 | 6 | use App\Http\Models\Tweets; |
7 | - |
|
8 | 7 | use Illuminate\Console\Command; |
9 | 8 | use Illuminate\Support\Facades\DB; |
10 | 9 |
@@ -49,7 +49,7 @@ |
||
49 | 49 | $users = $movie->actors(); |
50 | 50 | foreach ($users as $user) { |
51 | 51 | //send an email |
52 | - Mail::send('Emails/newsletter', [], function ($m) { |
|
52 | + Mail::send('Emails/newsletter', [ ], function($m) { |
|
53 | 53 | |
54 | 54 | $m->from('[email protected]', 'Florent Boyer'); |
55 | 55 | $m->to('[email protected]', 'Boyer Julien') |
@@ -26,12 +26,12 @@ discard block |
||
26 | 26 | /* |
27 | 27 | * BackOffice |
28 | 28 | */ |
29 | -Route::group(['prefix' => 'admin', 'middleware' => 'auth'], function () { |
|
29 | +Route::group([ 'prefix' => 'admin', 'middleware' => 'auth' ], function() { |
|
30 | 30 | |
31 | 31 | /* |
32 | 32 | * Cart Payment |
33 | 33 | */ |
34 | - Route::group(['prefix' => 'cart'], function () { |
|
34 | + Route::group([ 'prefix' => 'cart' ], function() { |
|
35 | 35 | /* |
36 | 36 | * Pages Recapitulatif |
37 | 37 | */ |
@@ -86,9 +86,9 @@ discard block |
||
86 | 86 | /* |
87 | 87 | * COMMENTAIRES |
88 | 88 | */ |
89 | - Route::group(['prefix' => 'comments'], function () { |
|
90 | - Route::get('/index', ['uses' => 'CommentsController@index', 'as' => 'comments.index']); |
|
91 | - Route::post('{id}/update', ['uses' => 'CommentsController@update', 'as' => 'comments.update']); |
|
89 | + Route::group([ 'prefix' => 'comments' ], function() { |
|
90 | + Route::get('/index', [ 'uses' => 'CommentsController@index', 'as' => 'comments.index' ]); |
|
91 | + Route::post('{id}/update', [ 'uses' => 'CommentsController@update', 'as' => 'comments.update' ]); |
|
92 | 92 | |
93 | 93 | /* |
94 | 94 | * Action Like |
@@ -103,7 +103,7 @@ discard block |
||
103 | 103 | /* |
104 | 104 | * CRUD de Movies |
105 | 105 | */ |
106 | - Route::group(['prefix' => 'movies'], function () { |
|
106 | + Route::group([ 'prefix' => 'movies' ], function() { |
|
107 | 107 | |
108 | 108 | /* |
109 | 109 | * Page index: liste des films |
@@ -180,7 +180,7 @@ discard block |
||
180 | 180 | }); |
181 | 181 | |
182 | 182 | // CRUD de categories |
183 | - Route::group(['prefix' => 'categories'], function () { |
|
183 | + Route::group([ 'prefix' => 'categories' ], function() { |
|
184 | 184 | |
185 | 185 | Route::get('/index', [ |
186 | 186 | 'as' => 'categories_index', |
@@ -227,7 +227,7 @@ discard block |
||
227 | 227 | }); |
228 | 228 | |
229 | 229 | // CRUD de actors |
230 | - Route::group(['prefix' => 'actors'], function () { |
|
230 | + Route::group([ 'prefix' => 'actors' ], function() { |
|
231 | 231 | |
232 | 232 | Route::get('/index', [ |
233 | 233 | 'as' => 'actors_index', |
@@ -252,7 +252,7 @@ discard block |
||
252 | 252 | }); |
253 | 253 | |
254 | 254 | // CRUD de directors |
255 | - Route::group(['prefix' => 'directors'], function () { |
|
255 | + Route::group([ 'prefix' => 'directors' ], function() { |
|
256 | 256 | |
257 | 257 | Route::get('/index', [ |
258 | 258 | 'as' => 'directors_delete', |
@@ -276,7 +276,7 @@ discard block |
||
276 | 276 | |
277 | 277 | }); |
278 | 278 | |
279 | - Route::group(['prefix' => 'api'], function () { |
|
279 | + Route::group([ 'prefix' => 'api' ], function() { |
|
280 | 280 | |
281 | 281 | // mon retour en JSON de mes catégories |
282 | 282 | Route::get('/categories', [ |
@@ -292,7 +292,7 @@ discard block |
||
292 | 292 | }); |
293 | 293 | |
294 | 294 | // CRUD de administrators |
295 | - Route::group(['prefix' => 'administrators', 'middleware' => 'authorisation'], function () { |
|
295 | + Route::group([ 'prefix' => 'administrators', 'middleware' => 'authorisation' ], function() { |
|
296 | 296 | |
297 | 297 | Route::get('/index', [ |
298 | 298 | 'as' => 'administrators_index', |
@@ -340,7 +340,7 @@ discard block |
||
340 | 340 | /* |
341 | 341 | * Page FAQ |
342 | 342 | */ |
343 | -Route::get('/faq', function () { |
|
343 | +Route::get('/faq', function() { |
|
344 | 344 | |
345 | 345 | return view('Pages/faq'); |
346 | 346 | }); |
@@ -348,7 +348,7 @@ discard block |
||
348 | 348 | /* |
349 | 349 | * Page about |
350 | 350 | */ |
351 | -Route::get('/about', function () { |
|
351 | +Route::get('/about', function() { |
|
352 | 352 | |
353 | 353 | // retourne le nom de la vue |
354 | 354 | return view('Pages/about'); |
@@ -357,7 +357,7 @@ discard block |
||
357 | 357 | /* |
358 | 358 | * Pages concept |
359 | 359 | */ |
360 | -Route::get('/concept', function () { |
|
360 | +Route::get('/concept', function() { |
|
361 | 361 | |
362 | 362 | // retourne le nom de la vue |
363 | 363 | return view('Pages/concept'); |