@@ -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 | } |
@@ -20,7 +20,6 @@ |
||
20 | 20 | /** |
21 | 21 | * Handle the event. |
22 | 22 | * |
23 | - * @param Events $event |
|
24 | 23 | */ |
25 | 24 | public function handle(Administrators $user) |
26 | 25 | { |
@@ -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'); |
@@ -15,11 +15,11 @@ discard block |
||
15 | 15 | */ |
16 | 16 | public function categories() |
17 | 17 | { |
18 | - $tab = []; |
|
18 | + $tab = [ ]; |
|
19 | 19 | $categories = Categories::all(); |
20 | 20 | |
21 | 21 | foreach ($categories as $categorie) { |
22 | - $tab[] = |
|
22 | + $tab[ ] = |
|
23 | 23 | [ |
24 | 24 | $categorie->title, |
25 | 25 | count($categorie->movies), |
@@ -39,11 +39,11 @@ discard block |
||
39 | 39 | |
40 | 40 | //exit(dump($resultat)); |
41 | 41 | |
42 | - $tab = []; |
|
42 | + $tab = [ ]; |
|
43 | 43 | foreach ($resultat as $actor) { |
44 | - $tab[] = [ |
|
44 | + $tab[ ] = [ |
|
45 | 45 | 'name' => $actor->city, |
46 | - 'data' => [(int) $actor->nb], |
|
46 | + 'data' => [ (int) $actor->nb ], |
|
47 | 47 | ]; |
48 | 48 | } |
49 | 49 |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | */ |
57 | 57 | public function checkout() |
58 | 58 | { |
59 | - $ids = session('likes', []); |
|
59 | + $ids = session('likes', [ ]); |
|
60 | 60 | |
61 | 61 | $total = 0; |
62 | 62 | foreach ($ids as $id) { |
@@ -83,12 +83,12 @@ discard block |
||
83 | 83 | $payment->setIntent('sale'); |
84 | 84 | $payment->setPayer($payer); |
85 | 85 | $payment->setRedirectUrls($redirectUrls); |
86 | - $payment->setTransactions([$transaction]); |
|
86 | + $payment->setTransactions([ $transaction ]); |
|
87 | 87 | |
88 | 88 | //response de Paypal |
89 | 89 | $response = $payment->create($this->_apiContext); |
90 | 90 | |
91 | - $redirectUrl = $response->links[1]->href; |
|
91 | + $redirectUrl = $response->links[ 1 ]->href; |
|
92 | 92 | |
93 | 93 | //redirect to Plateform Paypal |
94 | 94 | return Redirect::to($redirectUrl); |
@@ -121,7 +121,7 @@ discard block |
||
121 | 121 | $executePayment = $payment->execute($paymentExecution, $this->_apiContext); |
122 | 122 | |
123 | 123 | // Clear the shopping cart, |
124 | - $request->session()->pull('likes', []); |
|
124 | + $request->session()->pull('likes', [ ]); |
|
125 | 125 | |
126 | 126 | //write log |
127 | 127 | Log::info('Un client vient de passer uen commande via Paypal'.$payer_id); |