@@ -15,7 +15,7 @@ |
||
15 | 15 | */ |
16 | 16 | public function up() |
17 | 17 | { |
18 | - Capsule::schema()->create('cart_items', function (Blueprint $table) { |
|
18 | + Capsule::schema()->create('cart_items', function(Blueprint $table) { |
|
19 | 19 | $table->increments('id')->index()->unique(); |
20 | 20 | $table->integer('user_id')->unique(); |
21 | 21 | $table->json('data'); |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | |
4 | 4 | namespace Cart\CountOperation; |
5 | 5 |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | |
4 | 4 | namespace Cart\ServiceProviders; |
5 | 5 | |
@@ -12,14 +12,14 @@ discard block |
||
12 | 12 | { |
13 | 13 | public function register(Container $container) : void |
14 | 14 | { |
15 | - $redis = new Client([ |
|
15 | + $redis = new Client([ |
|
16 | 16 | 'scheme' => config('app.drivers.redis.scheme'), |
17 | 17 | 'host' => config('app.drivers.redis.host'), |
18 | 18 | 'port' => config('app.drivers.redis.port') |
19 | 19 | ]); |
20 | 20 | |
21 | 21 | $container->instance(Client::class, $redis); |
22 | - $container->bind(RedisDriver::class, function () use ($redis) { |
|
22 | + $container->bind(RedisDriver::class, function() use ($redis) { |
|
23 | 23 | return new RedisDriver($redis); |
24 | 24 | }); |
25 | 25 | } |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | |
4 | 4 | namespace Cart\ServiceProviders; |
5 | 5 | |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | $capsule->bootEloquent(); |
34 | 34 | $container->bind(Manager::class, $capsule); |
35 | 35 | |
36 | - $container->bind(DatabaseDriver::class, function () use ($capsule) { |
|
36 | + $container->bind(DatabaseDriver::class, function() use ($capsule) { |
|
37 | 37 | return new DatabaseDriver($capsule); |
38 | 38 | }); |
39 | 39 | } |
@@ -1,7 +1,7 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | use Illuminate\Container\Container; |
3 | 3 | |
4 | -if (! function_exists('config')) { |
|
4 | +if (!function_exists('config')) { |
|
5 | 5 | /** |
6 | 6 | * Get / set the specified configuration value. |
7 | 7 | * |
@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | } |
24 | 24 | } |
25 | 25 | |
26 | -if (! function_exists('app')) { |
|
26 | +if (!function_exists('app')) { |
|
27 | 27 | /** |
28 | 28 | * Get the available container instance. |
29 | 29 | * |
@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | } |
43 | 43 | } |
44 | 44 | |
45 | -if (! function_exists('inJson')) { |
|
45 | +if (!function_exists('inJson')) { |
|
46 | 46 | /** |
47 | 47 | * Sugar json_encode |
48 | 48 | * |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | } |
56 | 56 | } |
57 | 57 | |
58 | -if (! function_exists('fromJson')) { |
|
58 | +if (!function_exists('fromJson')) { |
|
59 | 59 | /** |
60 | 60 | * Sugar json_encode |
61 | 61 | * |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | |
4 | 4 | namespace Cart\Traits; |
5 | 5 |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | |
4 | 4 | namespace Cart; |
5 | 5 | |
@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | /** |
25 | 25 | * @var string |
26 | 26 | */ |
27 | - protected $configPath = __DIR__. '/../config'; |
|
27 | + protected $configPath = __DIR__ . '/../config'; |
|
28 | 28 | /** |
29 | 29 | * @var CartDriverContract |
30 | 30 | */ |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | |
4 | 4 | namespace Cart\Contracts; |
5 | 5 |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | |
4 | 4 | namespace Cart\Contracts; |
5 | 5 | |
@@ -13,14 +13,14 @@ discard block |
||
13 | 13 | * @param array $item |
14 | 14 | * @return mixed |
15 | 15 | */ |
16 | - public function add(array $item) : bool ; |
|
16 | + public function add(array $item) : bool; |
|
17 | 17 | |
18 | 18 | /** |
19 | 19 | * Remove item from cart |
20 | 20 | * @param array $itemId |
21 | 21 | * @return mixed |
22 | 22 | */ |
23 | - public function remove(array $itemId):bool ; |
|
23 | + public function remove(array $itemId):bool; |
|
24 | 24 | |
25 | 25 | /** |
26 | 26 | * Clear cart for concrete relation entity |
@@ -36,5 +36,5 @@ discard block |
||
36 | 36 | * @param CounterItemContract $itemContract |
37 | 37 | * @return mixed |
38 | 38 | */ |
39 | - public function change(array $item, CounterItemContract $itemContract) : bool ; |
|
39 | + public function change(array $item, CounterItemContract $itemContract) : bool; |
|
40 | 40 | } |
41 | 41 | \ No newline at end of file |