@@ -11,6 +11,6 @@ |
||
11 | 11 | | |
12 | 12 | */ |
13 | 13 | |
14 | -Route::get('/', function () { |
|
14 | +Route::get('/', function() { |
|
15 | 15 | return view('welcome'); |
16 | 16 | }); |
@@ -33,9 +33,9 @@ |
||
33 | 33 | public function index() |
34 | 34 | { |
35 | 35 | $data_grid = $this->getCompaniesInfoFromDB(); |
36 | - $columns="['id', 'symbol', 'name', 'exchange']"; |
|
36 | + $columns = "['id', 'symbol', 'name', 'exchange']"; |
|
37 | 37 | |
38 | - return view('home', ['data_grid' => $data_grid, 'columns'=> $columns]); |
|
38 | + return view('home', [ 'data_grid' => $data_grid, 'columns'=> $columns ]); |
|
39 | 39 | } |
40 | 40 | |
41 | 41 | /** |
@@ -80,7 +80,7 @@ |
||
80 | 80 | |
81 | 81 | /** |
82 | 82 | * @param $to_store |
83 | - * @param $extension_file |
|
83 | + * @param string $extension_file |
|
84 | 84 | * @param $name_file |
85 | 85 | */ |
86 | 86 | public function createAndStore($to_store, $extension_file, $name_file) |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | { |
40 | 40 | parent::__construct(); |
41 | 41 | |
42 | - $this->db_functions=$db_functions; |
|
42 | + $this->db_functions = $db_functions; |
|
43 | 43 | |
44 | 44 | } |
45 | 45 | |
@@ -52,9 +52,9 @@ discard block |
||
52 | 52 | { |
53 | 53 | $exchange_history = $this->db_functions->getAllDataFromExchangeHistory(); |
54 | 54 | |
55 | - for($i=0; $i<count($exchange_history); $i++) |
|
55 | + for ($i = 0; $i < count($exchange_history); $i++) |
|
56 | 56 | { |
57 | - $company_history = $exchange_history[$i]; |
|
57 | + $company_history = $exchange_history[ $i ]; |
|
58 | 58 | |
59 | 59 | $this->transformData($company_history); |
60 | 60 | } |
@@ -72,7 +72,7 @@ discard block |
||
72 | 72 | |
73 | 73 | $this->createAndStore($company_history, "json", $name_file); |
74 | 74 | |
75 | - $company_history=json_encode($company_history); |
|
75 | + $company_history = json_encode($company_history); |
|
76 | 76 | |
77 | 77 | $formatter = Formatter::make($company_history, Formatter::JSON); |
78 | 78 |
@@ -8,16 +8,16 @@ |
||
8 | 8 | public function transform($calcul) |
9 | 9 | { |
10 | 10 | return [ |
11 | - 'user_id' => $calcul['user_id'], |
|
12 | - 'name' => $calcul['name'], |
|
13 | - 'quantity_to_buy' =>(Float) $calcul['quantity_to_buy'], |
|
14 | - 'quote_to_buy' =>(Float) $calcul['quote_to_buy'], |
|
15 | - 'price_to_buy' => (Float)$calcul['price_to_buy'], |
|
16 | - 'quantity_to_sell' => (Float)$calcul['quantity_to_sell'], |
|
17 | - 'quote_to_sell' => (Float)$calcul['quote_to_sell'], |
|
18 | - 'tax_percent_to_discount' => (Float)$calcul['tax_percent_to_discount'], |
|
19 | - 'price_to_sell' => (Float)$calcul['price_to_sell'], |
|
20 | - 'gains_or_losses' => (Float)$calcul['gains_or_losses'], |
|
11 | + 'user_id' => $calcul[ 'user_id' ], |
|
12 | + 'name' => $calcul[ 'name' ], |
|
13 | + 'quantity_to_buy' =>(Float) $calcul[ 'quantity_to_buy' ], |
|
14 | + 'quote_to_buy' =>(Float) $calcul[ 'quote_to_buy' ], |
|
15 | + 'price_to_buy' => (Float) $calcul[ 'price_to_buy' ], |
|
16 | + 'quantity_to_sell' => (Float) $calcul[ 'quantity_to_sell' ], |
|
17 | + 'quote_to_sell' => (Float) $calcul[ 'quote_to_sell' ], |
|
18 | + 'tax_percent_to_discount' => (Float) $calcul[ 'tax_percent_to_discount' ], |
|
19 | + 'price_to_sell' => (Float) $calcul[ 'price_to_sell' ], |
|
20 | + 'gains_or_losses' => (Float) $calcul[ 'gains_or_losses' ], |
|
21 | 21 | ]; |
22 | 22 | } |
23 | 23 | } |
24 | 24 | \ No newline at end of file |
@@ -6,7 +6,7 @@ |
||
6 | 6 | { |
7 | 7 | public function transformCollection(array $items) |
8 | 8 | { |
9 | - return array_map([$this, 'transform'], $items); |
|
9 | + return array_map([ $this, 'transform' ], $items); |
|
10 | 10 | } |
11 | 11 | |
12 | 12 | abstract public function transform($item); |
@@ -80,5 +80,5 @@ |
||
80 | 80 | $apiKey = ApiKey::make($user->id); |
81 | 81 | $apiKey->save(); |
82 | 82 | return $apiKey->key; |
83 | - } |
|
83 | + } |
|
84 | 84 | } |
@@ -38,7 +38,7 @@ discard block |
||
38 | 38 | */ |
39 | 39 | public function __construct() |
40 | 40 | { |
41 | - $this->middleware($this->guestMiddleware(), ['except' => 'logout']); |
|
41 | + $this->middleware($this->guestMiddleware(), [ 'except' => 'logout' ]); |
|
42 | 42 | } |
43 | 43 | |
44 | 44 | /** |
@@ -64,10 +64,10 @@ discard block |
||
64 | 64 | */ |
65 | 65 | protected function create(array $data) |
66 | 66 | { |
67 | - $user = User::create([ |
|
68 | - 'name' => $data['name'], |
|
69 | - 'email' => $data['email'], |
|
70 | - 'password' => bcrypt($data['password']), |
|
67 | + $user = User::create([ |
|
68 | + 'name' => $data[ 'name' ], |
|
69 | + 'email' => $data[ 'email' ], |
|
70 | + 'password' => bcrypt($data[ 'password' ]), |
|
71 | 71 | ]); |
72 | 72 | |
73 | 73 | $user->apiKey = $this->createUserApiKey($user); |
@@ -7,9 +7,7 @@ |
||
7 | 7 | use App\User; |
8 | 8 | use Chrisbjr\ApiGuard\Http\Controllers\ApiGuardController; |
9 | 9 | use Illuminate\Http\Request; |
10 | -use App\Http\Requests; |
|
11 | 10 | use Illuminate\Support\Facades\Auth; |
12 | -use Illuminate\Support\Facades\Input; |
|
13 | 11 | |
14 | 12 | /** |
15 | 13 | * Class CalculatorApiController |
@@ -72,7 +72,7 @@ |
||
72 | 72 | |
73 | 73 | $this->calculator->create($calcul); |
74 | 74 | |
75 | - return $this->response->withItem($calcul, $this->calcul_transformer); |
|
75 | + return $this->response->withItem($calcul, $this->calcul_transformer); |
|
76 | 76 | } |
77 | 77 | |
78 | 78 |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | { |
55 | 55 | $router->group([ |
56 | 56 | 'namespace' => $this->namespace, 'middleware' => 'web', |
57 | - ], function ($router) { |
|
57 | + ], function($router) { |
|
58 | 58 | require app_path('Http/routes.php'); |
59 | 59 | }); |
60 | 60 | } |
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | { |
64 | 64 | $router->group([ |
65 | 65 | 'namespace' => $this->namespace, |
66 | - ], function ($router) { |
|
66 | + ], function($router) { |
|
67 | 67 | require app_path('Http/routes-api.php'); |
68 | 68 | }); |
69 | 69 | } |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | 3 | |
4 | -Route::group(['prefix' => 'api/'], function () { |
|
4 | +Route::group([ 'prefix' => 'api/' ], function() { |
|
5 | 5 | Route::post('calc/save', 'CalculatorApiController@store'); |
6 | 6 | }); |
7 | 7 | \ No newline at end of file |