Fixed issues

This commit is contained in:
jitendra 2022-10-27 16:48:06 +05:30
parent 4753d7872b
commit 26d5d14ef4
5 changed files with 59 additions and 4 deletions

View File

@ -10,6 +10,7 @@
"require": { "require": {
"php": "^8.1", "php": "^8.1",
"astrotomic/laravel-translatable": "^11.0.0", "astrotomic/laravel-translatable": "^11.0.0",
"bagisto/laravel-datafaker": "^2.0@alpha",
"bagisto/rest-api": "^1.0", "bagisto/rest-api": "^1.0",
"bagistobrasil/bagisto-product-social-share": "^0.1.2", "bagistobrasil/bagisto-product-social-share": "^0.1.2",
"barryvdh/laravel-debugbar": "^3.1", "barryvdh/laravel-debugbar": "^3.1",

56
composer.lock generated
View File

@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically" "This file is @generated automatically"
], ],
"content-hash": "6e26b3b441dbf0a0242f4fe0b3800ef0", "content-hash": "f97b453abb0e5218dd71c940aaa63d00",
"packages": [ "packages": [
{ {
"name": "astrotomic/laravel-translatable", "name": "astrotomic/laravel-translatable",
@ -97,6 +97,59 @@
], ],
"time": "2022-02-05T10:42:52+00:00" "time": "2022-02-05T10:42:52+00:00"
}, },
{
"name": "bagisto/laravel-datafaker",
"version": "v2.0.0-ALPHA1",
"source": {
"type": "git",
"url": "https://github.com/bagisto/laravel-data-faker.git",
"reference": "09c3587a6cef80e84ddc16ea30cd2f0ade1d09b2"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/bagisto/laravel-data-faker/zipball/09c3587a6cef80e84ddc16ea30cd2f0ade1d09b2",
"reference": "09c3587a6cef80e84ddc16ea30cd2f0ade1d09b2",
"shasum": ""
},
"type": "library",
"extra": {
"laravel": {
"providers": [
"Webkul\\Faker\\Providers\\FakerServiceProvider"
],
"aliases": []
}
},
"autoload": {
"psr-4": {
"Webkul\\Faker\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Jitendra Singh",
"email": "jitendra@webkul.in",
"homepage": "https://bagisto.com"
}
],
"description": "Create fake customers, categories and products in Bagisto.",
"homepage": "https://github.com/bagisto/laravel-data-faker",
"keywords": [
"bagisto",
"fake categories",
"fake customers",
"fake products"
],
"support": {
"issues": "https://github.com/bagisto/laravel-data-faker/issues",
"source": "https://github.com/bagisto/laravel-data-faker/tree/v2.0.0-ALPHA1"
},
"time": "2022-10-14T10:10:16+00:00"
},
{ {
"name": "bagisto/rest-api", "name": "bagisto/rest-api",
"version": "v1.0.0", "version": "v1.0.0",
@ -12616,6 +12669,7 @@
"aliases": [], "aliases": [],
"minimum-stability": "dev", "minimum-stability": "dev",
"stability-flags": { "stability-flags": {
"bagisto/laravel-datafaker": 15,
"flynsarmy/db-blade-compiler": 20, "flynsarmy/db-blade-compiler": 20,
"codeception/codeception": 20, "codeception/codeception": 20,
"codeception/module-laravel": 20 "codeception/module-laravel": 20

View File

View File

@ -114,7 +114,7 @@ class Product
]; ];
try { try {
\Elasticsearch::delete($params); Elasticsearch::delete($params);
} catch(\Exception $e) {} } catch(\Exception $e) {}
return; return;

View File

@ -53,7 +53,7 @@ class ElasticSearchRepository
'size' => $options['limit'], 'size' => $options['limit'],
'stored_fields' => [], 'stored_fields' => [],
'query' => [ 'query' => [
'bool' => $filters, 'bool' => $filters ?: new \stdClass(),
], ],
'sort' => $this->getSortOptions($options), 'sort' => $this->getSortOptions($options),
], ],
@ -144,7 +144,7 @@ class ElasticSearchRepository
/** /**
* Returns sort options * Returns sort options
* *
* @parmas array $options * @param array $options
* @return array * @return array
*/ */
public function getSortOptions($options) public function getSortOptions($options)