Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
MrMicky-FR committed Oct 29, 2022
1 parent 03cab02 commit 8d9ea2c
Show file tree
Hide file tree
Showing 12 changed files with 1,579 additions and 1,730 deletions.
4 changes: 2 additions & 2 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ root = true
[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
indent_style = space
indent_size = 4
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true

[*.md]
Expand Down
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
.vscode/
.history

# Fleet
.fleet/

# Mac
.DS_Store

Expand All @@ -21,6 +24,7 @@
/vendor
.env
.env.backup
.env.production
.phpunit.result.cache
docker-compose.override.yml
Homestead.json
Expand Down
1 change: 1 addition & 0 deletions app/Http/View/Composers/NavbarComposer.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ public function compose(View $view)
foreach ($parentElements as $element) {
if (! $element->isDropdown()) {
$element->setRelation('elements', collect());

continue;
}

Expand Down
2 changes: 1 addition & 1 deletion app/Providers/SettingServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ protected function handleSpecialSettings(Config $config, string $name, $value)
break;
case 'timezone':
date_default_timezone_set($value);
// no break
// no break
case 'url':
$config->set('app.'.$name, $value);
break;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ public function __invoke(DocumentParsedEvent $e)

if (self::hostMatches($host, $internalHosts)) {
$image->data->set('external', false);

continue;
}

Expand Down
2 changes: 1 addition & 1 deletion app/Support/Discord/Embeds/EmbedImage.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
class EmbedImage implements Arrayable
{
/**
* Source URL of image (only supports http(s) and attachments)
* Source URL of image (only supports http(s) and attachments).
*
* @var string
*/
Expand Down
Loading

0 comments on commit 8d9ea2c

Please sign in to comment.